-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.eslintrc.json
38 lines (38 loc) · 1.15 KB
/
.eslintrc.json
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
{
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"react/destructuring-assignment": 0, // Ask Chris about destructuring props/prop types check. Don't know if its worth it to go all the way back through and fix all these
"react/prop-types": 0,
"no-underscore-dangle": 0,
"no-undef": 0,
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
],
"no-console": 0,
"no-plusplus": 0,
"no-alert": 0,
"jsx-a11y/label-has-for": 0,
"no-return-assign": 0,
"no-param-reassign": 0,
"jsx-a11y/anchor-is-valid": 0,
"max-len": 0,
"react/no-did-mount-set-state": 0,
"react/forbid-prop-types": 0,
"no-nested-ternary": 0,
"eqeqeq": 0,
"react/no-access-state-in-setstate": 0,
"import/no-extraneous-dependencies": 0,
"camelcase": 0,
"react/static-property-placement": 0,
"react/jsx-props-no-spreading": 0,
"radix": 0,
"prefer-destructuring": 0
}
}