-
Notifications
You must be signed in to change notification settings - Fork 53
/
.eslintrc
61 lines (61 loc) · 1.46 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
54
55
56
57
58
59
60
61
{
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"defaultParams": true,
"destructuring": true,
"modules": true,
"restParams": true,
"objectLiteralShorthandMethods": true,
"objectLiteralShorthandProperties": true,
"spread": true,
"templateStrings": true
},
"env": {
"browser": true,
"node": true,
},
"rules": {
"comma-dangle": [1, "never"],
"no-debugger": 2,
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-empty": 2,
"no-irregular-whitespace": 2,
"no-multi-spaces": 0,
"complexity": [1, 7],
"dot-location": [2, "property"],
"eqeqeq": [2, "allow-null"],
"guard-for-in": 2,
"no-caller": 2,
"no-eval": 2,
"no-extra-bind": 2,
"no-implied-eval": 2,
"yoda": [2, "never", {
"exceptRange": true
}],
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
"camelcase": 0,
"comma-spacing": 0,
"comma-style": [2, "last"],
"indent": [2, 2],
"key-spacing": [2, {
"beforeColon": false,
"afterColon": true
}],
"linebreak-style": [2, "unix"],
"max-nested-callbacks": [2, 3],
"new-cap": 0,
"no-lonely-if": 2,
"no-trailing-spaces": 2,
"no-underscore-dangle": 0,
"one-var": [2, {
"uninitialized": "always",
"initialized": "never"
}],
"quotes": [2, "single", "avoid-escape"],
"semi": [2, "always"],
"space-after-keywords": [2, "always"]
}
}