-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
71 lines (71 loc) · 1.23 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
62
63
64
65
66
67
68
69
70
71
{
"env": {
"node": true,
"es6": true
},
"ecmaFeatures": {
"arrowFunctions": true,
"binaryLiterals": true,
"blockBindings": true,
"classes": true,
"destructuring": true,
"forOf": true,
"generators": true,
"objectLiteralShorthandMethods": true,
"objectLiteralShorthandProperties": true,
"octalLiterals": true,
"restParams": true,
"templateStrings": true
},
"rules": {
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-ex-assign": 2,
"quote-props": [
2,
"as-needed"
],
"no-unreachable": 2,
"valid-typeof": 2,
"no-fallthrough": 2,
"quotes": [
2,
"single",
"avoid-escape"
],
"comma-spacing": 2,
"semi": 2,
"space-infix-ops": 2,
"space-before-function-paren": [
2,
"always"
],
"space-before-blocks": [
2,
"always"
],
"new-parens": 2,
"max-len": [
2,
120,
2
],
"no-multiple-empty-lines": [
2,
{
"max": 2
}
],
"eol-last": 0,
"no-trailing-spaces": 2,
"keyword-spacing": 2,
"prefer-const": 2,
"strict": [
2,
"global"
],
"no-undef": 2,
"no-shadow": 2
}
}