-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy path.eslintrc.json
32 lines (32 loc) · 944 Bytes
/
.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
{
"extends": "airbnb",
"parser": "babel-eslint",
"plugins": [
"react"
],
"env": {
"browser": true,
"mocha": true
},
"rules": {
"import/no-extraneous-dependencies": "off",
"react/jsx-no-bind": "off",
"no-underscore-dangle": "off",
"jsx-a11y/label-has-for": "off",
"no-plusplus": [
"error",
{
"allowForLoopAfterthoughts": true
}
],
"react/no-unused-prop-types": "off",
"react/forbid-prop-types": "off",
"jsx-a11y/no-static-element-interactions": "off",
"react/no-did-mount-set-state": "off",
"react/prefer-stateless-function": "off",
"react/destructuring-assignment": "off",
"jsx-a11y/click-events-have-key-events": "off",
"react/no-array-index-key": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off"
}
}