-
Notifications
You must be signed in to change notification settings - Fork 16
/
.eslintrc.json
210 lines (197 loc) · 9.78 KB
/
.eslintrc.json
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"accessor-pairs": 2,
"array-callback-return": 2,
"complexity": 2,
"consistent-return": 2,
"curly": [1, "multi-or-nest"],
"default-case": 2,
"dot-location": [2, "property"],
"dot-notation": 2,
"eqeqeq": 2,
"guard-for-in": 2,
"no-alert": 1,
"no-caller": 2,
"no-case-declarations": 2,
"no-div-regex": 0,
"no-else-return": 0,
"no-empty-function": 2,
"no-empty-pattern": 2,
"no-eq-null": 2,
"no-eval": 2,
"no-extend-native": 2,
"no-extra-bind": 2,
"no-extra-label": 2,
"no-fallthrough": 2,
"no-floating-decimal": 2,
"no-implicit-coercion": 2,
"no-implicit-globals": 1,
"no-implied-eval": 2,
"no-invalid-this": 2,
"no-iterator": 2,
"no-labels": 1,
"no-lone-blocks": 2,
"no-loop-func": 2,
"no-multi-spaces": 1,
"no-multi-str": 1,
"no-native-reassign": 2,
"no-new": 1,
"no-new-func": 2,
"no-new-wrappers": 1,
"no-octal": 2,
"no-octal-escape": 2,
"no-param-reassign": 2,
"no-proto": 2,
"no-redeclare": 2,
"no-return-assign": 1,
"no-script-url": 2,
"no-self-assign": 2,
"no-self-compare": 2,
"no-sequences": 1,
"no-throw-literal": 1,
"no-unmodified-loop-condition": 1,
"no-unused-expressions": 1,
"no-unused-labels": 2,
"no-useless-call": 1,
"no-useless-concat": 1,
"no-useless-escape": 1,
"no-void": 2,
"no-warning-comments": 1,
"no-with": 2,
"radix": 0,
"vars-on-top": 1,
"wrap-iife": [2, "inside"],
"yoda": 2,
"strict": 2,
"init-declarations": 0,
"no-catch-shadow": 2,
"no-delete-var": 2,
"no-label-var": 2,
"no-restricted-globals": 0,
"no-shadow": 1,
"no-shadow-restricted-names": 2,
"no-undef": 2,
"no-undef-init": 2,
"no-undefined": 2,
"no-unused-vars": [2, {"args": "none"}],
"no-use-before-define": [1, { "functions": false, "classes": true }],
"callback-return": 1,
"global-require": 2,
"handle-callback-err": 1,
"no-mixed-requires": 2,
"no-new-require": 2,
"no-path-concat": 1,
"no-process-env": 2,
"no-process-exit": 1,
"no-restricted-modules": 0,
"no-sync": 1,
"array-bracket-spacing": [2, "never", {"singleValue": true}],
"block-spacing": 2,
"brace-style": [1, "stroustrup", { "allowSingleLine": true }],
"camelcase": [2, {"properties": "never"}],
"comma-spacing": 2,
"comma-style": 2,
"computed-property-spacing": 1,
"consistent-this": [1, "self"],
"eol-last": 1,
"func-names": 0,
"func-style": [1, "declaration", { "allowArrowFunctions": true }],
"id-blacklist": [2, "data", "err", "e", "error", "cb", "callback", "obj"],
"id-length": [2, { "min": 3, "exceptions": ["_", "fs", "i"], "properties": "never" }],
"id-match": 0,
"indent": [1, 2],
"jsx-quotes": [1, "prefer-double"],
"key-spacing": [1, {"beforeColon": false, "afterColon": true}],
"keyword-spacing": 1,
"lines-around-comment": 0,
"max-depth": [1, 6],
"max-len": [1, {"code": 100, "tabWidth": 2, "ignoreUrls": true}],
"max-nested-callbacks": [1, {"max": 4}],
"max-params": [1, {"max": 3}],
"max-statements": [1, 12, {"ignoreTopLevelFunctions": true}],
"max-statements-per-line": [1, {"max": 2}],
"new-cap": 1,
"new-parens": 1,
"newline-after-var": 0,
"newline-before-return": 0,
"newline-per-chained-call": 0,
"no-array-constructor": 2,
"no-bitwise": 2,
"no-continue": 1,
"no-inline-comments": 1,
"no-lonely-if": 1,
"no-mixed-spaces-and-tabs": 2,
"no-multiple-empty-lines": [2, {"max": 3}],
"no-negated-condition": 1,
"no-nested-ternary": 2,
"no-new-object": 2,
"no-plusplus": 0,
"no-restricted-syntax": 0,
"no-spaced-func": 0,
"no-ternary": 0,
"no-trailing-spaces": 1,
"no-underscore-dangle": 0,
"no-unneeded-ternary": 1,
"no-whitespace-before-property": 1,
"object-curly-spacing": [1, "always"],
"one-var": [1, "never"],
"one-var-declaration-per-line": [1, "always"],
"operator-assignment": [1, "always"],
"operator-linebreak": [2, "after"],
"padded-blocks": [2, "never"],
"quote-props": [1, "as-needed"],
"quotes": [1, "single", {"avoidEscape": true, "allowTemplateLiterals": true}],
"require-jsdoc": [0, {
"require": {
"FunctionDeclaration": true,
"ClassDeclaration": true,
"MethodDefinition": false
}
}],
"semi": 1,
"semi-spacing": [1, {"before": false, "after": true}],
"sort-imports": 0,
"sort-vars": 0,
"space-before-blocks": [1, "always"],
"space-before-function-paren": [1, "never"],
"space-in-parens": 0,
"space-infix-ops": 1,
"space-unary-ops": [1, {"words": true, "nonwords": false}],
"spaced-comment": 0,
"wrap-regex": 1,
"arrow-body-style": [1, "as-needed"],
"arrow-parens": [1, "as-needed"],
"arrow-spacing": [2, {"before": true, "after": true}],
"constructor-super": [2],
"generator-star-spacing": [1, {"before": true, "after": false}],
"no-class-assign": 2,
"no-confusing-arrow": 1,
"no-const-assign": 2,
"no-dupe-class-members": 2,
"no-duplicate-imports": 2,
"no-new-symbol": 2,
"no-restricted-imports": 0,
"no-this-before-super": 2,
"no-useless-constructor": 1,
"no-var": 2,
"object-shorthand": [1, "always"],
"prefer-arrow-callback": [1, { "allowNamedFunctions": true }],
"prefer-const": 1,
"prefer-reflect": 0,
"prefer-rest-params": 2,
"prefer-spread": 2,
"prefer-template": 0,
"require-yield": 1,
"template-curly-spacing": [1, "never"],
"yield-star-spacing": [1, {"before": false, "after": true}]
}
}