-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
49 lines (49 loc) · 1.13 KB
/
.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"extends": [
"@esi/eslint-config-esi"
],
"rules": {
"linebreak-style": 0,
"jsx-a11y/label-has-for": 0,
"jsx-a11y/no-static-element-interactions": 0,
"jsx-a11y/href-no-hash": 0,
"no-trailing-spaces": 0,
"react/prop-types": 0,
"padded-blocks": 0,
"import/prefer-default-export": 0,
"no-extra-boolean-cast": 0,
"react/jsx-curly-spacing": 0,
"semi": 0,
"no-console": 0,
"no-use-before-define": 0,
"arrow-body-style": 0,
"arrow-parens": 0,
"no-alert": 0,
"max-statements": [
1,
20
],
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
],
"react/sort-comp": 0,
"no-plusplus": 0,
"no-shadow": 0,
"class-methods-use-this": 0,
"complexity": [
1,
30
],
"prefer-template": 0
},
"env": {
"browser": true,
"jest": true
}
}