-
Notifications
You must be signed in to change notification settings - Fork 7
/
.eslintrc.yaml
328 lines (318 loc) · 6.95 KB
/
.eslintrc.yaml
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
---
parserOptions:
ecmaVersion: 9
sourceType: module
env:
es6: true
browser: true
node: true
commonjs: true
extends:
- 'eslint:recommended'
# - 'plugin:jmacs/all'
# - 'plugin:elite/all'
rules:
# "Possible Errors"
for-direction: error
getter-return:
- error
- allowImplicit: true
no-await-in-loop: off
no-cond-assign:
- error
- except-parens
no-console:
- warn
- allow:
- time
- warn
- error
- assert
no-control-regex: off
no-debugger:
- warn
no-empty:
- error
- allowEmptyCatch: true
# no-extra-parens:
# - warn
# - all
# - nestedBinaryExpressions: false
no-template-curly-in-string: warn
valid-jsdoc:
- warn
- requireReturn: false
valid-typeof:
- error
- requireStringLiterals: true
# "Best Practices"
# accessor-pairs:
# - warn
# - getWithoutSet: true
array-callback-return: error
class-methods-use-this: warn
curly:
- error
- multi-line
- consistent
default-case: error
dot-location:
- error
- property
dot-notation: error
eqeqeq: error
no-caller: error
no-extend-native: error
no-extra-bind: error
no-extra-label: warn
no-implied-eval: error
no-invalid-this: error
no-iterator: error
no-loop-func: error
no-multi-spaces:
- warn
- ignoreEOLComments: true
no-multi-str: error
no-new: error
no-new-func: error
no-new-wrappers: error
no-octal-escape: error
no-proto: error
# no-return-assign:
# - warn
# - except-parens
no-script-url: error
no-self-assign:
- warn
no-self-compare: error
no-sequences: error
no-throw-literal: error
no-unmodified-loop-condition: error
no-unused-expressions: error
no-unused-labels: warn
no-useless-call: error
no-useless-concat: warn
no-useless-escape: warn
no-void: error
no-warning-comments: warn
no-with: error
prefer-promise-reject-errors: warn
require-await: error
wrap-iife:
- error
- inside
yoda:
- warn
- always
- onlyEquality: true
# "Variables"
no-label-var: error
no-restricted-globals: error
no-shadow: error
no-shadow-restricted-names: error
no-undef-init: error
no-undefined: error
no-unused-vars: warn
no-use-before-define:
- error
- classes: false
variables: false
functions: false
# "Node.js and CommonJS"
global-require: warn
handle-callback-err:
- warn
- "^e_"
no-buffer-constructor: error
no-new-require: error
no-path-concat: error
# "Stylistic Issues"
array-bracket-spacing:
- error
- never
brace-style:
- error
- stroustrup
- allowSingleLine: true
# capitalized-comments:
# - warn
# - never
# - ignoreConsecutiveComments: true
comma-dangle:
- warn
- always-multiline
comma-spacing: error
comma-style: error
computed-property-spacing: error
eol-last: error
func-call-spacing: error
# id-match:
# - warn
# - "^[a-z$]{1,4}(_[a-z0-9]+)?|[A-Z$]{1,4}_[A-Z0-9$]+$"
implicit-arrow-linebreak: error
indent:
- warn
- tab
- SwitchCase: 1
VariableDeclarator: 0
ignoreComments: true
key-spacing:
- warn
- singleLine:
beforeColon: false
afterColon: false
multiLine:
beforeColon: false
afterColon: true
keyword-spacing:
- warn
- overrides:
if:
after: false
for:
after: false
while:
after: false
switch:
after: false
catch:
after: false
linebreak-style: error
# lines-around-comment:
# - warn
# - beforeLineComment: true
# allowBlockStart: true
# allowClassStart: true
# allowObjectStart: true
# allowArrayStart: true
# allowBeforeElse: true
lines-between-class-members:
- warn
- always
- exceptAfterSingleLine: true
multiline-ternary:
- warn
- always-multiline
new-cap:
- error
- newIsCap: false
capIsNewExceptionPattern: "^[A-Z$_][A-Z$_0-9]*"
capIsNew: true
properties: false
new-parens: error
# newline-per-chained-call:
# - warn
# - ignoreChainWithDepth: 4
no-array-constructor: error
no-lonely-if: warn
no-mixed-operators: warn
no-mixed-spaces-and-tabs: warn
no-multiple-empty-lines:
- warn
- max: 3
# no-nested-ternary: error
no-new-object: error
# no-plusplus:
# - warn
# - allowForLoopAfterthoughts: true
no-trailing-spaces: warn
no-unneeded-ternary:
- warn
- defaultAssignment: false
no-whitespace-before-property: error
nonblock-statement-body-position:
- error
- beside
object-curly-newline:
- off
# - warn
# - ObjectExpression:
# multiline: true
# ObjectPattern:
# multiline: true
object-curly-spacing: warn
object-property-newline:
- warn
- allowAllPropertiesOnSameLine: true
one-var:
- warn
- initialized: never
operator-assignment: warn
operator-linebreak:
- error
- before
padded-blocks:
- warn
- never
# padding-line-between-statements
quote-props:
- warn
- as-needed
quotes:
- warn
- single
- avoidEscape: true
allowTemplateLiterals: true
semi:
- error
- always
semi-spacing:
- warn
- before: false
after: true
semi-style: error
space-before-blocks:
- warn
- always
space-before-function-paren:
- warn
- never
space-in-parens:
- warn
- never
space-unary-ops:
- warn
- words: true
nonwords: false
spaced-comment:
- warn
- always
- exceptions:
- "-*"
switch-colon-spacing: warn
template-tag-spacing: warn
# "ECMAScript 6"
arrow-body-style:
- warn
- as-needed
arrow-parens:
- warn
- as-needed
- requireForBlockBody: true
arrow-spacing: warn
generator-star-spacing:
- warn
- named: after
anonymous: before
method: after
no-useless-computed-key: warn
no-useless-constructor: warn
no-var: error
prefer-arrow-callback:
- warn
- allowNamedFunctions: true
prefer-spread: warn
# prefer-template: warn
rest-spread-spacing:
- warn
- never
symbol-description: warn
template-curly-spacing: warn
yield-star-spacing: warn
no-fallthrough: warn
# Custom Rules
# unspecified:
# padding-line-between-statements
# array-bracket-newline
# array-element-newline
# camel-case