-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.eslintrc.js
44 lines (44 loc) · 1.07 KB
/
.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
41
42
43
44
module.exports = {
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"plugins": [
"react"
],
"rules": {
"comma-dangle": 0,
"prefer-arrow-callback": 0,
"func-names": 0,
"import/no-extraneous-dependencies": 0,
"no-underscore-dangle": 0,
"no-unused-expressions": 0,
"no-unused-vars": 0,
"no-use-before-define": 0,
"react/sort-comp": 0,
"react/no-multi-comp": 0,
"react/require-extension": 0,
"react/jsx-uses-react": 0,
"react/forbid-prop-types": 0,
"react/no-unused-prop-types": 0,
"linebreak-style": 0,
"comma-dangle": 0,
"max-len": 0,
"import/imports-first": 0,
"class-methods-use-this": 0,
"semi": 0,
"react/jsx-filename-extension": 0,
"space-before-blocks": 0,
"space-infix-ops": 0,
"react/jsx-closing-bracket-location": 0,
"react/jsx-first-prop-new-line": 0,
"no-nested-ternary": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"arrow-body-style": 0,
"no-param-reassign": 0,
}
};