This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
459 lines (448 loc) · 20.5 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
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
{
"extends": ["plugin:vue/vue3-recommended"],
"plugins": ["eslint-plugin-vue", "@typescript-eslint"],
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser",
"project": [
"./tsconfig.json",
"./tsconfig.rollup.json",
"./electron/tsconfig.json",
"./ipc/tsconfig.json",
"./worker/tsconfig.json"
],
"tsconfigRootDir": ".",
"extraFileExtensions": [".vue"]
},
"ignorePatterns": [
"dist/**/*",
"docs/**/*",
"out/**/*",
"scripts/**/*",
"**/*.config.js",
"**/*.mjs",
"**/*.mts"
],
"root": true,
"env": {
"browser": true,
"node": true,
"es2022": true
},
"rules": {
"array-callback-return": ["error", { "checkForEach": false }],
"constructor-super": "error",
"for-direction": "error",
"getter-return": "error",
"no-async-promise-executor": "off",
"no-await-in-loop": "off",
"no-class-assign": "error",
"no-compare-neg-zero": "error",
"no-cond-assign": "error",
"no-console": "error",
"no-const-assign": "error",
"no-constant-binary-expression": "error",
"no-constant-condition": "error",
"no-constructor-return": "off",
"no-control-regex": "error",
"no-debugger": "error",
"no-dupe-args": "error",
"no-dupe-class-members": "off",
"no-dupe-else-if": "error",
"no-dupe-keys": "error",
"no-duplicate-case": "error",
"no-duplicate-imports": "off",
"no-empty-character-class": "error",
"no-empty-pattern": "error",
"no-ex-assign": "error",
"no-fallthrough": "error",
"no-func-assign": "error",
"no-import-assign": "error",
"no-inner-declarations": "error",
"no-invalid-regexp": "error",
"no-irregular-whitespace": "error",
"no-loss-of-precision": "off",
"no-magic-numbers": "off",
"no-misleading-character-class": "error",
"no-new-native-nonconstructor": "error",
"no-new-symbol": "error",
"no-obj-calls": "error",
"no-promise-executor-return": "error",
"no-prototype-builtins": "error",
"no-self-assign": "error",
"no-self-compare": "error",
"no-setter-return": "error",
"no-sparse-arrays": "off",
"no-template-curly-in-string": "error",
"no-this-before-super": "error",
"no-undef": "off",
"no-unexpected-multiline": "error",
"no-unmodified-loop-condition": "error",
"no-unreachable": "error",
"no-unreachable-loop": "error",
"no-unsafe-finally": "error",
"no-unsafe-negation": "error",
"no-unsafe-optional-chaining": "error",
"no-unused-private-class-members": "error",
"no-useless-backreference": "error",
"require-atomic-updates": "error",
"use-isnan": "error",
"valid-typeof": "error",
"accessor-pairs": ["error", { "setWithoutGet": true, "getWithoutSet": false }],
"camelcase": "error",
"class-methods-use-this": "error",
"complexity": "off",
"consistent-return": "error",
"consistent-this": ["error", "self"],
"curly": ["error", "multi-line"],
"default-case": "error",
"default-case-last": "error",
"default-param-last": "off",
"dot-notation": "off",
"eqeqeq": "off",
"grouped-accessor-pairs": ["error", "getBeforeSet"],
"guard-for-in": "error",
"logical-assignment-operators": ["error", "always"],
"max-classes-per-file": "off",
"max-depth": ["error", { "max": 4 }],
"max-lines": ["error", { "max": 1000 }],
"max-lines-per-function": ["error", { "max": 100, "skipBlankLines": true, "skipComments": true }],
"max-nested-callbacks": ["error", { "max": 5 }],
"new-cap": "off",
"no-alert": "error",
"no-array-constructor": "off",
"no-caller": "error",
"no-else-return": "error",
"no-empty": "error",
"no-empty-function": "off",
"no-empty-static-block": "error",
"no-eq-null": "error",
"no-eval": "error",
"no-extra-bind": "error",
"no-extra-boolean-cast": "error",
"no-extra-label": "error",
"no-extra-semi": "off",
"no-floating-decimal": "error",
"no-global-assign": "error",
"no-implicit-coercion": "error",
"no-implied-eval": "off",
"no-invalid-this": "off",
"no-iterator": "error",
"no-label-var": "error",
"no-labels": "error",
"no-lone-blocks": "error",
"no-lonely-if": "error",
"no-loop-func": "off",
"no-mixed-operators": "error",
"no-multi-assign": "error",
"no-multi-str": "error",
"no-negated-condition": "error",
"no-nested-ternary": "off",
"no-new-func": "error",
"no-new-object": "error",
"no-new-wrappers": "error",
"no-nonoctal-decimal-escape": "error",
"no-octal": "error",
"no-octal-escape": "error",
"no-proto": "error",
"no-redeclare": "off",
"no-regex-spaces": "error",
"no-return-assign": "error",
"no-return-await": "off",
"no-script-url": "error",
"no-sequences": "error",
"no-shadow": "off",
"no-shadow-restricted-names": "error",
"no-ternary": "off",
"no-throw-literal": "off",
"no-undef-init": "error",
"no-underscore-dangle": "error",
"no-unneeded-ternary": "error",
"no-unused-expressions": "off",
"no-unused-labels": "error",
"no-useless-call": "error",
"no-useless-catch": "error",
"no-useless-computed-key": "error",
"no-useless-concat": "error",
"no-useless-constructor": "off",
"no-useless-escape": "error",
"no-useless-rename": "error",
"no-useless-return": "error",
"no-var": "error",
"no-with": "error",
"object-shorthand": "error",
"operator-assignment": ["error", "always"],
"prefer-arrow-callback": ["error", { "allowNamedFunctions": false, "allowUnboundThis": false }],
"prefer-const": "error",
"prefer-exponentiation-operator": "error",
"prefer-object-has-own": "error",
"prefer-object-spread": "error",
"prefer-promise-reject-errors": "off",
"prefer-regex-literals": "error",
"prefer-rest-params": "error",
"prefer-spread": "error",
"prefer-template": "error",
"radix": "error",
"require-await": "off",
"require-yield": "error",
"spaced-comment": ["error", "always", { "block": { "balanced": true } }],
"yoda": "error",
"array-bracket-spacing": ["error", "never"],
"arrow-parens": ["error", "always"],
"arrow-spacing": "error",
"block-spacing": "off",
"brace-style": "off",
"comma-dangle": "off",
"comma-spacing": "off",
"comma-style": ["error", "last"],
"computed-property-spacing": ["error", "never"],
"dot-location": ["error", "property"],
"func-call-spacing": "off",
"generator-star-spacing": ["error", { "before": false, "after": true }],
"key-spacing": "off",
"keyword-spacing": "off",
"lines-between-class-members": "off",
"max-statements-per-line": ["error", { "max": 1 }],
"new-parens": ["error", "always"],
"no-mixed-spaces-and-tabs": "error",
"no-multi-spaces": "error",
"no-multiple-empty-lines": ["error", { "max": 2, "maxEOF": 1, "maxBOF": 0 }],
"no-whitespace-before-property": "error",
"nonblock-statement-body-position": ["error", "beside"],
"object-curly-spacing": ["error", "always"],
"rest-spread-spacing": ["error", "never"],
"semi": ["error", "always"],
"semi-spacing": ["error", { "before": false, "after": true }],
"semi-style": ["error", "last"],
"sort-imports": "off",
"sort-keys": "off",
"space-before-blocks": ["error", "always"],
"space-before-function-paren": ["error", { "anonymous": "never", "named": "never", "asyncArrow": "always" }],
"space-in-parens": ["error", "never"],
"space-infix-ops": "error",
"space-unary-ops": ["error", { "words": true, "nonwords": false }],
"switch-colon-spacing": ["error", { "after": true, "before": false }],
"template-curly-spacing": ["error", "never"],
"yield-star-spacing": ["error", { "before": false, "after": true }],
"@typescript-eslint/array-type": ["error", { "default": "array", "readonly": "generic" }],
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/ban-ts-comment": "error",
"@typescript-eslint/consistent-generic-constructors": ["error", "constructor"],
"@typescript-eslint/consistent-type-assertions": ["error", { "assertionStyle": "as" }],
"@typescript-eslint/consistent-type-exports": "error",
"@typescript-eslint/consistent-type-imports": ["error", {
"prefer": "type-imports",
"disallowTypeAnnotations": false
}],
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-member-accessibility": ["error", {
"accessibility": "explicit",
"overrides": {
"accessors": "no-public",
"constructors": "no-public",
"methods": "explicit",
"properties": "explicit",
"parameterProperties": "explicit"
}
}],
"@typescript-eslint/no-confusing-non-null-assertion": "error",
"@typescript-eslint/no-confusing-void-expression": ["error", { "ignoreArrowShorthand": true }],
"@typescript-eslint/no-duplicate-enum-values": "error",
"@typescript-eslint/no-duplicate-type-constituents": "error",
"@typescript-eslint/no-dynamic-delete": "error",
"@typescript-eslint/no-empty-interface": "error",
"@typescript-eslint/no-explicit-any": ["error", { "ignoreRestArgs": true }],
"@typescript-eslint/no-extra-non-null-assertion": "error",
"@typescript-eslint/no-extraneous-class": "error",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-for-in-array": "error",
"@typescript-eslint/no-invalid-void-type": "error",
"@typescript-eslint/no-meaningless-void-operator": "error",
"@typescript-eslint/no-misused-new": "error",
"@typescript-eslint/no-misused-promises": ["error", {
"checksVoidReturn": {
"arguments": false
}
}],
"@typescript-eslint/no-namespace": "error",
"@typescript-eslint/no-non-null-asserted-nullish-coalescing": "error",
"@typescript-eslint/no-non-null-asserted-optional-chain": "error",
"@typescript-eslint/no-redundant-type-constituents": "error",
"@typescript-eslint/no-require-imports": "error",
"@typescript-eslint/no-unnecessary-boolean-literal-compare": "error",
"@typescript-eslint/no-unnecessary-condition": "error",
"@typescript-eslint/no-unnecessary-qualifier": "error",
"@typescript-eslint/no-unnecessary-type-arguments": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
"@typescript-eslint/no-unnecessary-type-constraint": "error",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "error",
"@typescript-eslint/no-unsafe-declaration-merging": "error",
"@typescript-eslint/no-unsafe-member-access": "error",
"@typescript-eslint/no-unsafe-return": "error",
"@typescript-eslint/no-useless-empty-export": "error",
"@typescript-eslint/prefer-as-const": "error",
"@typescript-eslint/prefer-enum-initializers": "error",
"@typescript-eslint/prefer-for-of": "error",
"@typescript-eslint/prefer-function-type": "off",
"@typescript-eslint/prefer-nullish-coalescing": "error",
"@typescript-eslint/prefer-optional-chain": "error",
"@typescript-eslint/prefer-readonly": "error",
"@typescript-eslint/prefer-reduce-type-parameter": "off",
"@typescript-eslint/prefer-return-this-type": "error",
"@typescript-eslint/prefer-string-starts-ends-with": "error",
"@typescript-eslint/require-array-sort-compare": "error",
"@typescript-eslint/restrict-plus-operands": "off",
"@typescript-eslint/sort-type-constituents": "off",
"@typescript-eslint/switch-exhaustiveness-check": "error",
"@typescript-eslint/unbound-method": ["error", { "ignoreStatic": true }],
"@typescript-eslint/unified-signatures": "error",
"@typescript-eslint/default-param-last": "error",
"@typescript-eslint/dot-notation": "error",
"@typescript-eslint/no-array-constructor": "error",
"@typescript-eslint/no-dupe-class-members": "error",
"@typescript-eslint/no-empty-function": "error",
"@typescript-eslint/no-extra-semi": "error",
"@typescript-eslint/no-implied-eval": "error",
"@typescript-eslint/no-invalid-this": "error",
"@typescript-eslint/no-loop-func": "off",
"@typescript-eslint/no-loss-of-precision": "error",
"@typescript-eslint/no-redeclare": "error",
"@typescript-eslint/no-shadow": "error",
"@typescript-eslint/no-throw-literal": ["error", { "allowThrowingAny": false, "allowThrowingUnknown": false }],
"@typescript-eslint/no-unused-expressions": "error",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-useless-constructor": "error",
"@typescript-eslint/require-await": "error",
"@typescript-eslint/return-await": "error",
"@typescript-eslint/block-spacing": "error",
"@typescript-eslint/brace-style": ["error", "1tbs", { "allowSingleLine": true }],
"@typescript-eslint/comma-dangle": ["error", "never"],
"@typescript-eslint/comma-spacing": ["error", { "before": false, "after": true }],
"@typescript-eslint/func-call-spacing": ["error", "never"],
"@typescript-eslint/key-spacing": ["error", { "beforeColon": false, "afterColon": true, "mode": "strict" }],
"@typescript-eslint/keyword-spacing": ["error", { "before": true, "after": true }],
"@typescript-eslint/lines-between-class-members": ["error", "always", {
"exceptAfterSingleLine": true,
"exceptAfterOverload": true
}],
"@typescript-eslint/quotes": ["error", "single", { "avoidEscape": true }],
"@typescript-eslint/type-annotation-spacing": "error",
"vue/multi-word-component-names": "error",
"vue/no-arrow-functions-in-watch": "off",
"vue/no-async-in-computed-properties": "error",
"vue/no-child-content": "error",
"vue/no-dupe-v-else-if": "error",
"vue/no-duplicate-attributes": ["error", { "allowCoexistClass": true, "allowCoexistStyle": true }],
"vue/no-export-in-script-setup": "error",
"vue/no-mutating-props": "error",
"vue/no-parsing-error": "error",
"vue/no-ref-as-operand": "error",
"vue/no-reserved-component-names": ["error", { "disallowVue3BuiltInComponents": true }],
"vue/no-reserved-keys": "error",
"vue/no-reserved-props": "error",
"vue/no-side-effects-in-computed-properties": "error",
"vue/no-template-key": "error",
"vue/no-textarea-mustache": "error",
"vue/no-unused-components": "error",
"vue/no-unused-vars": ["error", { "ignorePattern": "^_" }],
"vue/no-use-v-if-with-v-for": "error",
"vue/no-useless-template-attributes": "error",
"vue/no-v-text-v-html-on-component": "error",
"vue/require-component-is": "error",
"vue/require-render-return": "error",
"vue/require-v-for-key": "error",
"vue/return-in-computed-property": "error",
"vue/return-in-emits-validator": "error",
"vue/use-v-on-exact": "error",
"vue/valid-attribute-name": "error",
"vue/valid-define-emits": "error",
"vue/valid-define-props": "error",
"vue/valid-next-tick": "error",
"vue/valid-template-root": "error",
"vue/valid-v-bind": "error",
"vue/valid-v-cloak": "error",
"vue/valid-v-else-if": "error",
"vue/valid-v-else": "error",
"vue/valid-v-for": "error",
"vue/valid-v-html": "error",
"vue/valid-v-if": "error",
"vue/valid-v-model": "error",
"vue/valid-v-on": "error",
"vue/valid-v-once": "error",
"vue/valid-v-pre": "error",
"vue/valid-v-show": "error",
"vue/valid-v-slot": "error",
"vue/valid-v-text": "error",
"vue/prefer-import-from-vue": "error",
"vue/require-toggle-inside-transition": "error",
"vue/valid-v-memo": "error",
"vue/attribute-hyphenation": "error",
"vue/component-definition-name-casing": ["error", "PascalCase"],
"vue/html-closing-bracket-newline": ["error", { "singleline": "never", "multiline": "always" }],
"vue/html-closing-bracket-spacing": ["error", { "startTag": "never", "endTag": "never", "selfClosingTag": "always" }],
"vue/html-end-tags": "error",
"vue/html-indent": "off",
"vue/html-quotes": ["error", "double", { "avoidEscape": false }],
"vue/html-self-closing": ["error", {
"html": {
"void": "never",
"normal": "never",
"component": "always"
},
"svg": "always",
"math": "always"
}],
"vue/max-attributes-per-line": ["error", { "singleline": 5, "multiline": 1 }],
"vue/mustache-interpolation-spacing": ["error", "always"],
"vue/no-dupe-keys": "error",
"vue/no-multi-spaces": ["error", { "ignoreProperties": false }],
"vue/no-spaces-around-equal-signs-in-attribute": "error",
"vue/no-template-shadow": "error",
"vue/one-component-per-file": "error",
"vue/prop-name-casing": ["error", "camelCase"],
"vue/require-prop-types": "error",
"vue/singleline-html-element-content-newline": "off",
"vue/v-bind-style": ["error", "shorthand"],
"vue/v-on-style": ["error", "shorthand"],
"vue/v-slot-style": ["error", { "atComponent": "shorthand", "default": "shorthand", "named": "shorthand" }],
"vue/require-explicit-emits": "error",
"vue/v-on-event-hyphenation": ["error", "always"],
"vue/attributes-order": "error",
"vue/component-tags-order": ["error", { "order": ["script", "template", "style"] }],
"vue/no-lone-template": "error",
"vue/this-in-template": ["error", "never"],
"vue/block-lang": ["error", { "script": { "lang": "ts" }, "style": { "lang": "scss" } }],
"vue/component-api-style": ["error", ["script-setup"]],
"vue/component-name-in-template-casing": ["error", "PascalCase"],
"vue/component-options-name-casing": ["error", "PascalCase"],
"vue/custom-event-name-casing": ["error", "kebab-case"],
"vue/define-emits-declaration": ["error", "type-based"],
"vue/define-macros-order": ["error", { "order": ["defineProps", "defineEmits"] }],
"vue/define-props-declaration": ["error", "type-based"],
"vue/html-button-has-type": "error",
"vue/match-component-file-name": ["error", { "extensions": ["vue"], "shouldMatchCase": true }],
"vue/match-component-import-name": "error",
"vue/next-tick-style": ["error", "promise"],
"vue/no-console": "error",
"vue/no-multiple-objects-in-class": "error",
"vue/no-ref-object-destructure": "error",
"vue/no-static-inline-styles": "error",
"vue/no-template-target-blank": "error",
"vue/no-this-in-before-route-enter": "error",
"vue/no-undef-components": "error",
"vue/no-undef-properties": "off",
"vue/no-unused-properties": "off",
"vue/no-unused-refs": "error",
"vue/no-useless-mustaches": "error",
"vue/no-useless-v-bind": "error",
"vue/no-v-text": "error",
"vue/padding-line-between-blocks": ["error", "always"],
"vue/prefer-separate-static-class": "error",
"vue/prefer-true-attribute-shorthand": "error",
"vue/static-class-names-order": "error",
"vue/v-for-delimiter-style": ["error", "of"],
"vue/eqeqeq": ["error", "always"]
}
}