-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
53 lines (53 loc) · 1.4 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
50
51
52
53
{
"parser": "babel-eslint",
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"classes": true,
"defaultParams": true,
"destructuring": true,
"modules": true,
"objectLiteralComputedProperties": true,
"templateStrings": true,
"modules": true
},
"rules": {
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-empty": 2,
"no-func-assign": 2,
"no-inner-declarations": 2,
"no-unreachable": 2,
"no-unexpected-multiline": 0,
"consistent-return": 0,
"curly": [2, "multi-line"],
"eqeqeq": 2,
"no-else-return": 2,
"no-multi-spaces": 0,
"strict": 0,
"no-shadow": 0,
"no-unused-vars": 0,
"no-use-before-define": 0,
"brace-style": [2, "1tbs"],
"comma-spacing": [2, {"before": false, "after": true}],
"comma-style": [2, "last"],
"consistent-this": [2, "that"],
"lines-around-comment": 2,
"key-spacing": 0,
"new-parens": 0,
"quotes": [2, "single", "avoid-escape"],
"no-underscore-dangle": 0,
"no-unneeded-ternary": 2,
"semi": 2,
"no-var": 2,
"no-this-before-super": 2,
"object-shorthand": 2
},
"env": {
"node": true,
"browser": true
},
"globals": {
"__DEVTOOLS__": true
}
}