-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
49 lines (49 loc) · 1.1 KB
/
.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
47
48
49
{
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"defaultParams": true,
"destructuring": true,
"modules": true,
"templateStrings": true,
"jsx": true,
"forOf": true,
"generators": true
},
"env": {
"browser": true,
"node": true
},
"rules": {
"no-shadow": false,
"handle-callback-err": false,
"camelcase": false,
"comma-dangle": "never",
"no-cond-assign": "always",
"no-constant-condition": true,
"no-control-regex": true,
"no-dupe-keys": true,
"no-dupe-args": true,
"no-ex-assign": true,
"no-inner-declarations": "both",
"no-obj-calls": true,
"no-unreachable": true,
"block-scoped-var": true,
"curly": true,
"default-case": true,
"dot-notation": true,
"eqeqeq": true,
"no-caller": true,
"no-extend-native": true,
"no-loop-func": true,
"no-native-reassign": true,
"no-new": true,
"no-redeclare": true,
"radix": true,
"no-width": true,
"no-extra-strict": true,
"quotes": "single",
"no-underscore-dangle": false,
"new-cap": false
}
}