@zinkawaii/eslint-config 0.0.2 → 0.1.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/dist/index.cjs ADDED
@@ -0,0 +1,521 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/index.ts
20
+ var src_exports = {};
21
+ __export(src_exports, {
22
+ default: () => src_default
23
+ });
24
+ module.exports = __toCommonJS(src_exports);
25
+
26
+ // src/utils.ts
27
+ function prefixary(prefix, rules) {
28
+ return typeof prefix === "object" ? prefix : Object.fromEntries(
29
+ Object.entries(rules).map(([key, value]) => {
30
+ return [`${prefix}/${key}`, value];
31
+ })
32
+ );
33
+ }
34
+
35
+ // src/lib/patch.ts
36
+ var patch_default = prefixary({
37
+ "antfu/if-newline": "off",
38
+ "antfu/no-import-dist": "off",
39
+ "antfu/top-level-function": "off",
40
+ "node/prefer-global/process": "off",
41
+ "unused-imports/no-unused-vars": "off"
42
+ });
43
+
44
+ // src/lib/recommended.ts
45
+ var recommended_default = prefixary({
46
+ "constructor-super": "warn",
47
+ "for-direction": "warn",
48
+ "getter-return": "warn",
49
+ "no-async-promise-executor": "warn",
50
+ "no-case-declarations": "warn",
51
+ "no-class-assign": "warn",
52
+ "no-compare-neg-zero": "warn",
53
+ "no-cond-assign": "off",
54
+ "no-const-assign": "warn",
55
+ "no-constant-binary-expression": "warn",
56
+ "no-constant-condition": ["warn", {
57
+ checkLoops: false
58
+ }],
59
+ "no-control-regex": "warn",
60
+ "no-debugger": "warn",
61
+ "no-delete-var": "warn",
62
+ "no-dupe-args": "warn",
63
+ "no-dupe-class-members": "warn",
64
+ "no-dupe-else-if": "warn",
65
+ "no-dupe-keys": "warn",
66
+ "no-duplicate-case": "warn",
67
+ "no-empty": "warn",
68
+ "no-empty-character-class": "warn",
69
+ "no-empty-static-block": "warn",
70
+ "no-empty-pattern": "warn",
71
+ "no-ex-assign": "warn",
72
+ "no-extra-boolean-cast": "warn",
73
+ "no-fallthrough": "off",
74
+ "no-func-assign": "warn",
75
+ "no-global-assign": "warn",
76
+ "no-import-assign": "warn",
77
+ "no-invalid-regexp": "warn",
78
+ "no-irregular-whitespace": "warn",
79
+ "no-loss-of-precision": "warn",
80
+ "no-misleading-character-class": "warn",
81
+ "no-new-native-nonconstructor": "warn",
82
+ "no-nonoctal-decimal-escape": "warn",
83
+ "no-obj-calls": "warn",
84
+ "no-octal": "warn",
85
+ "no-prototype-builtins": "warn",
86
+ "no-redeclare": "warn",
87
+ "no-regex-spaces": "warn",
88
+ "no-self-assign": "warn",
89
+ "no-setter-return": "warn",
90
+ "no-shadow-restricted-names": "warn",
91
+ "no-sparse-arrays": "warn",
92
+ "no-this-before-super": "warn",
93
+ "no-undef": "off",
94
+ "no-unexpected-multiline": "warn",
95
+ "no-unreachable": "warn",
96
+ "no-unsafe-finally": "warn",
97
+ "no-unsafe-negation": ["warn", {
98
+ enforceForOrderingRelations: true
99
+ }],
100
+ "no-unsafe-optional-chaining": "warn",
101
+ "no-unused-labels": "warn",
102
+ "no-unused-private-class-members": "warn",
103
+ "no-unused-vars": "off",
104
+ "no-useless-backreference": "warn",
105
+ "no-useless-catch": "warn",
106
+ "no-useless-escape": "warn",
107
+ "no-with": "warn",
108
+ "require-yield": "warn",
109
+ "use-isnan": ["warn", {
110
+ enforceForIndexOf: true
111
+ }],
112
+ "valid-typeof": "warn"
113
+ });
114
+
115
+ // src/lib/standard.ts
116
+ var standard_default = prefixary({
117
+ "accessor-pairs": "warn",
118
+ "array-callback-return": "warn",
119
+ "arrow-body-style": "off",
120
+ "block-scoped-var": "warn",
121
+ "camelcase": "off",
122
+ "capitalized-comments": "off",
123
+ "class-methods-use-this": "off",
124
+ "complexity": "off",
125
+ "consistent-return": "off",
126
+ "curly": ["warn", "multi-line"],
127
+ "default-case": "off",
128
+ "default-case-last": "warn",
129
+ "default-param-last": "warn",
130
+ "dot-notation": ["warn", {
131
+ allowPattern: "^[a-z]+(_[a-z]+)+$"
132
+ }],
133
+ "eqeqeq": ["warn", "smart"],
134
+ "func-name-matching": "off",
135
+ "func-names": "off",
136
+ "func-style": ["warn", "declaration", {
137
+ allowArrowFunctions: true
138
+ }],
139
+ "grouped-accessor-pairs": "off",
140
+ "guard-for-in": "off",
141
+ "id-denylist": "off",
142
+ "id-length": "off",
143
+ "id-match": "off",
144
+ "init-declarations": "off",
145
+ "logical-assignment-operators": "warn",
146
+ "max-classes-per-file": "off",
147
+ "max-depth": "off",
148
+ "max-lines": "off",
149
+ "max-lines-per-function": "off",
150
+ "max-nested-callbacks": "off",
151
+ "max-params": "off",
152
+ "max-statements": "off",
153
+ "multiline-comment-style": "warn",
154
+ "new-cap": "warn",
155
+ "no-alert": "warn",
156
+ "no-array-constructor": "warn",
157
+ "no-await-in-loop": "off",
158
+ "no-bitwise": "off",
159
+ "no-caller": "off",
160
+ "no-console": "off",
161
+ "no-constructor-return": "warn",
162
+ "no-continue": "off",
163
+ "no-div-regex": "off",
164
+ "no-duplicate-imports": "warn",
165
+ "no-else-return": "off",
166
+ "no-empty-function": "off",
167
+ "no-eq-null": "off",
168
+ "no-eval": "warn",
169
+ "no-extend-native": "warn",
170
+ "no-extra-bind": "warn",
171
+ "no-extra-label": "off",
172
+ "no-implicit-coercion": "off",
173
+ "no-implicit-globals": "off",
174
+ "no-implied-eval": "warn",
175
+ "no-inline-comments": "off",
176
+ "no-inner-declarations": "off",
177
+ "no-invalid-this": "off",
178
+ "no-iterator": "warn",
179
+ "no-label-var": "off",
180
+ "no-labels": "warn",
181
+ "no-lone-blocks": "warn",
182
+ "no-lonely-if": "warn",
183
+ "no-loop-func": "warn",
184
+ "no-magic-numbers": "off",
185
+ "no-multi-assign": ["warn", {
186
+ ignoreNonDeclaration: true
187
+ }],
188
+ "no-multi-str": "warn",
189
+ "no-negated-condition": "off",
190
+ "no-nested-ternary": "off",
191
+ "no-new": "warn",
192
+ "no-new-func": "warn",
193
+ "no-new-wrappers": "warn",
194
+ "no-object-constructor": "warn",
195
+ "no-octal-escape": "warn",
196
+ "no-param-reassign": "off",
197
+ "no-plusplus": "off",
198
+ "no-promise-executor-return": "warn",
199
+ "no-proto": "warn",
200
+ "no-restricted-exports": "off",
201
+ "no-restricted-globals": "off",
202
+ "no-restricted-imports": "off",
203
+ "no-restricted-properties": "off",
204
+ "no-restricted-syntax": "off",
205
+ "no-return-assign": "warn",
206
+ "no-script-url": "off",
207
+ "no-self-compare": "warn",
208
+ "no-sequences": "off",
209
+ "no-shadow": "off",
210
+ "no-template-curly-in-string": "off",
211
+ "no-ternary": "off",
212
+ "no-throw-literal": "off",
213
+ "no-undef-init": "warn",
214
+ "no-undefined": "warn",
215
+ "no-underscore-dangle": "off",
216
+ "no-unmodified-loop-condition": "warn",
217
+ "no-unneeded-ternary": ["warn", {
218
+ defaultAssignment: false
219
+ }],
220
+ "no-unreachable-loop": "warn",
221
+ "no-unused-expressions": "off",
222
+ "no-unused-private-class-members": "warn",
223
+ "no-use-before-define": "off",
224
+ "no-useless-assignment": "off",
225
+ "no-useless-call": "warn",
226
+ "no-useless-computed-key": "warn",
227
+ "no-useless-concat": "warn",
228
+ "no-useless-constructor": "warn",
229
+ "no-useless-rename": "warn",
230
+ "no-useless-return": "warn",
231
+ "no-var": "warn",
232
+ "no-void": "off",
233
+ "no-warning-comments": "off",
234
+ "object-shorthand": ["warn", "methods"],
235
+ "one-var": ["warn", {
236
+ uninitialized: "consecutive"
237
+ }],
238
+ "operator-assignment": ["warn", "always"],
239
+ "prefer-arrow-callback": ["warn", {
240
+ allowNamedFunctions: false,
241
+ allowUnboundThis: true
242
+ }],
243
+ "prefer-const": ["warn", {
244
+ destructuring: "all",
245
+ ignoreReadBeforeAssign: false
246
+ }],
247
+ "prefer-destructuring": "off",
248
+ "prefer-exponentiation-operator": "warn",
249
+ "prefer-named-capture-group": "off",
250
+ "prefer-numeric-literals": "warn",
251
+ "prefer-object-has-own": "warn",
252
+ "prefer-object-spread": "warn",
253
+ "prefer-promise-reject-errors": "warn",
254
+ "prefer-regex-literals": ["warn", {
255
+ disallowRedundantWrapping: true
256
+ }],
257
+ "prefer-rest-params": "warn",
258
+ "prefer-spread": "warn",
259
+ "prefer-template": "off",
260
+ "radix": "off",
261
+ "require-atomic-updates": "off",
262
+ "require-await": "off",
263
+ "require-unicode-regexp": "off",
264
+ "sort-imports": "warn",
265
+ "sort-keys": "off",
266
+ "sort-vars": "off",
267
+ "strict": "off",
268
+ "symbol-description": "off",
269
+ "vars-on-top": "warn",
270
+ "yoda": ["warn", "never", {
271
+ exceptRange: true
272
+ }]
273
+ });
274
+
275
+ // src/lib/stylistic.ts
276
+ var stylistic_default = prefixary("style", {
277
+ "array-element-newline": ["warn", "consistent"],
278
+ "arrow-parens": ["warn", "always"],
279
+ "arrow-spacing": ["warn", {
280
+ before: true,
281
+ after: true
282
+ }],
283
+ "block-spacing": ["warn", "always"],
284
+ "brace-style": ["warn", "stroustrup"],
285
+ "comma-dangle": ["warn", "never"],
286
+ "comma-spacing": ["warn", {
287
+ before: false,
288
+ after: true
289
+ }],
290
+ "comma-style": ["warn", "last"],
291
+ "computed-property-spacing": ["warn", "never"],
292
+ "dot-location": ["warn", "property"],
293
+ "eol-last": ["warn", "never"],
294
+ "function-call-argument-newline": ["warn", "consistent"],
295
+ "function-call-spacing": ["warn", "never"],
296
+ "function-paren-newline": ["warn", "consistent"],
297
+ "implicit-arrow-linebreak": ["warn", "beside"],
298
+ "indent": "off",
299
+ "indent-binary-ops": "off",
300
+ "generator-star-spacing": ["warn", {
301
+ named: {
302
+ before: false,
303
+ after: true
304
+ },
305
+ anonymous: {
306
+ before: true,
307
+ after: false
308
+ },
309
+ method: {
310
+ before: true,
311
+ after: true
312
+ }
313
+ }],
314
+ "jsx-quotes": ["warn", "prefer-double"],
315
+ "key-spacing": ["warn", {
316
+ beforeColon: false,
317
+ afterColon: true,
318
+ mode: "strict"
319
+ }],
320
+ "keyword-spacing": ["warn", {
321
+ before: true,
322
+ after: true
323
+ }],
324
+ "linebreak-style": ["warn", "unix"],
325
+ "lines-between-class-members": ["warn", "always", {
326
+ exceptAfterSingleLine: true
327
+ }],
328
+ "member-delimiter-style": ["warn", {
329
+ multiline: {
330
+ delimiter: "semi",
331
+ requireLast: true
332
+ }
333
+ }],
334
+ "multiline-ternary": "off",
335
+ "new-parens": "warn",
336
+ "no-confusing-arrow": "warn",
337
+ "no-extra-parens": ["warn", "functions"],
338
+ "no-extra-semi": "warn",
339
+ "no-floating-decimal": "warn",
340
+ "no-mixed-operators": "off",
341
+ "no-mixed-spaces-and-tabs": "warn",
342
+ "no-multi-spaces": ["warn", {
343
+ ignoreEOLComments: true
344
+ }],
345
+ "no-multiple-empty-lines": ["warn", {
346
+ max: 1
347
+ }],
348
+ "no-tabs": "warn",
349
+ "no-trailing-spaces": "warn",
350
+ "no-whitespace-before-property": "warn",
351
+ "nonblock-statement-body-position": ["warn", "beside"],
352
+ "object-curly-newline": "warn",
353
+ "object-curly-spacing": ["warn", "always"],
354
+ "object-property-newline": ["warn", {
355
+ allowAllPropertiesOnSameLine: true
356
+ }],
357
+ "operator-linebreak": "off",
358
+ "padded-blocks": ["warn", "never"],
359
+ "quote-props": ["warn", "as-needed"],
360
+ "quotes": ["warn", "double", {
361
+ allowTemplateLiterals: true
362
+ }],
363
+ "rest-spread-spacing": ["warn", "never"],
364
+ "semi": ["warn", "always"],
365
+ "semi-spacing": ["warn", {
366
+ before: false,
367
+ after: true
368
+ }],
369
+ "semi-style": ["warn", "last"],
370
+ "space-before-blocks": ["warn", "always"],
371
+ "space-before-function-paren": ["warn", {
372
+ named: "never",
373
+ anonymous: "never",
374
+ asyncArrow: "always"
375
+ }],
376
+ "space-in-parens": ["warn", "never"],
377
+ "space-infix-ops": "warn",
378
+ "space-unary-ops": "warn",
379
+ "spaced-comment": "off",
380
+ "switch-colon-spacing": ["warn", {
381
+ before: false,
382
+ after: true
383
+ }],
384
+ "template-curly-spacing": ["warn", "never"],
385
+ "template-tag-spacing": ["warn", "never"],
386
+ "type-annotation-spacing": ["warn", {
387
+ before: false,
388
+ after: true,
389
+ overrides: {
390
+ arrow: {
391
+ before: true
392
+ }
393
+ }
394
+ }],
395
+ "type-generic-spacing": "warn",
396
+ "type-named-tuple-spacing": "warn",
397
+ "wrap-iife": ["warn", "inside", {
398
+ functionPrototypeMethods: true
399
+ }],
400
+ "yield-star-spacing": ["warn", "after"]
401
+ });
402
+
403
+ // src/lib/vue.ts
404
+ var vue_default = prefixary("vue", {
405
+ "attribute-hyphenation": "warn",
406
+ "attributes-order": ["warn", {
407
+ order: [
408
+ "LIST_RENDERING",
409
+ "CONDITIONALS",
410
+ "RENDER_MODIFIERS",
411
+ "OTHER_DIRECTIVES",
412
+ "SLOT",
413
+ "DEFINITION",
414
+ "UNIQUE",
415
+ "GLOBAL",
416
+ ["ATTR_DYNAMIC", "ATTR_STATIC", "ATTR_SHORTHAND_BOOL"],
417
+ "TWO_WAY_BINDING",
418
+ "EVENTS",
419
+ "CONTENT"
420
+ ]
421
+ }],
422
+ "comma-dangle": ["warn", "never"],
423
+ "component-definition-name-casing": ["warn", "kebab-case"],
424
+ "first-attribute-linebreak": ["warn", {
425
+ singleline: "beside",
426
+ multiline: "below"
427
+ }],
428
+ "html-closing-bracket-newline": ["warn", {
429
+ singleline: "never",
430
+ multiline: "always"
431
+ }],
432
+ "html-closing-bracket-spacing": "off",
433
+ "html-indent": "off",
434
+ "html-quotes": ["warn", "double"],
435
+ "html-self-closing": ["warn", {
436
+ html: {
437
+ void: "always",
438
+ normal: "never",
439
+ component: "always"
440
+ },
441
+ svg: "always",
442
+ math: "always"
443
+ }],
444
+ "multiline-html-element-content-newline": "off",
445
+ "mustache-interpolation-spacing": ["warn", "always"],
446
+ "no-dupe-keys": "warn",
447
+ "no-dupe-v-else-if": "warn",
448
+ "no-duplicate-attributes": "warn",
449
+ "no-export-in-script-setup": "warn",
450
+ "no-expose-after-await": "warn",
451
+ "no-lifecycle-after-await": "warn",
452
+ "no-lone-template": "warn",
453
+ "no-mutating-props": "warn",
454
+ "no-multiple-slot-args": "warn",
455
+ "no-multi-spaces": "warn",
456
+ "no-ref-as-operand": "warn",
457
+ "no-reserved-component-names": "warn",
458
+ "no-reserved-keys": "warn",
459
+ "no-reserved-props": "warn",
460
+ "no-side-effects-in-computed-properties": "warn",
461
+ "no-spaces-around-equal-signs-in-attribute": "warn",
462
+ "no-template-key": "warn",
463
+ "no-template-shadow": "warn",
464
+ "no-textarea-mustache": "warn",
465
+ "no-unused-vars": "warn",
466
+ "no-use-computed-property-like-method": "warn",
467
+ "no-use-v-if-with-v-for": "warn",
468
+ "no-useless-template-attributes": "warn",
469
+ "no-v-for-template-key-on-child": "warn",
470
+ "no-v-text-v-html-on-component": "warn",
471
+ "no-watch-after-await": "warn",
472
+ "one-component-per-file": "warn",
473
+ "operator-linebreak": "off",
474
+ "prefer-import-from-vue": "warn",
475
+ "prefer-template": "warn",
476
+ "prop-name-casing": ["warn", "camelCase"],
477
+ "require-component-is": "warn",
478
+ "require-explicit-emits": "warn",
479
+ "require-prop-type-constructor": "warn",
480
+ "require-render-return": "warn",
481
+ "require-slots-as-functions": "warn",
482
+ "require-toggle-inside-transition": "warn",
483
+ "require-valid-default-prop": "warn",
484
+ "require-v-for-key": "off",
485
+ "return-in-computed-property": "warn",
486
+ "return-in-emits-validator": "warn",
487
+ "singleline-html-element-content-newline": "off",
488
+ "this-in-template": ["warn", "never"],
489
+ "use-v-on-exact": "warn",
490
+ "valid-attribute-name": "warn",
491
+ "valid-define-emits": "warn",
492
+ "valid-define-props": "warn",
493
+ "valid-next-tick": "warn",
494
+ "valid-template-root": "off",
495
+ "valid-v-bind": "warn",
496
+ "valid-v-cloak": "warn",
497
+ "valid-v-else-if": "warn",
498
+ "valid-v-else": "warn",
499
+ "valid-v-for": "off",
500
+ "valid-v-html": "warn",
501
+ "valid-v-if": "warn",
502
+ "valid-v-memo": "warn",
503
+ "valid-v-model": "warn",
504
+ "valid-v-on": "warn",
505
+ "valid-v-once": "warn",
506
+ "valid-v-pre": "warn",
507
+ "valid-v-show": "warn",
508
+ "valid-v-slot": "warn",
509
+ "valid-v-text": "warn",
510
+ "v-bind-style": ["warn", "shorthand"],
511
+ "v-on-style": ["warn", "shorthand"]
512
+ });
513
+
514
+ // src/index.ts
515
+ var src_default = {
516
+ patch: patch_default,
517
+ recommended: recommended_default,
518
+ standard: standard_default,
519
+ stylistic: stylistic_default,
520
+ vue: vue_default
521
+ };
@@ -0,0 +1,121 @@
1
+ declare const _default: {
2
+ patch: {
3
+ "antfu/if-newline": string;
4
+ "antfu/no-import-dist": string;
5
+ "antfu/top-level-function": string;
6
+ "node/prefer-global/process": string;
7
+ "unused-imports/no-unused-vars": string;
8
+ };
9
+ recommended: {
10
+ "constructor-super": string;
11
+ "for-direction": string;
12
+ "getter-return": string;
13
+ "no-async-promise-executor": string;
14
+ "no-class-assign": string;
15
+ "no-compare-neg-zero": string;
16
+ "no-cond-assign": string;
17
+ "no-const-assign": string;
18
+ "no-constant-binary-expression": string;
19
+ "no-constant-condition": (string | {
20
+ checkLoops: boolean;
21
+ })[];
22
+ "no-control-regex": string;
23
+ "no-debugger": string;
24
+ "no-dupe-args": string;
25
+ "no-dupe-class-members": string;
26
+ "no-dupe-else-if": string;
27
+ "no-dupe-keys": string;
28
+ "no-duplicate-case": string;
29
+ "no-empty-character-class": string;
30
+ "no-empty-pattern": string;
31
+ "no-ex-assign": string;
32
+ "no-fallthrough": string;
33
+ "no-func-assign": string;
34
+ "no-import-assign": string;
35
+ "no-invalid-regexp": string;
36
+ "no-irregular-whitespace": string;
37
+ "no-loss-of-precision": string;
38
+ "no-misleading-character-class": string;
39
+ "no-new-native-nonconstructor": string;
40
+ "no-obj-calls": string;
41
+ "no-prototype-builtins": string;
42
+ "no-self-assign": string;
43
+ "no-setter-return": string;
44
+ "no-sparse-arrays": string;
45
+ "no-this-before-super": string;
46
+ "no-undef": string;
47
+ "no-unexpected-multiline": string;
48
+ "no-unreachable": string;
49
+ "no-unsafe-finally": string;
50
+ "no-unsafe-negation": (string | {
51
+ enforceForOrderingRelations: boolean;
52
+ })[];
53
+ "no-unsafe-optional-chaining": string;
54
+ "no-unused-private-class-members": string;
55
+ "no-unused-vars": string;
56
+ "no-useless-backreference": string;
57
+ "prefer-template": string;
58
+ "symbol-description": string;
59
+ "use-isnan": (string | {
60
+ enforceForIndexOf: boolean;
61
+ })[];
62
+ "valid-typeof": string;
63
+ };
64
+ standard: {
65
+ "accessor-pairs": string;
66
+ "array-callback-return": string;
67
+ "arrow-body-style": string;
68
+ "block-scoped-var": string;
69
+ camelcase: string;
70
+ "capitalized-comments": string;
71
+ "class-methods-use-this": string;
72
+ complexity: string;
73
+ "consistent-return": string;
74
+ curly: string[];
75
+ "dot-notation": (string | {
76
+ allowPattern: string;
77
+ })[];
78
+ eqeqeq: string[];
79
+ "no-await-in-loop": string;
80
+ "no-console": string;
81
+ "no-constructor-return": string;
82
+ "no-duplicate-imports": string;
83
+ "no-inner-declarations": string;
84
+ "no-new-symbol": string;
85
+ "no-promise-executor-return": string;
86
+ "no-self-compare": string;
87
+ "no-sequences": string;
88
+ "no-template-curly-in-string": string;
89
+ "no-throw-literal": string;
90
+ "no-unmodified-loop-condition": string;
91
+ "no-unreachable-loop": string;
92
+ "no-unused-expressions": string;
93
+ "no-unused-private-class-members": string;
94
+ "no-use-before-define": string;
95
+ "no-useless-assignment": string;
96
+ "no-useless-concat": string;
97
+ "no-useless-rename": string;
98
+ "no-useless-return": string;
99
+ "no-var": string;
100
+ "object-shorthand": string[];
101
+ "operator-assignment": string[];
102
+ "prefer-const": (string | {
103
+ destructuring: string;
104
+ ignoreReadBeforeAssign: boolean;
105
+ })[];
106
+ "prefer-rest-params": string;
107
+ "prefer-spread": string;
108
+ "require-atomic-updates": string;
109
+ yoda: (string | {
110
+ exceptRange: boolean;
111
+ })[];
112
+ };
113
+ stylistic: {
114
+ [k: string]: any;
115
+ };
116
+ vue: {
117
+ [k: string]: any;
118
+ };
119
+ };
120
+
121
+ export { _default as default };