forked from uranus84/uranus84
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
38 lines (38 loc) · 894 Bytes
/
.eslintrc.js
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
module.exports = {
"extends": [
"airbnb",
"plugin:react/recommended"
],
"plugins": [
"jest",
"react"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true,
"node": true,
"mocha": true,
"jest/globals": true
},
"rules": {
"import/extensions": "off",
"react/prop-types": "off",
"react/forbid-prop-types": "off",
"react/no-array-index-key": "off",
"no-underscore-dangle": "off",
"arrow-body-style": "off",
"no-script-url": "off",
"consistent-return": "off",
"no-path-concat": "off",
"object-curly-newline": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
}
};