@open-turo/eslint-config-typescript 11.0.6 → 12.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.pre-commit-config.yaml +1 -1
- package/docs/breaking-changes/v12.md +27 -0
- package/index.js +3 -3
- package/legacy.js +3 -3
- package/pack/open-turo-eslint-config-typescript-12.0.0.tgz +0 -0
- package/package.json +7 -7
- package/test/__snapshots__/test.spec.js.snap +2378 -0
- package/test/sample.ts +0 -0
- package/{test.js → test/test.spec.js} +10 -1
- package/pack/open-turo-eslint-config-typescript-11.0.6.tgz +0 -0
|
@@ -0,0 +1,2378 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`validate config load config file in ESLint to validate all rules are correct 1`] = `
|
|
4
|
+
{
|
|
5
|
+
"env": {
|
|
6
|
+
"es2022": true,
|
|
7
|
+
"es2024": true,
|
|
8
|
+
"jest": true,
|
|
9
|
+
"jest/globals": true,
|
|
10
|
+
},
|
|
11
|
+
"globals": {
|
|
12
|
+
"ArrayBuffer": "readonly",
|
|
13
|
+
"Atomics": "readonly",
|
|
14
|
+
"BigInt": "readonly",
|
|
15
|
+
"BigInt64Array": "readonly",
|
|
16
|
+
"BigUint64Array": "readonly",
|
|
17
|
+
"Buffer": "readonly",
|
|
18
|
+
"DataView": "readonly",
|
|
19
|
+
"Float32Array": "readonly",
|
|
20
|
+
"Float64Array": "readonly",
|
|
21
|
+
"GLOBAL": "readonly",
|
|
22
|
+
"Int16Array": "readonly",
|
|
23
|
+
"Int32Array": "readonly",
|
|
24
|
+
"Int8Array": "readonly",
|
|
25
|
+
"Intl": "readonly",
|
|
26
|
+
"Map": "readonly",
|
|
27
|
+
"Promise": "readonly",
|
|
28
|
+
"Proxy": "readonly",
|
|
29
|
+
"Reflect": "readonly",
|
|
30
|
+
"Set": "readonly",
|
|
31
|
+
"SharedArrayBuffer": "readonly",
|
|
32
|
+
"Symbol": "readonly",
|
|
33
|
+
"TextDecoder": "readonly",
|
|
34
|
+
"TextEncoder": "readonly",
|
|
35
|
+
"URL": "readonly",
|
|
36
|
+
"URLSearchParams": "readonly",
|
|
37
|
+
"Uint16Array": "readonly",
|
|
38
|
+
"Uint32Array": "readonly",
|
|
39
|
+
"Uint8Array": "readonly",
|
|
40
|
+
"Uint8ClampedArray": "readonly",
|
|
41
|
+
"WeakMap": "readonly",
|
|
42
|
+
"WeakSet": "readonly",
|
|
43
|
+
"WebAssembly": "readonly",
|
|
44
|
+
"__dirname": "readonly",
|
|
45
|
+
"__filename": "readonly",
|
|
46
|
+
"clearImmediate": "readonly",
|
|
47
|
+
"clearInterval": "readonly",
|
|
48
|
+
"clearTimeout": "readonly",
|
|
49
|
+
"console": "readonly",
|
|
50
|
+
"exports": "writable",
|
|
51
|
+
"global": "readonly",
|
|
52
|
+
"globalThis": "readonly",
|
|
53
|
+
"module": "readonly",
|
|
54
|
+
"process": "readonly",
|
|
55
|
+
"queueMicrotask": "readonly",
|
|
56
|
+
"require": "readonly",
|
|
57
|
+
"root": "readonly",
|
|
58
|
+
"setImmediate": "readonly",
|
|
59
|
+
"setInterval": "readonly",
|
|
60
|
+
"setTimeout": "readonly",
|
|
61
|
+
},
|
|
62
|
+
"ignorePatterns": [],
|
|
63
|
+
"noInlineConfig": undefined,
|
|
64
|
+
"parserOptions": {
|
|
65
|
+
"ecmaFeatures": {
|
|
66
|
+
"globalReturn": true,
|
|
67
|
+
},
|
|
68
|
+
"ecmaVersion": "latest",
|
|
69
|
+
"project": "./tsconfig.json",
|
|
70
|
+
"sourceType": "module",
|
|
71
|
+
},
|
|
72
|
+
"plugins": [
|
|
73
|
+
"unicorn",
|
|
74
|
+
"typescript-sort-keys",
|
|
75
|
+
"sort-destructure-keys",
|
|
76
|
+
"sonarjs",
|
|
77
|
+
"simple-import-sort",
|
|
78
|
+
"prettier",
|
|
79
|
+
"node",
|
|
80
|
+
"json",
|
|
81
|
+
"import",
|
|
82
|
+
"@typescript-eslint",
|
|
83
|
+
"jest",
|
|
84
|
+
],
|
|
85
|
+
"reportUnusedDisableDirectives": undefined,
|
|
86
|
+
"rules": {
|
|
87
|
+
"@babel/object-curly-spacing": [
|
|
88
|
+
"off",
|
|
89
|
+
],
|
|
90
|
+
"@babel/semi": [
|
|
91
|
+
"off",
|
|
92
|
+
],
|
|
93
|
+
"@typescript-eslint/await-thenable": [
|
|
94
|
+
"error",
|
|
95
|
+
],
|
|
96
|
+
"@typescript-eslint/ban-ts-comment": [
|
|
97
|
+
"error",
|
|
98
|
+
],
|
|
99
|
+
"@typescript-eslint/block-spacing": [
|
|
100
|
+
"off",
|
|
101
|
+
],
|
|
102
|
+
"@typescript-eslint/brace-style": [
|
|
103
|
+
"off",
|
|
104
|
+
],
|
|
105
|
+
"@typescript-eslint/comma-dangle": [
|
|
106
|
+
"off",
|
|
107
|
+
],
|
|
108
|
+
"@typescript-eslint/comma-spacing": [
|
|
109
|
+
"off",
|
|
110
|
+
],
|
|
111
|
+
"@typescript-eslint/consistent-type-imports": [
|
|
112
|
+
"error",
|
|
113
|
+
{
|
|
114
|
+
"disallowTypeAnnotations": true,
|
|
115
|
+
"fixStyle": "inline-type-imports",
|
|
116
|
+
"prefer": "type-imports",
|
|
117
|
+
},
|
|
118
|
+
],
|
|
119
|
+
"@typescript-eslint/func-call-spacing": [
|
|
120
|
+
"off",
|
|
121
|
+
],
|
|
122
|
+
"@typescript-eslint/indent": [
|
|
123
|
+
"off",
|
|
124
|
+
],
|
|
125
|
+
"@typescript-eslint/key-spacing": [
|
|
126
|
+
"off",
|
|
127
|
+
],
|
|
128
|
+
"@typescript-eslint/keyword-spacing": [
|
|
129
|
+
"off",
|
|
130
|
+
],
|
|
131
|
+
"@typescript-eslint/lines-around-comment": [
|
|
132
|
+
0,
|
|
133
|
+
],
|
|
134
|
+
"@typescript-eslint/member-delimiter-style": [
|
|
135
|
+
"off",
|
|
136
|
+
],
|
|
137
|
+
"@typescript-eslint/no-array-constructor": [
|
|
138
|
+
"error",
|
|
139
|
+
],
|
|
140
|
+
"@typescript-eslint/no-array-delete": [
|
|
141
|
+
"error",
|
|
142
|
+
],
|
|
143
|
+
"@typescript-eslint/no-base-to-string": [
|
|
144
|
+
"error",
|
|
145
|
+
],
|
|
146
|
+
"@typescript-eslint/no-duplicate-enum-values": [
|
|
147
|
+
"error",
|
|
148
|
+
],
|
|
149
|
+
"@typescript-eslint/no-duplicate-type-constituents": [
|
|
150
|
+
"error",
|
|
151
|
+
],
|
|
152
|
+
"@typescript-eslint/no-empty-object-type": [
|
|
153
|
+
"error",
|
|
154
|
+
],
|
|
155
|
+
"@typescript-eslint/no-explicit-any": [
|
|
156
|
+
"error",
|
|
157
|
+
],
|
|
158
|
+
"@typescript-eslint/no-extra-non-null-assertion": [
|
|
159
|
+
"error",
|
|
160
|
+
],
|
|
161
|
+
"@typescript-eslint/no-extra-parens": [
|
|
162
|
+
"off",
|
|
163
|
+
],
|
|
164
|
+
"@typescript-eslint/no-extra-semi": [
|
|
165
|
+
"off",
|
|
166
|
+
],
|
|
167
|
+
"@typescript-eslint/no-floating-promises": [
|
|
168
|
+
"error",
|
|
169
|
+
],
|
|
170
|
+
"@typescript-eslint/no-for-in-array": [
|
|
171
|
+
"error",
|
|
172
|
+
],
|
|
173
|
+
"@typescript-eslint/no-implied-eval": [
|
|
174
|
+
"error",
|
|
175
|
+
],
|
|
176
|
+
"@typescript-eslint/no-import-type-side-effects": [
|
|
177
|
+
"error",
|
|
178
|
+
],
|
|
179
|
+
"@typescript-eslint/no-misused-new": [
|
|
180
|
+
"error",
|
|
181
|
+
],
|
|
182
|
+
"@typescript-eslint/no-misused-promises": [
|
|
183
|
+
"error",
|
|
184
|
+
],
|
|
185
|
+
"@typescript-eslint/no-namespace": [
|
|
186
|
+
"error",
|
|
187
|
+
],
|
|
188
|
+
"@typescript-eslint/no-non-null-asserted-optional-chain": [
|
|
189
|
+
"error",
|
|
190
|
+
],
|
|
191
|
+
"@typescript-eslint/no-redundant-type-constituents": [
|
|
192
|
+
"error",
|
|
193
|
+
],
|
|
194
|
+
"@typescript-eslint/no-require-imports": [
|
|
195
|
+
"error",
|
|
196
|
+
],
|
|
197
|
+
"@typescript-eslint/no-this-alias": [
|
|
198
|
+
"error",
|
|
199
|
+
],
|
|
200
|
+
"@typescript-eslint/no-unnecessary-type-assertion": [
|
|
201
|
+
"error",
|
|
202
|
+
],
|
|
203
|
+
"@typescript-eslint/no-unnecessary-type-constraint": [
|
|
204
|
+
"error",
|
|
205
|
+
],
|
|
206
|
+
"@typescript-eslint/no-unsafe-argument": [
|
|
207
|
+
"error",
|
|
208
|
+
],
|
|
209
|
+
"@typescript-eslint/no-unsafe-assignment": [
|
|
210
|
+
"error",
|
|
211
|
+
],
|
|
212
|
+
"@typescript-eslint/no-unsafe-call": [
|
|
213
|
+
"error",
|
|
214
|
+
],
|
|
215
|
+
"@typescript-eslint/no-unsafe-declaration-merging": [
|
|
216
|
+
"error",
|
|
217
|
+
],
|
|
218
|
+
"@typescript-eslint/no-unsafe-enum-comparison": [
|
|
219
|
+
"error",
|
|
220
|
+
],
|
|
221
|
+
"@typescript-eslint/no-unsafe-function-type": [
|
|
222
|
+
"error",
|
|
223
|
+
],
|
|
224
|
+
"@typescript-eslint/no-unsafe-member-access": [
|
|
225
|
+
"error",
|
|
226
|
+
],
|
|
227
|
+
"@typescript-eslint/no-unsafe-return": [
|
|
228
|
+
"error",
|
|
229
|
+
],
|
|
230
|
+
"@typescript-eslint/no-unsafe-unary-minus": [
|
|
231
|
+
"error",
|
|
232
|
+
],
|
|
233
|
+
"@typescript-eslint/no-unused-expressions": [
|
|
234
|
+
"error",
|
|
235
|
+
],
|
|
236
|
+
"@typescript-eslint/no-unused-vars": [
|
|
237
|
+
"error",
|
|
238
|
+
{
|
|
239
|
+
"argsIgnorePattern": "^_",
|
|
240
|
+
},
|
|
241
|
+
],
|
|
242
|
+
"@typescript-eslint/no-wrapper-object-types": [
|
|
243
|
+
"error",
|
|
244
|
+
],
|
|
245
|
+
"@typescript-eslint/object-curly-spacing": [
|
|
246
|
+
"off",
|
|
247
|
+
],
|
|
248
|
+
"@typescript-eslint/only-throw-error": [
|
|
249
|
+
"error",
|
|
250
|
+
],
|
|
251
|
+
"@typescript-eslint/prefer-as-const": [
|
|
252
|
+
"error",
|
|
253
|
+
],
|
|
254
|
+
"@typescript-eslint/prefer-namespace-keyword": [
|
|
255
|
+
"error",
|
|
256
|
+
],
|
|
257
|
+
"@typescript-eslint/prefer-promise-reject-errors": [
|
|
258
|
+
"error",
|
|
259
|
+
],
|
|
260
|
+
"@typescript-eslint/prefer-ts-expect-error": [
|
|
261
|
+
"error",
|
|
262
|
+
],
|
|
263
|
+
"@typescript-eslint/quotes": [
|
|
264
|
+
0,
|
|
265
|
+
],
|
|
266
|
+
"@typescript-eslint/require-await": [
|
|
267
|
+
"error",
|
|
268
|
+
],
|
|
269
|
+
"@typescript-eslint/restrict-plus-operands": [
|
|
270
|
+
"error",
|
|
271
|
+
],
|
|
272
|
+
"@typescript-eslint/restrict-template-expressions": [
|
|
273
|
+
"error",
|
|
274
|
+
],
|
|
275
|
+
"@typescript-eslint/semi": [
|
|
276
|
+
"off",
|
|
277
|
+
],
|
|
278
|
+
"@typescript-eslint/space-before-blocks": [
|
|
279
|
+
"off",
|
|
280
|
+
],
|
|
281
|
+
"@typescript-eslint/space-before-function-paren": [
|
|
282
|
+
"off",
|
|
283
|
+
],
|
|
284
|
+
"@typescript-eslint/space-infix-ops": [
|
|
285
|
+
"off",
|
|
286
|
+
],
|
|
287
|
+
"@typescript-eslint/triple-slash-reference": [
|
|
288
|
+
"error",
|
|
289
|
+
],
|
|
290
|
+
"@typescript-eslint/type-annotation-spacing": [
|
|
291
|
+
"off",
|
|
292
|
+
],
|
|
293
|
+
"@typescript-eslint/unbound-method": [
|
|
294
|
+
"off",
|
|
295
|
+
],
|
|
296
|
+
"array-bracket-newline": [
|
|
297
|
+
"off",
|
|
298
|
+
],
|
|
299
|
+
"array-bracket-spacing": [
|
|
300
|
+
"off",
|
|
301
|
+
],
|
|
302
|
+
"array-element-newline": [
|
|
303
|
+
"off",
|
|
304
|
+
],
|
|
305
|
+
"arrow-body-style": [
|
|
306
|
+
"off",
|
|
307
|
+
],
|
|
308
|
+
"arrow-parens": [
|
|
309
|
+
"off",
|
|
310
|
+
],
|
|
311
|
+
"arrow-spacing": [
|
|
312
|
+
"off",
|
|
313
|
+
],
|
|
314
|
+
"babel/object-curly-spacing": [
|
|
315
|
+
"off",
|
|
316
|
+
],
|
|
317
|
+
"babel/quotes": [
|
|
318
|
+
0,
|
|
319
|
+
],
|
|
320
|
+
"babel/semi": [
|
|
321
|
+
"off",
|
|
322
|
+
],
|
|
323
|
+
"block-spacing": [
|
|
324
|
+
"off",
|
|
325
|
+
],
|
|
326
|
+
"brace-style": [
|
|
327
|
+
"off",
|
|
328
|
+
],
|
|
329
|
+
"comma-dangle": [
|
|
330
|
+
"off",
|
|
331
|
+
],
|
|
332
|
+
"comma-spacing": [
|
|
333
|
+
"off",
|
|
334
|
+
],
|
|
335
|
+
"comma-style": [
|
|
336
|
+
"off",
|
|
337
|
+
],
|
|
338
|
+
"computed-property-spacing": [
|
|
339
|
+
"off",
|
|
340
|
+
],
|
|
341
|
+
"constructor-super": [
|
|
342
|
+
"off",
|
|
343
|
+
],
|
|
344
|
+
"curly": [
|
|
345
|
+
0,
|
|
346
|
+
],
|
|
347
|
+
"dot-location": [
|
|
348
|
+
"off",
|
|
349
|
+
],
|
|
350
|
+
"eol-last": [
|
|
351
|
+
"off",
|
|
352
|
+
],
|
|
353
|
+
"flowtype/boolean-style": [
|
|
354
|
+
"off",
|
|
355
|
+
],
|
|
356
|
+
"flowtype/delimiter-dangle": [
|
|
357
|
+
"off",
|
|
358
|
+
],
|
|
359
|
+
"flowtype/generic-spacing": [
|
|
360
|
+
"off",
|
|
361
|
+
],
|
|
362
|
+
"flowtype/object-type-curly-spacing": [
|
|
363
|
+
"off",
|
|
364
|
+
],
|
|
365
|
+
"flowtype/object-type-delimiter": [
|
|
366
|
+
"off",
|
|
367
|
+
],
|
|
368
|
+
"flowtype/quotes": [
|
|
369
|
+
"off",
|
|
370
|
+
],
|
|
371
|
+
"flowtype/semi": [
|
|
372
|
+
"off",
|
|
373
|
+
],
|
|
374
|
+
"flowtype/space-after-type-colon": [
|
|
375
|
+
"off",
|
|
376
|
+
],
|
|
377
|
+
"flowtype/space-before-generic-bracket": [
|
|
378
|
+
"off",
|
|
379
|
+
],
|
|
380
|
+
"flowtype/space-before-type-colon": [
|
|
381
|
+
"off",
|
|
382
|
+
],
|
|
383
|
+
"flowtype/union-intersection-spacing": [
|
|
384
|
+
"off",
|
|
385
|
+
],
|
|
386
|
+
"for-direction": [
|
|
387
|
+
"error",
|
|
388
|
+
],
|
|
389
|
+
"func-call-spacing": [
|
|
390
|
+
"off",
|
|
391
|
+
],
|
|
392
|
+
"function-call-argument-newline": [
|
|
393
|
+
"off",
|
|
394
|
+
],
|
|
395
|
+
"function-paren-newline": [
|
|
396
|
+
"off",
|
|
397
|
+
],
|
|
398
|
+
"generator-star": [
|
|
399
|
+
"off",
|
|
400
|
+
],
|
|
401
|
+
"generator-star-spacing": [
|
|
402
|
+
"off",
|
|
403
|
+
],
|
|
404
|
+
"getter-return": [
|
|
405
|
+
"off",
|
|
406
|
+
],
|
|
407
|
+
"implicit-arrow-linebreak": [
|
|
408
|
+
"off",
|
|
409
|
+
],
|
|
410
|
+
"import/default": [
|
|
411
|
+
"off",
|
|
412
|
+
],
|
|
413
|
+
"import/export": [
|
|
414
|
+
"error",
|
|
415
|
+
],
|
|
416
|
+
"import/named": [
|
|
417
|
+
"off",
|
|
418
|
+
],
|
|
419
|
+
"import/namespace": [
|
|
420
|
+
"off",
|
|
421
|
+
],
|
|
422
|
+
"import/no-default-export": [
|
|
423
|
+
"error",
|
|
424
|
+
],
|
|
425
|
+
"import/no-duplicates": [
|
|
426
|
+
"warn",
|
|
427
|
+
],
|
|
428
|
+
"import/no-extraneous-dependencies": [
|
|
429
|
+
"error",
|
|
430
|
+
{
|
|
431
|
+
"devDependencies": [
|
|
432
|
+
"test/**",
|
|
433
|
+
],
|
|
434
|
+
},
|
|
435
|
+
],
|
|
436
|
+
"import/no-named-as-default": [
|
|
437
|
+
"warn",
|
|
438
|
+
],
|
|
439
|
+
"import/no-named-as-default-member": [
|
|
440
|
+
"warn",
|
|
441
|
+
],
|
|
442
|
+
"import/no-unresolved": [
|
|
443
|
+
"error",
|
|
444
|
+
],
|
|
445
|
+
"import/prefer-default-export": [
|
|
446
|
+
"off",
|
|
447
|
+
],
|
|
448
|
+
"indent": [
|
|
449
|
+
"off",
|
|
450
|
+
],
|
|
451
|
+
"indent-legacy": [
|
|
452
|
+
"off",
|
|
453
|
+
],
|
|
454
|
+
"jest/expect-expect": [
|
|
455
|
+
"warn",
|
|
456
|
+
],
|
|
457
|
+
"jest/no-alias-methods": [
|
|
458
|
+
"error",
|
|
459
|
+
],
|
|
460
|
+
"jest/no-commented-out-tests": [
|
|
461
|
+
"warn",
|
|
462
|
+
],
|
|
463
|
+
"jest/no-conditional-expect": [
|
|
464
|
+
"error",
|
|
465
|
+
],
|
|
466
|
+
"jest/no-deprecated-functions": [
|
|
467
|
+
"error",
|
|
468
|
+
],
|
|
469
|
+
"jest/no-disabled-tests": [
|
|
470
|
+
"warn",
|
|
471
|
+
],
|
|
472
|
+
"jest/no-done-callback": [
|
|
473
|
+
"error",
|
|
474
|
+
],
|
|
475
|
+
"jest/no-export": [
|
|
476
|
+
"error",
|
|
477
|
+
],
|
|
478
|
+
"jest/no-focused-tests": [
|
|
479
|
+
"error",
|
|
480
|
+
],
|
|
481
|
+
"jest/no-identical-title": [
|
|
482
|
+
"error",
|
|
483
|
+
],
|
|
484
|
+
"jest/no-interpolation-in-snapshots": [
|
|
485
|
+
"error",
|
|
486
|
+
],
|
|
487
|
+
"jest/no-jasmine-globals": [
|
|
488
|
+
"error",
|
|
489
|
+
],
|
|
490
|
+
"jest/no-jest-import": [
|
|
491
|
+
"off",
|
|
492
|
+
],
|
|
493
|
+
"jest/no-mocks-import": [
|
|
494
|
+
"error",
|
|
495
|
+
],
|
|
496
|
+
"jest/no-standalone-expect": [
|
|
497
|
+
"error",
|
|
498
|
+
],
|
|
499
|
+
"jest/no-test-prefixes": [
|
|
500
|
+
"error",
|
|
501
|
+
],
|
|
502
|
+
"jest/unbound-method": [
|
|
503
|
+
"error",
|
|
504
|
+
],
|
|
505
|
+
"jest/valid-describe-callback": [
|
|
506
|
+
"error",
|
|
507
|
+
],
|
|
508
|
+
"jest/valid-expect": [
|
|
509
|
+
"error",
|
|
510
|
+
],
|
|
511
|
+
"jest/valid-expect-in-promise": [
|
|
512
|
+
"error",
|
|
513
|
+
],
|
|
514
|
+
"jest/valid-title": [
|
|
515
|
+
"error",
|
|
516
|
+
],
|
|
517
|
+
"json/*": [
|
|
518
|
+
"error",
|
|
519
|
+
],
|
|
520
|
+
"jsx-quotes": [
|
|
521
|
+
"off",
|
|
522
|
+
],
|
|
523
|
+
"key-spacing": [
|
|
524
|
+
"off",
|
|
525
|
+
],
|
|
526
|
+
"keyword-spacing": [
|
|
527
|
+
"off",
|
|
528
|
+
],
|
|
529
|
+
"linebreak-style": [
|
|
530
|
+
"off",
|
|
531
|
+
],
|
|
532
|
+
"lines-around-comment": [
|
|
533
|
+
0,
|
|
534
|
+
],
|
|
535
|
+
"max-len": [
|
|
536
|
+
0,
|
|
537
|
+
],
|
|
538
|
+
"max-statements-per-line": [
|
|
539
|
+
"off",
|
|
540
|
+
],
|
|
541
|
+
"multiline-ternary": [
|
|
542
|
+
"off",
|
|
543
|
+
],
|
|
544
|
+
"new-parens": [
|
|
545
|
+
"off",
|
|
546
|
+
],
|
|
547
|
+
"newline-per-chained-call": [
|
|
548
|
+
"off",
|
|
549
|
+
],
|
|
550
|
+
"no-array-constructor": [
|
|
551
|
+
"off",
|
|
552
|
+
],
|
|
553
|
+
"no-arrow-condition": [
|
|
554
|
+
"off",
|
|
555
|
+
],
|
|
556
|
+
"no-async-promise-executor": [
|
|
557
|
+
"error",
|
|
558
|
+
],
|
|
559
|
+
"no-case-declarations": [
|
|
560
|
+
"error",
|
|
561
|
+
],
|
|
562
|
+
"no-class-assign": [
|
|
563
|
+
"off",
|
|
564
|
+
],
|
|
565
|
+
"no-comma-dangle": [
|
|
566
|
+
"off",
|
|
567
|
+
],
|
|
568
|
+
"no-compare-neg-zero": [
|
|
569
|
+
"error",
|
|
570
|
+
],
|
|
571
|
+
"no-cond-assign": [
|
|
572
|
+
"error",
|
|
573
|
+
],
|
|
574
|
+
"no-confusing-arrow": [
|
|
575
|
+
0,
|
|
576
|
+
],
|
|
577
|
+
"no-const-assign": [
|
|
578
|
+
"off",
|
|
579
|
+
],
|
|
580
|
+
"no-constant-condition": [
|
|
581
|
+
"error",
|
|
582
|
+
],
|
|
583
|
+
"no-control-regex": [
|
|
584
|
+
"error",
|
|
585
|
+
],
|
|
586
|
+
"no-debugger": [
|
|
587
|
+
"error",
|
|
588
|
+
],
|
|
589
|
+
"no-delete-var": [
|
|
590
|
+
"error",
|
|
591
|
+
],
|
|
592
|
+
"no-dupe-args": [
|
|
593
|
+
"off",
|
|
594
|
+
],
|
|
595
|
+
"no-dupe-class-members": [
|
|
596
|
+
"off",
|
|
597
|
+
],
|
|
598
|
+
"no-dupe-else-if": [
|
|
599
|
+
"error",
|
|
600
|
+
],
|
|
601
|
+
"no-dupe-keys": [
|
|
602
|
+
"off",
|
|
603
|
+
],
|
|
604
|
+
"no-duplicate-case": [
|
|
605
|
+
"error",
|
|
606
|
+
],
|
|
607
|
+
"no-empty": [
|
|
608
|
+
"error",
|
|
609
|
+
],
|
|
610
|
+
"no-empty-character-class": [
|
|
611
|
+
"error",
|
|
612
|
+
],
|
|
613
|
+
"no-empty-pattern": [
|
|
614
|
+
"error",
|
|
615
|
+
],
|
|
616
|
+
"no-ex-assign": [
|
|
617
|
+
"error",
|
|
618
|
+
],
|
|
619
|
+
"no-extra-boolean-cast": [
|
|
620
|
+
"error",
|
|
621
|
+
],
|
|
622
|
+
"no-extra-parens": [
|
|
623
|
+
"off",
|
|
624
|
+
],
|
|
625
|
+
"no-extra-semi": [
|
|
626
|
+
"off",
|
|
627
|
+
],
|
|
628
|
+
"no-fallthrough": [
|
|
629
|
+
"error",
|
|
630
|
+
],
|
|
631
|
+
"no-floating-decimal": [
|
|
632
|
+
"off",
|
|
633
|
+
],
|
|
634
|
+
"no-func-assign": [
|
|
635
|
+
"off",
|
|
636
|
+
],
|
|
637
|
+
"no-global-assign": [
|
|
638
|
+
"error",
|
|
639
|
+
],
|
|
640
|
+
"no-implied-eval": [
|
|
641
|
+
"off",
|
|
642
|
+
],
|
|
643
|
+
"no-import-assign": [
|
|
644
|
+
"off",
|
|
645
|
+
],
|
|
646
|
+
"no-inner-declarations": [
|
|
647
|
+
"error",
|
|
648
|
+
],
|
|
649
|
+
"no-invalid-regexp": [
|
|
650
|
+
"error",
|
|
651
|
+
],
|
|
652
|
+
"no-irregular-whitespace": [
|
|
653
|
+
"error",
|
|
654
|
+
],
|
|
655
|
+
"no-loss-of-precision": [
|
|
656
|
+
"error",
|
|
657
|
+
],
|
|
658
|
+
"no-misleading-character-class": [
|
|
659
|
+
"error",
|
|
660
|
+
],
|
|
661
|
+
"no-mixed-operators": [
|
|
662
|
+
0,
|
|
663
|
+
],
|
|
664
|
+
"no-mixed-spaces-and-tabs": [
|
|
665
|
+
"off",
|
|
666
|
+
],
|
|
667
|
+
"no-multi-spaces": [
|
|
668
|
+
"off",
|
|
669
|
+
],
|
|
670
|
+
"no-multiple-empty-lines": [
|
|
671
|
+
"off",
|
|
672
|
+
],
|
|
673
|
+
"no-negated-condition": [
|
|
674
|
+
"off",
|
|
675
|
+
],
|
|
676
|
+
"no-nested-ternary": [
|
|
677
|
+
"off",
|
|
678
|
+
],
|
|
679
|
+
"no-new-native-nonconstructor": [
|
|
680
|
+
"off",
|
|
681
|
+
],
|
|
682
|
+
"no-new-symbol": [
|
|
683
|
+
"off",
|
|
684
|
+
],
|
|
685
|
+
"no-nonoctal-decimal-escape": [
|
|
686
|
+
"error",
|
|
687
|
+
],
|
|
688
|
+
"no-obj-calls": [
|
|
689
|
+
"off",
|
|
690
|
+
],
|
|
691
|
+
"no-octal": [
|
|
692
|
+
"error",
|
|
693
|
+
],
|
|
694
|
+
"no-process-exit": [
|
|
695
|
+
"error",
|
|
696
|
+
],
|
|
697
|
+
"no-prototype-builtins": [
|
|
698
|
+
"error",
|
|
699
|
+
],
|
|
700
|
+
"no-redeclare": [
|
|
701
|
+
"off",
|
|
702
|
+
],
|
|
703
|
+
"no-regex-spaces": [
|
|
704
|
+
"error",
|
|
705
|
+
],
|
|
706
|
+
"no-reserved-keys": [
|
|
707
|
+
"off",
|
|
708
|
+
],
|
|
709
|
+
"no-self-assign": [
|
|
710
|
+
"error",
|
|
711
|
+
],
|
|
712
|
+
"no-setter-return": [
|
|
713
|
+
"off",
|
|
714
|
+
],
|
|
715
|
+
"no-shadow-restricted-names": [
|
|
716
|
+
"error",
|
|
717
|
+
],
|
|
718
|
+
"no-space-before-semi": [
|
|
719
|
+
"off",
|
|
720
|
+
],
|
|
721
|
+
"no-spaced-func": [
|
|
722
|
+
"off",
|
|
723
|
+
],
|
|
724
|
+
"no-sparse-arrays": [
|
|
725
|
+
"error",
|
|
726
|
+
],
|
|
727
|
+
"no-tabs": [
|
|
728
|
+
0,
|
|
729
|
+
],
|
|
730
|
+
"no-this-before-super": [
|
|
731
|
+
"off",
|
|
732
|
+
],
|
|
733
|
+
"no-throw-literal": [
|
|
734
|
+
"off",
|
|
735
|
+
],
|
|
736
|
+
"no-trailing-spaces": [
|
|
737
|
+
"off",
|
|
738
|
+
],
|
|
739
|
+
"no-undef": [
|
|
740
|
+
"off",
|
|
741
|
+
],
|
|
742
|
+
"no-unexpected-multiline": [
|
|
743
|
+
0,
|
|
744
|
+
],
|
|
745
|
+
"no-unreachable": [
|
|
746
|
+
"off",
|
|
747
|
+
],
|
|
748
|
+
"no-unsafe-finally": [
|
|
749
|
+
"error",
|
|
750
|
+
],
|
|
751
|
+
"no-unsafe-negation": [
|
|
752
|
+
"off",
|
|
753
|
+
],
|
|
754
|
+
"no-unsafe-optional-chaining": [
|
|
755
|
+
"error",
|
|
756
|
+
],
|
|
757
|
+
"no-unused-expressions": [
|
|
758
|
+
"off",
|
|
759
|
+
],
|
|
760
|
+
"no-unused-labels": [
|
|
761
|
+
"error",
|
|
762
|
+
],
|
|
763
|
+
"no-unused-vars": [
|
|
764
|
+
"off",
|
|
765
|
+
],
|
|
766
|
+
"no-useless-backreference": [
|
|
767
|
+
"error",
|
|
768
|
+
],
|
|
769
|
+
"no-useless-catch": [
|
|
770
|
+
"error",
|
|
771
|
+
],
|
|
772
|
+
"no-useless-escape": [
|
|
773
|
+
"error",
|
|
774
|
+
],
|
|
775
|
+
"no-var": [
|
|
776
|
+
"error",
|
|
777
|
+
],
|
|
778
|
+
"no-whitespace-before-property": [
|
|
779
|
+
"off",
|
|
780
|
+
],
|
|
781
|
+
"no-with": [
|
|
782
|
+
"error",
|
|
783
|
+
],
|
|
784
|
+
"no-wrap-func": [
|
|
785
|
+
"off",
|
|
786
|
+
],
|
|
787
|
+
"node/no-deprecated-api": [
|
|
788
|
+
"error",
|
|
789
|
+
],
|
|
790
|
+
"node/no-exports-assign": [
|
|
791
|
+
"error",
|
|
792
|
+
],
|
|
793
|
+
"node/no-extraneous-import": [
|
|
794
|
+
"error",
|
|
795
|
+
],
|
|
796
|
+
"node/no-extraneous-require": [
|
|
797
|
+
"error",
|
|
798
|
+
],
|
|
799
|
+
"node/no-missing-import": [
|
|
800
|
+
"off",
|
|
801
|
+
],
|
|
802
|
+
"node/no-missing-require": [
|
|
803
|
+
"error",
|
|
804
|
+
],
|
|
805
|
+
"node/no-unpublished-bin": [
|
|
806
|
+
"error",
|
|
807
|
+
],
|
|
808
|
+
"node/no-unpublished-import": [
|
|
809
|
+
"error",
|
|
810
|
+
{
|
|
811
|
+
"allowModules": [
|
|
812
|
+
"@jest/globals",
|
|
813
|
+
"nock",
|
|
814
|
+
],
|
|
815
|
+
},
|
|
816
|
+
],
|
|
817
|
+
"node/no-unpublished-require": [
|
|
818
|
+
"error",
|
|
819
|
+
],
|
|
820
|
+
"node/no-unsupported-features/es-builtins": [
|
|
821
|
+
"error",
|
|
822
|
+
],
|
|
823
|
+
"node/no-unsupported-features/es-syntax": [
|
|
824
|
+
"off",
|
|
825
|
+
{
|
|
826
|
+
"ignores": [],
|
|
827
|
+
},
|
|
828
|
+
],
|
|
829
|
+
"node/no-unsupported-features/node-builtins": [
|
|
830
|
+
"error",
|
|
831
|
+
],
|
|
832
|
+
"node/process-exit-as-throw": [
|
|
833
|
+
"error",
|
|
834
|
+
],
|
|
835
|
+
"node/shebang": [
|
|
836
|
+
"error",
|
|
837
|
+
],
|
|
838
|
+
"nonblock-statement-body-position": [
|
|
839
|
+
"off",
|
|
840
|
+
],
|
|
841
|
+
"object-curly-newline": [
|
|
842
|
+
"off",
|
|
843
|
+
],
|
|
844
|
+
"object-curly-spacing": [
|
|
845
|
+
"off",
|
|
846
|
+
],
|
|
847
|
+
"object-property-newline": [
|
|
848
|
+
"off",
|
|
849
|
+
],
|
|
850
|
+
"one-var-declaration-per-line": [
|
|
851
|
+
"off",
|
|
852
|
+
],
|
|
853
|
+
"operator-linebreak": [
|
|
854
|
+
"off",
|
|
855
|
+
],
|
|
856
|
+
"padded-blocks": [
|
|
857
|
+
"off",
|
|
858
|
+
],
|
|
859
|
+
"prefer-arrow-callback": [
|
|
860
|
+
"off",
|
|
861
|
+
],
|
|
862
|
+
"prefer-const": [
|
|
863
|
+
"error",
|
|
864
|
+
],
|
|
865
|
+
"prefer-promise-reject-errors": [
|
|
866
|
+
"off",
|
|
867
|
+
],
|
|
868
|
+
"prefer-rest-params": [
|
|
869
|
+
"error",
|
|
870
|
+
],
|
|
871
|
+
"prefer-spread": [
|
|
872
|
+
"error",
|
|
873
|
+
],
|
|
874
|
+
"prettier/prettier": [
|
|
875
|
+
"error",
|
|
876
|
+
],
|
|
877
|
+
"quote-props": [
|
|
878
|
+
"off",
|
|
879
|
+
],
|
|
880
|
+
"quotes": [
|
|
881
|
+
0,
|
|
882
|
+
],
|
|
883
|
+
"react/jsx-child-element-spacing": [
|
|
884
|
+
"off",
|
|
885
|
+
],
|
|
886
|
+
"react/jsx-closing-bracket-location": [
|
|
887
|
+
"off",
|
|
888
|
+
],
|
|
889
|
+
"react/jsx-closing-tag-location": [
|
|
890
|
+
"off",
|
|
891
|
+
],
|
|
892
|
+
"react/jsx-curly-newline": [
|
|
893
|
+
"off",
|
|
894
|
+
],
|
|
895
|
+
"react/jsx-curly-spacing": [
|
|
896
|
+
"off",
|
|
897
|
+
],
|
|
898
|
+
"react/jsx-equals-spacing": [
|
|
899
|
+
"off",
|
|
900
|
+
],
|
|
901
|
+
"react/jsx-first-prop-new-line": [
|
|
902
|
+
"off",
|
|
903
|
+
],
|
|
904
|
+
"react/jsx-indent": [
|
|
905
|
+
"off",
|
|
906
|
+
],
|
|
907
|
+
"react/jsx-indent-props": [
|
|
908
|
+
"off",
|
|
909
|
+
],
|
|
910
|
+
"react/jsx-max-props-per-line": [
|
|
911
|
+
"off",
|
|
912
|
+
],
|
|
913
|
+
"react/jsx-newline": [
|
|
914
|
+
"off",
|
|
915
|
+
],
|
|
916
|
+
"react/jsx-one-expression-per-line": [
|
|
917
|
+
"off",
|
|
918
|
+
],
|
|
919
|
+
"react/jsx-props-no-multi-spaces": [
|
|
920
|
+
"off",
|
|
921
|
+
],
|
|
922
|
+
"react/jsx-space-before-closing": [
|
|
923
|
+
"off",
|
|
924
|
+
],
|
|
925
|
+
"react/jsx-tag-spacing": [
|
|
926
|
+
"off",
|
|
927
|
+
],
|
|
928
|
+
"react/jsx-wrap-multilines": [
|
|
929
|
+
"off",
|
|
930
|
+
],
|
|
931
|
+
"require-await": [
|
|
932
|
+
"off",
|
|
933
|
+
],
|
|
934
|
+
"require-yield": [
|
|
935
|
+
"error",
|
|
936
|
+
],
|
|
937
|
+
"rest-spread-spacing": [
|
|
938
|
+
"off",
|
|
939
|
+
],
|
|
940
|
+
"semi": [
|
|
941
|
+
"off",
|
|
942
|
+
],
|
|
943
|
+
"semi-spacing": [
|
|
944
|
+
"off",
|
|
945
|
+
],
|
|
946
|
+
"semi-style": [
|
|
947
|
+
"off",
|
|
948
|
+
],
|
|
949
|
+
"simple-import-sort/exports": [
|
|
950
|
+
"error",
|
|
951
|
+
],
|
|
952
|
+
"simple-import-sort/imports": [
|
|
953
|
+
"error",
|
|
954
|
+
],
|
|
955
|
+
"sonarjs/anchor-precedence": [
|
|
956
|
+
"error",
|
|
957
|
+
],
|
|
958
|
+
"sonarjs/argument-type": [
|
|
959
|
+
"error",
|
|
960
|
+
],
|
|
961
|
+
"sonarjs/arguments-order": [
|
|
962
|
+
"error",
|
|
963
|
+
],
|
|
964
|
+
"sonarjs/arguments-usage": [
|
|
965
|
+
"off",
|
|
966
|
+
],
|
|
967
|
+
"sonarjs/array-callback-without-return": [
|
|
968
|
+
"error",
|
|
969
|
+
],
|
|
970
|
+
"sonarjs/array-constructor": [
|
|
971
|
+
"off",
|
|
972
|
+
],
|
|
973
|
+
"sonarjs/arrow-function-convention": [
|
|
974
|
+
"off",
|
|
975
|
+
],
|
|
976
|
+
"sonarjs/assertions-in-tests": [
|
|
977
|
+
"error",
|
|
978
|
+
],
|
|
979
|
+
"sonarjs/aws-apigateway-public-api": [
|
|
980
|
+
"error",
|
|
981
|
+
],
|
|
982
|
+
"sonarjs/aws-ec2-rds-dms-public": [
|
|
983
|
+
"error",
|
|
984
|
+
],
|
|
985
|
+
"sonarjs/aws-ec2-unencrypted-ebs-volume": [
|
|
986
|
+
"error",
|
|
987
|
+
],
|
|
988
|
+
"sonarjs/aws-efs-unencrypted": [
|
|
989
|
+
"error",
|
|
990
|
+
],
|
|
991
|
+
"sonarjs/aws-iam-all-privileges": [
|
|
992
|
+
"error",
|
|
993
|
+
],
|
|
994
|
+
"sonarjs/aws-iam-all-resources-accessible": [
|
|
995
|
+
"off",
|
|
996
|
+
],
|
|
997
|
+
"sonarjs/aws-iam-privilege-escalation": [
|
|
998
|
+
"error",
|
|
999
|
+
],
|
|
1000
|
+
"sonarjs/aws-iam-public-access": [
|
|
1001
|
+
"error",
|
|
1002
|
+
],
|
|
1003
|
+
"sonarjs/aws-opensearchservice-domain": [
|
|
1004
|
+
"error",
|
|
1005
|
+
],
|
|
1006
|
+
"sonarjs/aws-rds-unencrypted-databases": [
|
|
1007
|
+
"error",
|
|
1008
|
+
],
|
|
1009
|
+
"sonarjs/aws-restricted-ip-admin-access": [
|
|
1010
|
+
"error",
|
|
1011
|
+
],
|
|
1012
|
+
"sonarjs/aws-s3-bucket-granted-access": [
|
|
1013
|
+
"error",
|
|
1014
|
+
],
|
|
1015
|
+
"sonarjs/aws-s3-bucket-insecure-http": [
|
|
1016
|
+
"error",
|
|
1017
|
+
],
|
|
1018
|
+
"sonarjs/aws-s3-bucket-public-access": [
|
|
1019
|
+
"error",
|
|
1020
|
+
],
|
|
1021
|
+
"sonarjs/aws-s3-bucket-server-encryption": [
|
|
1022
|
+
"off",
|
|
1023
|
+
],
|
|
1024
|
+
"sonarjs/aws-s3-bucket-versioning": [
|
|
1025
|
+
"error",
|
|
1026
|
+
],
|
|
1027
|
+
"sonarjs/aws-sagemaker-unencrypted-notebook": [
|
|
1028
|
+
"error",
|
|
1029
|
+
],
|
|
1030
|
+
"sonarjs/aws-sns-unencrypted-topics": [
|
|
1031
|
+
"error",
|
|
1032
|
+
],
|
|
1033
|
+
"sonarjs/aws-sqs-unencrypted-queue": [
|
|
1034
|
+
"error",
|
|
1035
|
+
],
|
|
1036
|
+
"sonarjs/bitwise-operators": [
|
|
1037
|
+
"error",
|
|
1038
|
+
],
|
|
1039
|
+
"sonarjs/block-scoped-var": [
|
|
1040
|
+
"error",
|
|
1041
|
+
],
|
|
1042
|
+
"sonarjs/bool-param-default": [
|
|
1043
|
+
"off",
|
|
1044
|
+
],
|
|
1045
|
+
"sonarjs/call-argument-line": [
|
|
1046
|
+
"error",
|
|
1047
|
+
],
|
|
1048
|
+
"sonarjs/certificate-transparency": [
|
|
1049
|
+
"error",
|
|
1050
|
+
],
|
|
1051
|
+
"sonarjs/chai-determinate-assertion": [
|
|
1052
|
+
"error",
|
|
1053
|
+
],
|
|
1054
|
+
"sonarjs/class-name": [
|
|
1055
|
+
"error",
|
|
1056
|
+
],
|
|
1057
|
+
"sonarjs/class-prototype": [
|
|
1058
|
+
"off",
|
|
1059
|
+
],
|
|
1060
|
+
"sonarjs/code-eval": [
|
|
1061
|
+
"error",
|
|
1062
|
+
],
|
|
1063
|
+
"sonarjs/cognitive-complexity": [
|
|
1064
|
+
"error",
|
|
1065
|
+
],
|
|
1066
|
+
"sonarjs/comma-or-logical-or-case": [
|
|
1067
|
+
"error",
|
|
1068
|
+
],
|
|
1069
|
+
"sonarjs/comment-regex": [
|
|
1070
|
+
"off",
|
|
1071
|
+
],
|
|
1072
|
+
"sonarjs/concise-regex": [
|
|
1073
|
+
"error",
|
|
1074
|
+
],
|
|
1075
|
+
"sonarjs/conditional-indentation": [
|
|
1076
|
+
"off",
|
|
1077
|
+
],
|
|
1078
|
+
"sonarjs/confidential-information-logging": [
|
|
1079
|
+
"error",
|
|
1080
|
+
],
|
|
1081
|
+
"sonarjs/constructor-for-side-effects": [
|
|
1082
|
+
"error",
|
|
1083
|
+
],
|
|
1084
|
+
"sonarjs/content-length": [
|
|
1085
|
+
"error",
|
|
1086
|
+
],
|
|
1087
|
+
"sonarjs/content-security-policy": [
|
|
1088
|
+
"error",
|
|
1089
|
+
],
|
|
1090
|
+
"sonarjs/cookie-no-httponly": [
|
|
1091
|
+
"error",
|
|
1092
|
+
],
|
|
1093
|
+
"sonarjs/cookies": [
|
|
1094
|
+
"off",
|
|
1095
|
+
],
|
|
1096
|
+
"sonarjs/cors": [
|
|
1097
|
+
"error",
|
|
1098
|
+
],
|
|
1099
|
+
"sonarjs/csrf": [
|
|
1100
|
+
"error",
|
|
1101
|
+
],
|
|
1102
|
+
"sonarjs/cyclomatic-complexity": [
|
|
1103
|
+
"off",
|
|
1104
|
+
],
|
|
1105
|
+
"sonarjs/declarations-in-global-scope": [
|
|
1106
|
+
"off",
|
|
1107
|
+
],
|
|
1108
|
+
"sonarjs/deprecation": [
|
|
1109
|
+
"off",
|
|
1110
|
+
],
|
|
1111
|
+
"sonarjs/destructuring-assignment-syntax": [
|
|
1112
|
+
"off",
|
|
1113
|
+
],
|
|
1114
|
+
"sonarjs/different-types-comparison": [
|
|
1115
|
+
"error",
|
|
1116
|
+
],
|
|
1117
|
+
"sonarjs/disabled-auto-escaping": [
|
|
1118
|
+
"error",
|
|
1119
|
+
],
|
|
1120
|
+
"sonarjs/disabled-resource-integrity": [
|
|
1121
|
+
"error",
|
|
1122
|
+
],
|
|
1123
|
+
"sonarjs/disabled-timeout": [
|
|
1124
|
+
"error",
|
|
1125
|
+
],
|
|
1126
|
+
"sonarjs/dns-prefetching": [
|
|
1127
|
+
"off",
|
|
1128
|
+
],
|
|
1129
|
+
"sonarjs/duplicates-in-character-class": [
|
|
1130
|
+
"error",
|
|
1131
|
+
],
|
|
1132
|
+
"sonarjs/elseif-without-else": [
|
|
1133
|
+
"off",
|
|
1134
|
+
],
|
|
1135
|
+
"sonarjs/empty-string-repetition": [
|
|
1136
|
+
"error",
|
|
1137
|
+
],
|
|
1138
|
+
"sonarjs/encryption": [
|
|
1139
|
+
"off",
|
|
1140
|
+
],
|
|
1141
|
+
"sonarjs/encryption-secure-mode": [
|
|
1142
|
+
"error",
|
|
1143
|
+
],
|
|
1144
|
+
"sonarjs/enforce-trailing-comma": [
|
|
1145
|
+
"off",
|
|
1146
|
+
],
|
|
1147
|
+
"sonarjs/existing-groups": [
|
|
1148
|
+
"error",
|
|
1149
|
+
],
|
|
1150
|
+
"sonarjs/expression-complexity": [
|
|
1151
|
+
"off",
|
|
1152
|
+
],
|
|
1153
|
+
"sonarjs/file-header": [
|
|
1154
|
+
"off",
|
|
1155
|
+
],
|
|
1156
|
+
"sonarjs/file-name-differ-from-class": [
|
|
1157
|
+
"off",
|
|
1158
|
+
],
|
|
1159
|
+
"sonarjs/file-permissions": [
|
|
1160
|
+
"error",
|
|
1161
|
+
],
|
|
1162
|
+
"sonarjs/file-uploads": [
|
|
1163
|
+
"error",
|
|
1164
|
+
],
|
|
1165
|
+
"sonarjs/fixme-tag": [
|
|
1166
|
+
"error",
|
|
1167
|
+
],
|
|
1168
|
+
"sonarjs/for-in": [
|
|
1169
|
+
"off",
|
|
1170
|
+
],
|
|
1171
|
+
"sonarjs/for-loop-increment-sign": [
|
|
1172
|
+
"error",
|
|
1173
|
+
],
|
|
1174
|
+
"sonarjs/frame-ancestors": [
|
|
1175
|
+
"error",
|
|
1176
|
+
],
|
|
1177
|
+
"sonarjs/function-inside-loop": [
|
|
1178
|
+
"error",
|
|
1179
|
+
],
|
|
1180
|
+
"sonarjs/function-name": [
|
|
1181
|
+
"off",
|
|
1182
|
+
],
|
|
1183
|
+
"sonarjs/function-return-type": [
|
|
1184
|
+
"off",
|
|
1185
|
+
],
|
|
1186
|
+
"sonarjs/future-reserved-words": [
|
|
1187
|
+
"error",
|
|
1188
|
+
],
|
|
1189
|
+
"sonarjs/generator-without-yield": [
|
|
1190
|
+
"error",
|
|
1191
|
+
],
|
|
1192
|
+
"sonarjs/hashing": [
|
|
1193
|
+
"error",
|
|
1194
|
+
],
|
|
1195
|
+
"sonarjs/hidden-files": [
|
|
1196
|
+
"error",
|
|
1197
|
+
],
|
|
1198
|
+
"sonarjs/in-operator-type-error": [
|
|
1199
|
+
"error",
|
|
1200
|
+
],
|
|
1201
|
+
"sonarjs/inconsistent-function-call": [
|
|
1202
|
+
"error",
|
|
1203
|
+
],
|
|
1204
|
+
"sonarjs/index-of-compare-to-positive-number": [
|
|
1205
|
+
"error",
|
|
1206
|
+
],
|
|
1207
|
+
"sonarjs/insecure-cookie": [
|
|
1208
|
+
"error",
|
|
1209
|
+
],
|
|
1210
|
+
"sonarjs/insecure-jwt-token": [
|
|
1211
|
+
"error",
|
|
1212
|
+
],
|
|
1213
|
+
"sonarjs/inverted-assertion-arguments": [
|
|
1214
|
+
"error",
|
|
1215
|
+
],
|
|
1216
|
+
"sonarjs/jsx-no-leaked-render": [
|
|
1217
|
+
"error",
|
|
1218
|
+
],
|
|
1219
|
+
"sonarjs/label-position": [
|
|
1220
|
+
"error",
|
|
1221
|
+
],
|
|
1222
|
+
"sonarjs/link-with-target-blank": [
|
|
1223
|
+
"error",
|
|
1224
|
+
],
|
|
1225
|
+
"sonarjs/max-lines": [
|
|
1226
|
+
"off",
|
|
1227
|
+
],
|
|
1228
|
+
"sonarjs/max-lines-per-function": [
|
|
1229
|
+
"off",
|
|
1230
|
+
],
|
|
1231
|
+
"sonarjs/max-switch-cases": [
|
|
1232
|
+
"error",
|
|
1233
|
+
],
|
|
1234
|
+
"sonarjs/max-union-size": [
|
|
1235
|
+
"off",
|
|
1236
|
+
],
|
|
1237
|
+
"sonarjs/misplaced-loop-counter": [
|
|
1238
|
+
"error",
|
|
1239
|
+
],
|
|
1240
|
+
"sonarjs/nested-control-flow": [
|
|
1241
|
+
"off",
|
|
1242
|
+
],
|
|
1243
|
+
"sonarjs/new-operator-misuse": [
|
|
1244
|
+
"error",
|
|
1245
|
+
],
|
|
1246
|
+
"sonarjs/no-all-duplicated-branches": [
|
|
1247
|
+
"error",
|
|
1248
|
+
],
|
|
1249
|
+
"sonarjs/no-alphabetical-sort": [
|
|
1250
|
+
"error",
|
|
1251
|
+
],
|
|
1252
|
+
"sonarjs/no-angular-bypass-sanitization": [
|
|
1253
|
+
"error",
|
|
1254
|
+
],
|
|
1255
|
+
"sonarjs/no-array-delete": [
|
|
1256
|
+
"error",
|
|
1257
|
+
],
|
|
1258
|
+
"sonarjs/no-associative-arrays": [
|
|
1259
|
+
"error",
|
|
1260
|
+
],
|
|
1261
|
+
"sonarjs/no-async-constructor": [
|
|
1262
|
+
"error",
|
|
1263
|
+
],
|
|
1264
|
+
"sonarjs/no-built-in-override": [
|
|
1265
|
+
"off",
|
|
1266
|
+
],
|
|
1267
|
+
"sonarjs/no-case-label-in-switch": [
|
|
1268
|
+
"error",
|
|
1269
|
+
],
|
|
1270
|
+
"sonarjs/no-clear-text-protocols": [
|
|
1271
|
+
"error",
|
|
1272
|
+
],
|
|
1273
|
+
"sonarjs/no-code-after-done": [
|
|
1274
|
+
"error",
|
|
1275
|
+
],
|
|
1276
|
+
"sonarjs/no-collapsible-if": [
|
|
1277
|
+
"off",
|
|
1278
|
+
],
|
|
1279
|
+
"sonarjs/no-collection-size-mischeck": [
|
|
1280
|
+
"error",
|
|
1281
|
+
],
|
|
1282
|
+
"sonarjs/no-commented-code": [
|
|
1283
|
+
"error",
|
|
1284
|
+
],
|
|
1285
|
+
"sonarjs/no-control-regex": [
|
|
1286
|
+
"error",
|
|
1287
|
+
],
|
|
1288
|
+
"sonarjs/no-dead-store": [
|
|
1289
|
+
"error",
|
|
1290
|
+
],
|
|
1291
|
+
"sonarjs/no-delete-var": [
|
|
1292
|
+
"error",
|
|
1293
|
+
],
|
|
1294
|
+
"sonarjs/no-duplicate-in-composite": [
|
|
1295
|
+
"error",
|
|
1296
|
+
],
|
|
1297
|
+
"sonarjs/no-duplicate-string": [
|
|
1298
|
+
"off",
|
|
1299
|
+
],
|
|
1300
|
+
"sonarjs/no-duplicated-branches": [
|
|
1301
|
+
"error",
|
|
1302
|
+
],
|
|
1303
|
+
"sonarjs/no-element-overwrite": [
|
|
1304
|
+
"error",
|
|
1305
|
+
],
|
|
1306
|
+
"sonarjs/no-empty-after-reluctant": [
|
|
1307
|
+
"error",
|
|
1308
|
+
],
|
|
1309
|
+
"sonarjs/no-empty-alternatives": [
|
|
1310
|
+
"error",
|
|
1311
|
+
],
|
|
1312
|
+
"sonarjs/no-empty-character-class": [
|
|
1313
|
+
"error",
|
|
1314
|
+
],
|
|
1315
|
+
"sonarjs/no-empty-collection": [
|
|
1316
|
+
"error",
|
|
1317
|
+
],
|
|
1318
|
+
"sonarjs/no-empty-group": [
|
|
1319
|
+
"error",
|
|
1320
|
+
],
|
|
1321
|
+
"sonarjs/no-empty-test-file": [
|
|
1322
|
+
"error",
|
|
1323
|
+
],
|
|
1324
|
+
"sonarjs/no-equals-in-for-termination": [
|
|
1325
|
+
"error",
|
|
1326
|
+
],
|
|
1327
|
+
"sonarjs/no-exclusive-tests": [
|
|
1328
|
+
"error",
|
|
1329
|
+
],
|
|
1330
|
+
"sonarjs/no-extra-arguments": [
|
|
1331
|
+
"error",
|
|
1332
|
+
],
|
|
1333
|
+
"sonarjs/no-fallthrough": [
|
|
1334
|
+
"error",
|
|
1335
|
+
],
|
|
1336
|
+
"sonarjs/no-for-in-iterable": [
|
|
1337
|
+
"off",
|
|
1338
|
+
],
|
|
1339
|
+
"sonarjs/no-function-declaration-in-block": [
|
|
1340
|
+
"off",
|
|
1341
|
+
],
|
|
1342
|
+
"sonarjs/no-global-this": [
|
|
1343
|
+
"error",
|
|
1344
|
+
],
|
|
1345
|
+
"sonarjs/no-globals-shadowing": [
|
|
1346
|
+
"error",
|
|
1347
|
+
],
|
|
1348
|
+
"sonarjs/no-gratuitous-expressions": [
|
|
1349
|
+
"error",
|
|
1350
|
+
],
|
|
1351
|
+
"sonarjs/no-hardcoded-ip": [
|
|
1352
|
+
"error",
|
|
1353
|
+
],
|
|
1354
|
+
"sonarjs/no-hardcoded-passwords": [
|
|
1355
|
+
"error",
|
|
1356
|
+
],
|
|
1357
|
+
"sonarjs/no-hardcoded-secrets": [
|
|
1358
|
+
"error",
|
|
1359
|
+
],
|
|
1360
|
+
"sonarjs/no-hook-setter-in-body": [
|
|
1361
|
+
"error",
|
|
1362
|
+
],
|
|
1363
|
+
"sonarjs/no-identical-conditions": [
|
|
1364
|
+
"error",
|
|
1365
|
+
],
|
|
1366
|
+
"sonarjs/no-identical-expressions": [
|
|
1367
|
+
"error",
|
|
1368
|
+
],
|
|
1369
|
+
"sonarjs/no-identical-functions": [
|
|
1370
|
+
"error",
|
|
1371
|
+
],
|
|
1372
|
+
"sonarjs/no-ignored-exceptions": [
|
|
1373
|
+
"off",
|
|
1374
|
+
],
|
|
1375
|
+
"sonarjs/no-ignored-return": [
|
|
1376
|
+
"error",
|
|
1377
|
+
],
|
|
1378
|
+
"sonarjs/no-implicit-dependencies": [
|
|
1379
|
+
"off",
|
|
1380
|
+
],
|
|
1381
|
+
"sonarjs/no-implicit-global": [
|
|
1382
|
+
"error",
|
|
1383
|
+
],
|
|
1384
|
+
"sonarjs/no-in-misuse": [
|
|
1385
|
+
"error",
|
|
1386
|
+
],
|
|
1387
|
+
"sonarjs/no-incomplete-assertions": [
|
|
1388
|
+
"error",
|
|
1389
|
+
],
|
|
1390
|
+
"sonarjs/no-inconsistent-returns": [
|
|
1391
|
+
"off",
|
|
1392
|
+
],
|
|
1393
|
+
"sonarjs/no-incorrect-string-concat": [
|
|
1394
|
+
"off",
|
|
1395
|
+
],
|
|
1396
|
+
"sonarjs/no-internal-api-use": [
|
|
1397
|
+
"error",
|
|
1398
|
+
],
|
|
1399
|
+
"sonarjs/no-intrusive-permissions": [
|
|
1400
|
+
"error",
|
|
1401
|
+
],
|
|
1402
|
+
"sonarjs/no-invalid-await": [
|
|
1403
|
+
"error",
|
|
1404
|
+
],
|
|
1405
|
+
"sonarjs/no-invalid-regexp": [
|
|
1406
|
+
"error",
|
|
1407
|
+
],
|
|
1408
|
+
"sonarjs/no-invariant-returns": [
|
|
1409
|
+
"error",
|
|
1410
|
+
],
|
|
1411
|
+
"sonarjs/no-inverted-boolean-check": [
|
|
1412
|
+
"error",
|
|
1413
|
+
],
|
|
1414
|
+
"sonarjs/no-ip-forward": [
|
|
1415
|
+
"error",
|
|
1416
|
+
],
|
|
1417
|
+
"sonarjs/no-labels": [
|
|
1418
|
+
"error",
|
|
1419
|
+
],
|
|
1420
|
+
"sonarjs/no-literal-call": [
|
|
1421
|
+
"error",
|
|
1422
|
+
],
|
|
1423
|
+
"sonarjs/no-mime-sniff": [
|
|
1424
|
+
"error",
|
|
1425
|
+
],
|
|
1426
|
+
"sonarjs/no-misleading-array-reverse": [
|
|
1427
|
+
"error",
|
|
1428
|
+
],
|
|
1429
|
+
"sonarjs/no-misleading-character-class": [
|
|
1430
|
+
"error",
|
|
1431
|
+
],
|
|
1432
|
+
"sonarjs/no-mixed-content": [
|
|
1433
|
+
"error",
|
|
1434
|
+
],
|
|
1435
|
+
"sonarjs/no-nested-assignment": [
|
|
1436
|
+
"error",
|
|
1437
|
+
],
|
|
1438
|
+
"sonarjs/no-nested-conditional": [
|
|
1439
|
+
"error",
|
|
1440
|
+
],
|
|
1441
|
+
"sonarjs/no-nested-functions": [
|
|
1442
|
+
"warn",
|
|
1443
|
+
{
|
|
1444
|
+
"threshold": 5,
|
|
1445
|
+
},
|
|
1446
|
+
],
|
|
1447
|
+
"sonarjs/no-nested-incdec": [
|
|
1448
|
+
"off",
|
|
1449
|
+
],
|
|
1450
|
+
"sonarjs/no-nested-switch": [
|
|
1451
|
+
"off",
|
|
1452
|
+
],
|
|
1453
|
+
"sonarjs/no-nested-template-literals": [
|
|
1454
|
+
"error",
|
|
1455
|
+
],
|
|
1456
|
+
"sonarjs/no-one-iteration-loop": [
|
|
1457
|
+
"error",
|
|
1458
|
+
],
|
|
1459
|
+
"sonarjs/no-os-command-from-path": [
|
|
1460
|
+
"error",
|
|
1461
|
+
],
|
|
1462
|
+
"sonarjs/no-parameter-reassignment": [
|
|
1463
|
+
"error",
|
|
1464
|
+
],
|
|
1465
|
+
"sonarjs/no-primitive-wrappers": [
|
|
1466
|
+
"error",
|
|
1467
|
+
],
|
|
1468
|
+
"sonarjs/no-redundant-assignments": [
|
|
1469
|
+
"error",
|
|
1470
|
+
],
|
|
1471
|
+
"sonarjs/no-redundant-boolean": [
|
|
1472
|
+
"error",
|
|
1473
|
+
],
|
|
1474
|
+
"sonarjs/no-redundant-jump": [
|
|
1475
|
+
"error",
|
|
1476
|
+
],
|
|
1477
|
+
"sonarjs/no-redundant-optional": [
|
|
1478
|
+
"error",
|
|
1479
|
+
],
|
|
1480
|
+
"sonarjs/no-redundant-parentheses": [
|
|
1481
|
+
"off",
|
|
1482
|
+
],
|
|
1483
|
+
"sonarjs/no-reference-error": [
|
|
1484
|
+
"off",
|
|
1485
|
+
],
|
|
1486
|
+
"sonarjs/no-referrer-policy": [
|
|
1487
|
+
"error",
|
|
1488
|
+
],
|
|
1489
|
+
"sonarjs/no-regex-spaces": [
|
|
1490
|
+
"error",
|
|
1491
|
+
],
|
|
1492
|
+
"sonarjs/no-require-or-define": [
|
|
1493
|
+
"off",
|
|
1494
|
+
],
|
|
1495
|
+
"sonarjs/no-return-type-any": [
|
|
1496
|
+
"off",
|
|
1497
|
+
],
|
|
1498
|
+
"sonarjs/no-same-argument-assert": [
|
|
1499
|
+
"error",
|
|
1500
|
+
],
|
|
1501
|
+
"sonarjs/no-same-line-conditional": [
|
|
1502
|
+
"error",
|
|
1503
|
+
],
|
|
1504
|
+
"sonarjs/no-selector-parameter": [
|
|
1505
|
+
"error",
|
|
1506
|
+
],
|
|
1507
|
+
"sonarjs/no-skipped-tests": [
|
|
1508
|
+
"error",
|
|
1509
|
+
],
|
|
1510
|
+
"sonarjs/no-small-switch": [
|
|
1511
|
+
"off",
|
|
1512
|
+
],
|
|
1513
|
+
"sonarjs/no-sonar-comments": [
|
|
1514
|
+
"off",
|
|
1515
|
+
],
|
|
1516
|
+
"sonarjs/no-tab": [
|
|
1517
|
+
"off",
|
|
1518
|
+
],
|
|
1519
|
+
"sonarjs/no-table-as-layout": [
|
|
1520
|
+
"error",
|
|
1521
|
+
],
|
|
1522
|
+
"sonarjs/no-try-promise": [
|
|
1523
|
+
"error",
|
|
1524
|
+
],
|
|
1525
|
+
"sonarjs/no-undefined-argument": [
|
|
1526
|
+
"error",
|
|
1527
|
+
],
|
|
1528
|
+
"sonarjs/no-undefined-assignment": [
|
|
1529
|
+
"off",
|
|
1530
|
+
],
|
|
1531
|
+
"sonarjs/no-unenclosed-multiline-block": [
|
|
1532
|
+
"error",
|
|
1533
|
+
],
|
|
1534
|
+
"sonarjs/no-uniq-key": [
|
|
1535
|
+
"error",
|
|
1536
|
+
],
|
|
1537
|
+
"sonarjs/no-unsafe-unzip": [
|
|
1538
|
+
"error",
|
|
1539
|
+
],
|
|
1540
|
+
"sonarjs/no-unthrown-error": [
|
|
1541
|
+
"error",
|
|
1542
|
+
],
|
|
1543
|
+
"sonarjs/no-unused-collection": [
|
|
1544
|
+
"error",
|
|
1545
|
+
],
|
|
1546
|
+
"sonarjs/no-unused-function-argument": [
|
|
1547
|
+
"off",
|
|
1548
|
+
],
|
|
1549
|
+
"sonarjs/no-unused-vars": [
|
|
1550
|
+
"off",
|
|
1551
|
+
],
|
|
1552
|
+
"sonarjs/no-use-of-empty-return-value": [
|
|
1553
|
+
"error",
|
|
1554
|
+
],
|
|
1555
|
+
"sonarjs/no-useless-catch": [
|
|
1556
|
+
"error",
|
|
1557
|
+
],
|
|
1558
|
+
"sonarjs/no-useless-increment": [
|
|
1559
|
+
"error",
|
|
1560
|
+
],
|
|
1561
|
+
"sonarjs/no-useless-intersection": [
|
|
1562
|
+
"error",
|
|
1563
|
+
],
|
|
1564
|
+
"sonarjs/no-useless-react-setstate": [
|
|
1565
|
+
"error",
|
|
1566
|
+
],
|
|
1567
|
+
"sonarjs/no-variable-usage-before-declaration": [
|
|
1568
|
+
"off",
|
|
1569
|
+
],
|
|
1570
|
+
"sonarjs/no-vue-bypass-sanitization": [
|
|
1571
|
+
"off",
|
|
1572
|
+
],
|
|
1573
|
+
"sonarjs/no-weak-cipher": [
|
|
1574
|
+
"error",
|
|
1575
|
+
],
|
|
1576
|
+
"sonarjs/no-weak-keys": [
|
|
1577
|
+
"error",
|
|
1578
|
+
],
|
|
1579
|
+
"sonarjs/no-wildcard-import": [
|
|
1580
|
+
"off",
|
|
1581
|
+
],
|
|
1582
|
+
"sonarjs/non-existent-operator": [
|
|
1583
|
+
"error",
|
|
1584
|
+
],
|
|
1585
|
+
"sonarjs/non-number-in-arithmetic-expression": [
|
|
1586
|
+
"off",
|
|
1587
|
+
],
|
|
1588
|
+
"sonarjs/null-dereference": [
|
|
1589
|
+
"error",
|
|
1590
|
+
],
|
|
1591
|
+
"sonarjs/object-alt-content": [
|
|
1592
|
+
"error",
|
|
1593
|
+
],
|
|
1594
|
+
"sonarjs/operation-returning-nan": [
|
|
1595
|
+
"off",
|
|
1596
|
+
],
|
|
1597
|
+
"sonarjs/os-command": [
|
|
1598
|
+
"error",
|
|
1599
|
+
],
|
|
1600
|
+
"sonarjs/post-message": [
|
|
1601
|
+
"error",
|
|
1602
|
+
],
|
|
1603
|
+
"sonarjs/prefer-default-last": [
|
|
1604
|
+
"error",
|
|
1605
|
+
],
|
|
1606
|
+
"sonarjs/prefer-immediate-return": [
|
|
1607
|
+
"off",
|
|
1608
|
+
],
|
|
1609
|
+
"sonarjs/prefer-nullish-coalescing": [
|
|
1610
|
+
"off",
|
|
1611
|
+
],
|
|
1612
|
+
"sonarjs/prefer-object-literal": [
|
|
1613
|
+
"off",
|
|
1614
|
+
],
|
|
1615
|
+
"sonarjs/prefer-optional-chain": [
|
|
1616
|
+
"off",
|
|
1617
|
+
],
|
|
1618
|
+
"sonarjs/prefer-promise-shorthand": [
|
|
1619
|
+
"error",
|
|
1620
|
+
],
|
|
1621
|
+
"sonarjs/prefer-read-only-props": [
|
|
1622
|
+
"off",
|
|
1623
|
+
],
|
|
1624
|
+
"sonarjs/prefer-regexp-exec": [
|
|
1625
|
+
"error",
|
|
1626
|
+
],
|
|
1627
|
+
"sonarjs/prefer-single-boolean-return": [
|
|
1628
|
+
"error",
|
|
1629
|
+
],
|
|
1630
|
+
"sonarjs/prefer-type-guard": [
|
|
1631
|
+
"error",
|
|
1632
|
+
],
|
|
1633
|
+
"sonarjs/prefer-while": [
|
|
1634
|
+
"error",
|
|
1635
|
+
],
|
|
1636
|
+
"sonarjs/process-argv": [
|
|
1637
|
+
"off",
|
|
1638
|
+
],
|
|
1639
|
+
"sonarjs/production-debug": [
|
|
1640
|
+
"error",
|
|
1641
|
+
],
|
|
1642
|
+
"sonarjs/pseudo-random": [
|
|
1643
|
+
"error",
|
|
1644
|
+
],
|
|
1645
|
+
"sonarjs/public-static-readonly": [
|
|
1646
|
+
"error",
|
|
1647
|
+
],
|
|
1648
|
+
"sonarjs/publicly-writable-directories": [
|
|
1649
|
+
"error",
|
|
1650
|
+
],
|
|
1651
|
+
"sonarjs/reduce-initial-value": [
|
|
1652
|
+
"error",
|
|
1653
|
+
],
|
|
1654
|
+
"sonarjs/redundant-type-aliases": [
|
|
1655
|
+
"error",
|
|
1656
|
+
],
|
|
1657
|
+
"sonarjs/regex-complexity": [
|
|
1658
|
+
"error",
|
|
1659
|
+
],
|
|
1660
|
+
"sonarjs/regular-expr": [
|
|
1661
|
+
"off",
|
|
1662
|
+
],
|
|
1663
|
+
"sonarjs/session-regeneration": [
|
|
1664
|
+
"error",
|
|
1665
|
+
],
|
|
1666
|
+
"sonarjs/shorthand-property-grouping": [
|
|
1667
|
+
"off",
|
|
1668
|
+
],
|
|
1669
|
+
"sonarjs/single-char-in-character-classes": [
|
|
1670
|
+
"error",
|
|
1671
|
+
],
|
|
1672
|
+
"sonarjs/single-character-alternation": [
|
|
1673
|
+
"error",
|
|
1674
|
+
],
|
|
1675
|
+
"sonarjs/slow-regex": [
|
|
1676
|
+
"error",
|
|
1677
|
+
],
|
|
1678
|
+
"sonarjs/sockets": [
|
|
1679
|
+
"off",
|
|
1680
|
+
],
|
|
1681
|
+
"sonarjs/sql-queries": [
|
|
1682
|
+
"error",
|
|
1683
|
+
],
|
|
1684
|
+
"sonarjs/stable-tests": [
|
|
1685
|
+
"error",
|
|
1686
|
+
],
|
|
1687
|
+
"sonarjs/standard-input": [
|
|
1688
|
+
"off",
|
|
1689
|
+
],
|
|
1690
|
+
"sonarjs/stateful-regex": [
|
|
1691
|
+
"error",
|
|
1692
|
+
],
|
|
1693
|
+
"sonarjs/strict-transport-security": [
|
|
1694
|
+
"error",
|
|
1695
|
+
],
|
|
1696
|
+
"sonarjs/strings-comparison": [
|
|
1697
|
+
"off",
|
|
1698
|
+
],
|
|
1699
|
+
"sonarjs/super-invocation": [
|
|
1700
|
+
"error",
|
|
1701
|
+
],
|
|
1702
|
+
"sonarjs/table-header": [
|
|
1703
|
+
"error",
|
|
1704
|
+
],
|
|
1705
|
+
"sonarjs/table-header-reference": [
|
|
1706
|
+
"error",
|
|
1707
|
+
],
|
|
1708
|
+
"sonarjs/test-check-exception": [
|
|
1709
|
+
"error",
|
|
1710
|
+
],
|
|
1711
|
+
"sonarjs/todo-tag": [
|
|
1712
|
+
"off",
|
|
1713
|
+
],
|
|
1714
|
+
"sonarjs/too-many-break-or-continue-in-loop": [
|
|
1715
|
+
"off",
|
|
1716
|
+
],
|
|
1717
|
+
"sonarjs/unicode-aware-regex": [
|
|
1718
|
+
"off",
|
|
1719
|
+
],
|
|
1720
|
+
"sonarjs/unused-import": [
|
|
1721
|
+
"error",
|
|
1722
|
+
],
|
|
1723
|
+
"sonarjs/unused-named-groups": [
|
|
1724
|
+
"error",
|
|
1725
|
+
],
|
|
1726
|
+
"sonarjs/unverified-certificate": [
|
|
1727
|
+
"error",
|
|
1728
|
+
],
|
|
1729
|
+
"sonarjs/unverified-hostname": [
|
|
1730
|
+
"error",
|
|
1731
|
+
],
|
|
1732
|
+
"sonarjs/updated-const-var": [
|
|
1733
|
+
"error",
|
|
1734
|
+
],
|
|
1735
|
+
"sonarjs/updated-loop-counter": [
|
|
1736
|
+
"error",
|
|
1737
|
+
],
|
|
1738
|
+
"sonarjs/use-type-alias": [
|
|
1739
|
+
"off",
|
|
1740
|
+
],
|
|
1741
|
+
"sonarjs/useless-string-operation": [
|
|
1742
|
+
"off",
|
|
1743
|
+
],
|
|
1744
|
+
"sonarjs/values-not-convertible-to-numbers": [
|
|
1745
|
+
"off",
|
|
1746
|
+
],
|
|
1747
|
+
"sonarjs/variable-name": [
|
|
1748
|
+
"off",
|
|
1749
|
+
],
|
|
1750
|
+
"sonarjs/void-use": [
|
|
1751
|
+
"error",
|
|
1752
|
+
],
|
|
1753
|
+
"sonarjs/weak-ssl": [
|
|
1754
|
+
"error",
|
|
1755
|
+
],
|
|
1756
|
+
"sonarjs/web-sql-database": [
|
|
1757
|
+
"off",
|
|
1758
|
+
],
|
|
1759
|
+
"sonarjs/x-powered-by": [
|
|
1760
|
+
"error",
|
|
1761
|
+
],
|
|
1762
|
+
"sonarjs/xml-parser-xxe": [
|
|
1763
|
+
"error",
|
|
1764
|
+
],
|
|
1765
|
+
"sonarjs/xpath": [
|
|
1766
|
+
"off",
|
|
1767
|
+
],
|
|
1768
|
+
"sort-destructure-keys/sort-destructure-keys": [
|
|
1769
|
+
"error",
|
|
1770
|
+
],
|
|
1771
|
+
"space-after-function-name": [
|
|
1772
|
+
"off",
|
|
1773
|
+
],
|
|
1774
|
+
"space-after-keywords": [
|
|
1775
|
+
"off",
|
|
1776
|
+
],
|
|
1777
|
+
"space-before-blocks": [
|
|
1778
|
+
"off",
|
|
1779
|
+
],
|
|
1780
|
+
"space-before-function-paren": [
|
|
1781
|
+
"off",
|
|
1782
|
+
],
|
|
1783
|
+
"space-before-function-parentheses": [
|
|
1784
|
+
"off",
|
|
1785
|
+
],
|
|
1786
|
+
"space-before-keywords": [
|
|
1787
|
+
"off",
|
|
1788
|
+
],
|
|
1789
|
+
"space-in-brackets": [
|
|
1790
|
+
"off",
|
|
1791
|
+
],
|
|
1792
|
+
"space-in-parens": [
|
|
1793
|
+
"off",
|
|
1794
|
+
],
|
|
1795
|
+
"space-infix-ops": [
|
|
1796
|
+
"off",
|
|
1797
|
+
],
|
|
1798
|
+
"space-return-throw-case": [
|
|
1799
|
+
"off",
|
|
1800
|
+
],
|
|
1801
|
+
"space-unary-ops": [
|
|
1802
|
+
"off",
|
|
1803
|
+
],
|
|
1804
|
+
"space-unary-word-ops": [
|
|
1805
|
+
"off",
|
|
1806
|
+
],
|
|
1807
|
+
"standard/array-bracket-even-spacing": [
|
|
1808
|
+
"off",
|
|
1809
|
+
],
|
|
1810
|
+
"standard/computed-property-even-spacing": [
|
|
1811
|
+
"off",
|
|
1812
|
+
],
|
|
1813
|
+
"standard/object-curly-even-spacing": [
|
|
1814
|
+
"off",
|
|
1815
|
+
],
|
|
1816
|
+
"switch-colon-spacing": [
|
|
1817
|
+
"off",
|
|
1818
|
+
],
|
|
1819
|
+
"template-curly-spacing": [
|
|
1820
|
+
"off",
|
|
1821
|
+
],
|
|
1822
|
+
"template-tag-spacing": [
|
|
1823
|
+
"off",
|
|
1824
|
+
],
|
|
1825
|
+
"typescript-sort-keys/interface": [
|
|
1826
|
+
"error",
|
|
1827
|
+
],
|
|
1828
|
+
"typescript-sort-keys/string-enum": [
|
|
1829
|
+
"error",
|
|
1830
|
+
],
|
|
1831
|
+
"unicorn/better-regex": [
|
|
1832
|
+
"off",
|
|
1833
|
+
],
|
|
1834
|
+
"unicorn/catch-error-name": [
|
|
1835
|
+
"error",
|
|
1836
|
+
],
|
|
1837
|
+
"unicorn/consistent-destructuring": [
|
|
1838
|
+
"off",
|
|
1839
|
+
],
|
|
1840
|
+
"unicorn/consistent-empty-array-spread": [
|
|
1841
|
+
"error",
|
|
1842
|
+
],
|
|
1843
|
+
"unicorn/consistent-existence-index-check": [
|
|
1844
|
+
"error",
|
|
1845
|
+
],
|
|
1846
|
+
"unicorn/consistent-function-scoping": [
|
|
1847
|
+
"error",
|
|
1848
|
+
],
|
|
1849
|
+
"unicorn/custom-error-definition": [
|
|
1850
|
+
"off",
|
|
1851
|
+
],
|
|
1852
|
+
"unicorn/empty-brace-spaces": [
|
|
1853
|
+
"error",
|
|
1854
|
+
],
|
|
1855
|
+
"unicorn/error-message": [
|
|
1856
|
+
"error",
|
|
1857
|
+
],
|
|
1858
|
+
"unicorn/escape-case": [
|
|
1859
|
+
"error",
|
|
1860
|
+
],
|
|
1861
|
+
"unicorn/expiring-todo-comments": [
|
|
1862
|
+
"error",
|
|
1863
|
+
],
|
|
1864
|
+
"unicorn/explicit-length-check": [
|
|
1865
|
+
"error",
|
|
1866
|
+
],
|
|
1867
|
+
"unicorn/filename-case": [
|
|
1868
|
+
"error",
|
|
1869
|
+
],
|
|
1870
|
+
"unicorn/import-style": [
|
|
1871
|
+
"error",
|
|
1872
|
+
],
|
|
1873
|
+
"unicorn/new-for-builtins": [
|
|
1874
|
+
"error",
|
|
1875
|
+
],
|
|
1876
|
+
"unicorn/no-abusive-eslint-disable": [
|
|
1877
|
+
"error",
|
|
1878
|
+
],
|
|
1879
|
+
"unicorn/no-anonymous-default-export": [
|
|
1880
|
+
"error",
|
|
1881
|
+
],
|
|
1882
|
+
"unicorn/no-array-callback-reference": [
|
|
1883
|
+
"error",
|
|
1884
|
+
],
|
|
1885
|
+
"unicorn/no-array-for-each": [
|
|
1886
|
+
"error",
|
|
1887
|
+
],
|
|
1888
|
+
"unicorn/no-array-method-this-argument": [
|
|
1889
|
+
"error",
|
|
1890
|
+
],
|
|
1891
|
+
"unicorn/no-array-push-push": [
|
|
1892
|
+
"error",
|
|
1893
|
+
],
|
|
1894
|
+
"unicorn/no-array-reduce": [
|
|
1895
|
+
"error",
|
|
1896
|
+
],
|
|
1897
|
+
"unicorn/no-await-expression-member": [
|
|
1898
|
+
"error",
|
|
1899
|
+
],
|
|
1900
|
+
"unicorn/no-await-in-promise-methods": [
|
|
1901
|
+
"error",
|
|
1902
|
+
],
|
|
1903
|
+
"unicorn/no-console-spaces": [
|
|
1904
|
+
"error",
|
|
1905
|
+
],
|
|
1906
|
+
"unicorn/no-document-cookie": [
|
|
1907
|
+
"error",
|
|
1908
|
+
],
|
|
1909
|
+
"unicorn/no-empty-file": [
|
|
1910
|
+
"error",
|
|
1911
|
+
],
|
|
1912
|
+
"unicorn/no-for-loop": [
|
|
1913
|
+
"error",
|
|
1914
|
+
],
|
|
1915
|
+
"unicorn/no-hex-escape": [
|
|
1916
|
+
"error",
|
|
1917
|
+
],
|
|
1918
|
+
"unicorn/no-instanceof-array": [
|
|
1919
|
+
"error",
|
|
1920
|
+
],
|
|
1921
|
+
"unicorn/no-invalid-fetch-options": [
|
|
1922
|
+
"error",
|
|
1923
|
+
],
|
|
1924
|
+
"unicorn/no-invalid-remove-event-listener": [
|
|
1925
|
+
"error",
|
|
1926
|
+
],
|
|
1927
|
+
"unicorn/no-keyword-prefix": [
|
|
1928
|
+
"off",
|
|
1929
|
+
],
|
|
1930
|
+
"unicorn/no-length-as-slice-end": [
|
|
1931
|
+
"error",
|
|
1932
|
+
],
|
|
1933
|
+
"unicorn/no-lonely-if": [
|
|
1934
|
+
"error",
|
|
1935
|
+
],
|
|
1936
|
+
"unicorn/no-magic-array-flat-depth": [
|
|
1937
|
+
"error",
|
|
1938
|
+
],
|
|
1939
|
+
"unicorn/no-negated-condition": [
|
|
1940
|
+
"error",
|
|
1941
|
+
],
|
|
1942
|
+
"unicorn/no-negation-in-equality-check": [
|
|
1943
|
+
"error",
|
|
1944
|
+
],
|
|
1945
|
+
"unicorn/no-nested-ternary": [
|
|
1946
|
+
"error",
|
|
1947
|
+
],
|
|
1948
|
+
"unicorn/no-new-array": [
|
|
1949
|
+
"error",
|
|
1950
|
+
],
|
|
1951
|
+
"unicorn/no-new-buffer": [
|
|
1952
|
+
"error",
|
|
1953
|
+
],
|
|
1954
|
+
"unicorn/no-null": [
|
|
1955
|
+
"error",
|
|
1956
|
+
],
|
|
1957
|
+
"unicorn/no-object-as-default-parameter": [
|
|
1958
|
+
"error",
|
|
1959
|
+
],
|
|
1960
|
+
"unicorn/no-process-exit": [
|
|
1961
|
+
"error",
|
|
1962
|
+
],
|
|
1963
|
+
"unicorn/no-single-promise-in-promise-methods": [
|
|
1964
|
+
"error",
|
|
1965
|
+
],
|
|
1966
|
+
"unicorn/no-static-only-class": [
|
|
1967
|
+
"error",
|
|
1968
|
+
],
|
|
1969
|
+
"unicorn/no-thenable": [
|
|
1970
|
+
"error",
|
|
1971
|
+
],
|
|
1972
|
+
"unicorn/no-this-assignment": [
|
|
1973
|
+
"error",
|
|
1974
|
+
],
|
|
1975
|
+
"unicorn/no-typeof-undefined": [
|
|
1976
|
+
"error",
|
|
1977
|
+
],
|
|
1978
|
+
"unicorn/no-unnecessary-await": [
|
|
1979
|
+
"error",
|
|
1980
|
+
],
|
|
1981
|
+
"unicorn/no-unnecessary-polyfills": [
|
|
1982
|
+
"error",
|
|
1983
|
+
],
|
|
1984
|
+
"unicorn/no-unreadable-array-destructuring": [
|
|
1985
|
+
"error",
|
|
1986
|
+
],
|
|
1987
|
+
"unicorn/no-unreadable-iife": [
|
|
1988
|
+
"error",
|
|
1989
|
+
],
|
|
1990
|
+
"unicorn/no-unused-properties": [
|
|
1991
|
+
"off",
|
|
1992
|
+
],
|
|
1993
|
+
"unicorn/no-useless-fallback-in-spread": [
|
|
1994
|
+
"error",
|
|
1995
|
+
],
|
|
1996
|
+
"unicorn/no-useless-length-check": [
|
|
1997
|
+
"error",
|
|
1998
|
+
],
|
|
1999
|
+
"unicorn/no-useless-promise-resolve-reject": [
|
|
2000
|
+
"error",
|
|
2001
|
+
],
|
|
2002
|
+
"unicorn/no-useless-spread": [
|
|
2003
|
+
"error",
|
|
2004
|
+
],
|
|
2005
|
+
"unicorn/no-useless-switch-case": [
|
|
2006
|
+
"error",
|
|
2007
|
+
],
|
|
2008
|
+
"unicorn/no-useless-undefined": [
|
|
2009
|
+
"error",
|
|
2010
|
+
],
|
|
2011
|
+
"unicorn/no-zero-fractions": [
|
|
2012
|
+
"error",
|
|
2013
|
+
],
|
|
2014
|
+
"unicorn/number-literal-case": [
|
|
2015
|
+
"error",
|
|
2016
|
+
],
|
|
2017
|
+
"unicorn/numeric-separators-style": [
|
|
2018
|
+
"error",
|
|
2019
|
+
],
|
|
2020
|
+
"unicorn/prefer-add-event-listener": [
|
|
2021
|
+
"error",
|
|
2022
|
+
],
|
|
2023
|
+
"unicorn/prefer-array-find": [
|
|
2024
|
+
"error",
|
|
2025
|
+
],
|
|
2026
|
+
"unicorn/prefer-array-flat": [
|
|
2027
|
+
"error",
|
|
2028
|
+
],
|
|
2029
|
+
"unicorn/prefer-array-flat-map": [
|
|
2030
|
+
"error",
|
|
2031
|
+
],
|
|
2032
|
+
"unicorn/prefer-array-index-of": [
|
|
2033
|
+
"error",
|
|
2034
|
+
],
|
|
2035
|
+
"unicorn/prefer-array-some": [
|
|
2036
|
+
"error",
|
|
2037
|
+
],
|
|
2038
|
+
"unicorn/prefer-at": [
|
|
2039
|
+
"error",
|
|
2040
|
+
],
|
|
2041
|
+
"unicorn/prefer-blob-reading-methods": [
|
|
2042
|
+
"error",
|
|
2043
|
+
],
|
|
2044
|
+
"unicorn/prefer-code-point": [
|
|
2045
|
+
"error",
|
|
2046
|
+
],
|
|
2047
|
+
"unicorn/prefer-date-now": [
|
|
2048
|
+
"error",
|
|
2049
|
+
],
|
|
2050
|
+
"unicorn/prefer-default-parameters": [
|
|
2051
|
+
"error",
|
|
2052
|
+
],
|
|
2053
|
+
"unicorn/prefer-dom-node-append": [
|
|
2054
|
+
"error",
|
|
2055
|
+
],
|
|
2056
|
+
"unicorn/prefer-dom-node-dataset": [
|
|
2057
|
+
"error",
|
|
2058
|
+
],
|
|
2059
|
+
"unicorn/prefer-dom-node-remove": [
|
|
2060
|
+
"error",
|
|
2061
|
+
],
|
|
2062
|
+
"unicorn/prefer-dom-node-text-content": [
|
|
2063
|
+
"error",
|
|
2064
|
+
],
|
|
2065
|
+
"unicorn/prefer-event-target": [
|
|
2066
|
+
"error",
|
|
2067
|
+
],
|
|
2068
|
+
"unicorn/prefer-export-from": [
|
|
2069
|
+
"error",
|
|
2070
|
+
],
|
|
2071
|
+
"unicorn/prefer-global-this": [
|
|
2072
|
+
"error",
|
|
2073
|
+
],
|
|
2074
|
+
"unicorn/prefer-includes": [
|
|
2075
|
+
"error",
|
|
2076
|
+
],
|
|
2077
|
+
"unicorn/prefer-json-parse-buffer": [
|
|
2078
|
+
"off",
|
|
2079
|
+
],
|
|
2080
|
+
"unicorn/prefer-keyboard-event-key": [
|
|
2081
|
+
"error",
|
|
2082
|
+
],
|
|
2083
|
+
"unicorn/prefer-logical-operator-over-ternary": [
|
|
2084
|
+
"error",
|
|
2085
|
+
],
|
|
2086
|
+
"unicorn/prefer-math-min-max": [
|
|
2087
|
+
"error",
|
|
2088
|
+
],
|
|
2089
|
+
"unicorn/prefer-math-trunc": [
|
|
2090
|
+
"error",
|
|
2091
|
+
],
|
|
2092
|
+
"unicorn/prefer-modern-dom-apis": [
|
|
2093
|
+
"error",
|
|
2094
|
+
],
|
|
2095
|
+
"unicorn/prefer-modern-math-apis": [
|
|
2096
|
+
"error",
|
|
2097
|
+
],
|
|
2098
|
+
"unicorn/prefer-module": [
|
|
2099
|
+
"error",
|
|
2100
|
+
],
|
|
2101
|
+
"unicorn/prefer-native-coercion-functions": [
|
|
2102
|
+
"error",
|
|
2103
|
+
],
|
|
2104
|
+
"unicorn/prefer-negative-index": [
|
|
2105
|
+
"error",
|
|
2106
|
+
],
|
|
2107
|
+
"unicorn/prefer-node-protocol": [
|
|
2108
|
+
"error",
|
|
2109
|
+
],
|
|
2110
|
+
"unicorn/prefer-number-properties": [
|
|
2111
|
+
"error",
|
|
2112
|
+
],
|
|
2113
|
+
"unicorn/prefer-object-from-entries": [
|
|
2114
|
+
"error",
|
|
2115
|
+
],
|
|
2116
|
+
"unicorn/prefer-optional-catch-binding": [
|
|
2117
|
+
"error",
|
|
2118
|
+
],
|
|
2119
|
+
"unicorn/prefer-prototype-methods": [
|
|
2120
|
+
"error",
|
|
2121
|
+
],
|
|
2122
|
+
"unicorn/prefer-query-selector": [
|
|
2123
|
+
"error",
|
|
2124
|
+
],
|
|
2125
|
+
"unicorn/prefer-reflect-apply": [
|
|
2126
|
+
"error",
|
|
2127
|
+
],
|
|
2128
|
+
"unicorn/prefer-regexp-test": [
|
|
2129
|
+
"error",
|
|
2130
|
+
],
|
|
2131
|
+
"unicorn/prefer-set-has": [
|
|
2132
|
+
"error",
|
|
2133
|
+
],
|
|
2134
|
+
"unicorn/prefer-set-size": [
|
|
2135
|
+
"error",
|
|
2136
|
+
],
|
|
2137
|
+
"unicorn/prefer-spread": [
|
|
2138
|
+
"error",
|
|
2139
|
+
],
|
|
2140
|
+
"unicorn/prefer-string-raw": [
|
|
2141
|
+
"error",
|
|
2142
|
+
],
|
|
2143
|
+
"unicorn/prefer-string-replace-all": [
|
|
2144
|
+
"error",
|
|
2145
|
+
],
|
|
2146
|
+
"unicorn/prefer-string-slice": [
|
|
2147
|
+
"error",
|
|
2148
|
+
],
|
|
2149
|
+
"unicorn/prefer-string-starts-ends-with": [
|
|
2150
|
+
"error",
|
|
2151
|
+
],
|
|
2152
|
+
"unicorn/prefer-string-trim-start-end": [
|
|
2153
|
+
"error",
|
|
2154
|
+
],
|
|
2155
|
+
"unicorn/prefer-structured-clone": [
|
|
2156
|
+
"error",
|
|
2157
|
+
],
|
|
2158
|
+
"unicorn/prefer-switch": [
|
|
2159
|
+
"error",
|
|
2160
|
+
],
|
|
2161
|
+
"unicorn/prefer-ternary": [
|
|
2162
|
+
"error",
|
|
2163
|
+
],
|
|
2164
|
+
"unicorn/prefer-top-level-await": [
|
|
2165
|
+
"error",
|
|
2166
|
+
],
|
|
2167
|
+
"unicorn/prefer-type-error": [
|
|
2168
|
+
"error",
|
|
2169
|
+
],
|
|
2170
|
+
"unicorn/prevent-abbreviations": [
|
|
2171
|
+
"error",
|
|
2172
|
+
],
|
|
2173
|
+
"unicorn/relative-url-style": [
|
|
2174
|
+
"error",
|
|
2175
|
+
],
|
|
2176
|
+
"unicorn/require-array-join-separator": [
|
|
2177
|
+
"error",
|
|
2178
|
+
],
|
|
2179
|
+
"unicorn/require-number-to-fixed-digits-argument": [
|
|
2180
|
+
"error",
|
|
2181
|
+
],
|
|
2182
|
+
"unicorn/require-post-message-target-origin": [
|
|
2183
|
+
"off",
|
|
2184
|
+
],
|
|
2185
|
+
"unicorn/string-content": [
|
|
2186
|
+
"off",
|
|
2187
|
+
],
|
|
2188
|
+
"unicorn/switch-case-braces": [
|
|
2189
|
+
"error",
|
|
2190
|
+
],
|
|
2191
|
+
"unicorn/template-indent": [
|
|
2192
|
+
"error",
|
|
2193
|
+
],
|
|
2194
|
+
"unicorn/text-encoding-identifier-case": [
|
|
2195
|
+
"error",
|
|
2196
|
+
],
|
|
2197
|
+
"unicorn/throw-new-error": [
|
|
2198
|
+
"error",
|
|
2199
|
+
],
|
|
2200
|
+
"use-isnan": [
|
|
2201
|
+
"error",
|
|
2202
|
+
],
|
|
2203
|
+
"valid-typeof": [
|
|
2204
|
+
"error",
|
|
2205
|
+
],
|
|
2206
|
+
"vue/array-bracket-newline": [
|
|
2207
|
+
"off",
|
|
2208
|
+
],
|
|
2209
|
+
"vue/array-bracket-spacing": [
|
|
2210
|
+
"off",
|
|
2211
|
+
],
|
|
2212
|
+
"vue/array-element-newline": [
|
|
2213
|
+
"off",
|
|
2214
|
+
],
|
|
2215
|
+
"vue/arrow-spacing": [
|
|
2216
|
+
"off",
|
|
2217
|
+
],
|
|
2218
|
+
"vue/block-spacing": [
|
|
2219
|
+
"off",
|
|
2220
|
+
],
|
|
2221
|
+
"vue/block-tag-newline": [
|
|
2222
|
+
"off",
|
|
2223
|
+
],
|
|
2224
|
+
"vue/brace-style": [
|
|
2225
|
+
"off",
|
|
2226
|
+
],
|
|
2227
|
+
"vue/comma-dangle": [
|
|
2228
|
+
"off",
|
|
2229
|
+
],
|
|
2230
|
+
"vue/comma-spacing": [
|
|
2231
|
+
"off",
|
|
2232
|
+
],
|
|
2233
|
+
"vue/comma-style": [
|
|
2234
|
+
"off",
|
|
2235
|
+
],
|
|
2236
|
+
"vue/dot-location": [
|
|
2237
|
+
"off",
|
|
2238
|
+
],
|
|
2239
|
+
"vue/func-call-spacing": [
|
|
2240
|
+
"off",
|
|
2241
|
+
],
|
|
2242
|
+
"vue/html-closing-bracket-newline": [
|
|
2243
|
+
"off",
|
|
2244
|
+
],
|
|
2245
|
+
"vue/html-closing-bracket-spacing": [
|
|
2246
|
+
"off",
|
|
2247
|
+
],
|
|
2248
|
+
"vue/html-end-tags": [
|
|
2249
|
+
"off",
|
|
2250
|
+
],
|
|
2251
|
+
"vue/html-indent": [
|
|
2252
|
+
"off",
|
|
2253
|
+
],
|
|
2254
|
+
"vue/html-quotes": [
|
|
2255
|
+
"off",
|
|
2256
|
+
],
|
|
2257
|
+
"vue/html-self-closing": [
|
|
2258
|
+
0,
|
|
2259
|
+
],
|
|
2260
|
+
"vue/key-spacing": [
|
|
2261
|
+
"off",
|
|
2262
|
+
],
|
|
2263
|
+
"vue/keyword-spacing": [
|
|
2264
|
+
"off",
|
|
2265
|
+
],
|
|
2266
|
+
"vue/max-attributes-per-line": [
|
|
2267
|
+
"off",
|
|
2268
|
+
],
|
|
2269
|
+
"vue/max-len": [
|
|
2270
|
+
0,
|
|
2271
|
+
],
|
|
2272
|
+
"vue/multiline-html-element-content-newline": [
|
|
2273
|
+
"off",
|
|
2274
|
+
],
|
|
2275
|
+
"vue/multiline-ternary": [
|
|
2276
|
+
"off",
|
|
2277
|
+
],
|
|
2278
|
+
"vue/mustache-interpolation-spacing": [
|
|
2279
|
+
"off",
|
|
2280
|
+
],
|
|
2281
|
+
"vue/no-extra-parens": [
|
|
2282
|
+
"off",
|
|
2283
|
+
],
|
|
2284
|
+
"vue/no-multi-spaces": [
|
|
2285
|
+
"off",
|
|
2286
|
+
],
|
|
2287
|
+
"vue/no-spaces-around-equal-signs-in-attribute": [
|
|
2288
|
+
"off",
|
|
2289
|
+
],
|
|
2290
|
+
"vue/object-curly-newline": [
|
|
2291
|
+
"off",
|
|
2292
|
+
],
|
|
2293
|
+
"vue/object-curly-spacing": [
|
|
2294
|
+
"off",
|
|
2295
|
+
],
|
|
2296
|
+
"vue/object-property-newline": [
|
|
2297
|
+
"off",
|
|
2298
|
+
],
|
|
2299
|
+
"vue/operator-linebreak": [
|
|
2300
|
+
"off",
|
|
2301
|
+
],
|
|
2302
|
+
"vue/quote-props": [
|
|
2303
|
+
"off",
|
|
2304
|
+
],
|
|
2305
|
+
"vue/script-indent": [
|
|
2306
|
+
"off",
|
|
2307
|
+
],
|
|
2308
|
+
"vue/singleline-html-element-content-newline": [
|
|
2309
|
+
"off",
|
|
2310
|
+
],
|
|
2311
|
+
"vue/space-in-parens": [
|
|
2312
|
+
"off",
|
|
2313
|
+
],
|
|
2314
|
+
"vue/space-infix-ops": [
|
|
2315
|
+
"off",
|
|
2316
|
+
],
|
|
2317
|
+
"vue/space-unary-ops": [
|
|
2318
|
+
"off",
|
|
2319
|
+
],
|
|
2320
|
+
"vue/template-curly-spacing": [
|
|
2321
|
+
"off",
|
|
2322
|
+
],
|
|
2323
|
+
"wrap-iife": [
|
|
2324
|
+
"off",
|
|
2325
|
+
],
|
|
2326
|
+
"wrap-regex": [
|
|
2327
|
+
"off",
|
|
2328
|
+
],
|
|
2329
|
+
"yield-star-spacing": [
|
|
2330
|
+
"off",
|
|
2331
|
+
],
|
|
2332
|
+
},
|
|
2333
|
+
"settings": {
|
|
2334
|
+
"import/extensions": [
|
|
2335
|
+
".ts",
|
|
2336
|
+
".cts",
|
|
2337
|
+
".mts",
|
|
2338
|
+
".tsx",
|
|
2339
|
+
".js",
|
|
2340
|
+
".jsx",
|
|
2341
|
+
".mjs",
|
|
2342
|
+
".cjs",
|
|
2343
|
+
],
|
|
2344
|
+
"import/external-module-folders": [
|
|
2345
|
+
"node_modules",
|
|
2346
|
+
"node_modules/@types",
|
|
2347
|
+
],
|
|
2348
|
+
"import/parsers": {
|
|
2349
|
+
"@typescript-eslint/parser": [
|
|
2350
|
+
".ts",
|
|
2351
|
+
".tsx",
|
|
2352
|
+
".mts",
|
|
2353
|
+
".tsx",
|
|
2354
|
+
],
|
|
2355
|
+
},
|
|
2356
|
+
"import/resolver": {
|
|
2357
|
+
"node": {
|
|
2358
|
+
"extensions": [
|
|
2359
|
+
".ts",
|
|
2360
|
+
".cts",
|
|
2361
|
+
".mts",
|
|
2362
|
+
".tsx",
|
|
2363
|
+
".js",
|
|
2364
|
+
".jsx",
|
|
2365
|
+
".mjs",
|
|
2366
|
+
".cjs",
|
|
2367
|
+
],
|
|
2368
|
+
},
|
|
2369
|
+
"typescript": {
|
|
2370
|
+
"alwaysTryTypes": true,
|
|
2371
|
+
},
|
|
2372
|
+
},
|
|
2373
|
+
"react": {
|
|
2374
|
+
"version": "999.999.999",
|
|
2375
|
+
},
|
|
2376
|
+
},
|
|
2377
|
+
}
|
|
2378
|
+
`;
|