-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
46 lines (46 loc) · 819 Bytes
/
.eslintrc
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
45
46
{
// "extends": "eslint-config-airbnb",
// "rules":{
// "indent": ["warn", 4],
// }
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
}
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"no-console": 0,
"no-debugger": 0,
"indent": 0,
"eqeqeq": 0,
"consistent-return": 0,
// "eol-last":0,
"comma-dangle": [
2,
"never"
],
"semi": [
2,
"always"
],
"max-len": 0,
"object-curly-spacing": 0,
"react/jsx-no-bind": [
1
],
"array-bracket-spacing": 0,
// "no-useless-constructor": 0,
"jsx-a11y/no-static-element-interactions": 0,
"prefer-template": 0,
"react/require-extension": "off"
},
"plugins": [
"react"
]
}