-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc.js
40 lines (40 loc) · 987 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
39
40
module.exports = {
"plugins": [
"import"
],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"node": true,
"jest": true,
"browser": true
},
"extends": ["airbnb", "plugin:react/recommended"],
"rules": {
"no-console": 0,
"import/no-extraneous-dependencies": 0,
"import/extensions": [1, {
"js": "never",
"jsx": "always"
}],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/forbid-prop-types": [1, {"forbid": ["any"]}],
"react/prefer-stateless-function": 0,
"arrow-body-style": 0,
"react/no-array-index-key": 0,
"jsx-a11y/no-static-element-interactions": 0,
"no-param-reassign": 0,
"consistent-return": 0,
"class-methods-use-this": 0,
"no-unused-expressions": 0,
"global-require": 0,
"react/prop-types": [0],
"linebreak-style": 0,
"no-underscore-dangle": 0
}
};