-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.eslintrc
27 lines (27 loc) · 852 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
parser: "babel-eslint",
extends: ["eslint:recommended", "plugin:react/recommended"],
env: {
browser: true
},
rules: {
"func-names": [
"error",
"never"
],
"no-new": "off",
"indent": [2, 4],
"react/react-in-jsx-scope": "off",
"react/no-array-index-key": "off",
"class-methods-use-this": "off",
"jsx-a11y/no-static-element-interactions": "off",
"import/no-dynamic-require": "off",
"comma-dangle": "off",
"global-require": "off",
"eqeqeq": "off",
"max-len": "off",
"import/no-extraneous-dependencies": "off",
"no-param-reassign": "off",
"no-unused-vars": ["error", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false, "varsIgnorePattern": "preact" }]
}
}