eslint-config-airbnb-extended 0.1.1 → 0.2.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.
@@ -1,2 +1,2786 @@
1
- declare const _default: any[];
1
+ import type { Linter } from 'eslint';
2
+ declare const _default: ({
3
+ name: string;
4
+ rules: {
5
+ 'array-bracket-newline': ["off", string];
6
+ 'array-element-newline': ["off", {
7
+ multiline: boolean;
8
+ minItems: number;
9
+ }];
10
+ 'array-bracket-spacing': ["error", string];
11
+ 'block-spacing': ["error", string];
12
+ 'brace-style': ["error", string, {
13
+ allowSingleLine: boolean;
14
+ }];
15
+ camelcase: ["error", {
16
+ properties: string;
17
+ ignoreDestructuring: boolean;
18
+ }];
19
+ 'capitalized-comments': ["off", string, {
20
+ line: {
21
+ ignorePattern: string;
22
+ ignoreInlineComments: boolean;
23
+ ignoreConsecutiveComments: boolean;
24
+ };
25
+ block: {
26
+ ignorePattern: string;
27
+ ignoreInlineComments: boolean;
28
+ ignoreConsecutiveComments: boolean;
29
+ };
30
+ }];
31
+ 'comma-dangle': ["error", {
32
+ arrays: string;
33
+ objects: string;
34
+ imports: string;
35
+ exports: string;
36
+ functions: string;
37
+ }];
38
+ 'comma-spacing': ["error", {
39
+ before: boolean;
40
+ after: boolean;
41
+ }];
42
+ 'comma-style': ["error", string, {
43
+ exceptions: {
44
+ ArrayExpression: boolean;
45
+ ArrayPattern: boolean;
46
+ ArrowFunctionExpression: boolean;
47
+ CallExpression: boolean;
48
+ FunctionDeclaration: boolean;
49
+ FunctionExpression: boolean;
50
+ ImportDeclaration: boolean;
51
+ ObjectExpression: boolean;
52
+ ObjectPattern: boolean;
53
+ VariableDeclaration: boolean;
54
+ NewExpression: boolean;
55
+ };
56
+ }];
57
+ 'computed-property-spacing': ["error", string];
58
+ 'consistent-this': "off";
59
+ 'eol-last': ["error", string];
60
+ 'function-call-argument-newline': ["error", string];
61
+ 'func-call-spacing': ["error", string];
62
+ 'func-name-matching': ["off", string, {
63
+ includeCommonJSModuleExports: boolean;
64
+ considerPropertyDescriptor: boolean;
65
+ }];
66
+ 'func-names': "warn";
67
+ 'func-style': ["off", string];
68
+ 'function-paren-newline': ["error", string];
69
+ 'id-denylist': "off";
70
+ 'id-length': "off";
71
+ 'id-match': "off";
72
+ 'implicit-arrow-linebreak': ["error", string];
73
+ indent: ["error", number, {
74
+ SwitchCase: number;
75
+ VariableDeclarator: number;
76
+ outerIIFEBody: number;
77
+ FunctionDeclaration: {
78
+ parameters: number;
79
+ body: number;
80
+ };
81
+ FunctionExpression: {
82
+ parameters: number;
83
+ body: number;
84
+ };
85
+ CallExpression: {
86
+ arguments: number;
87
+ };
88
+ ArrayExpression: number;
89
+ ObjectExpression: number;
90
+ ImportDeclaration: number;
91
+ flatTernaryExpressions: boolean;
92
+ ignoredNodes: string[];
93
+ ignoreComments: boolean;
94
+ }];
95
+ 'jsx-quotes': ["off", string];
96
+ 'key-spacing': ["error", {
97
+ beforeColon: boolean;
98
+ afterColon: boolean;
99
+ }];
100
+ 'keyword-spacing': ["error", {
101
+ before: boolean;
102
+ after: boolean;
103
+ overrides: {
104
+ return: {
105
+ after: boolean;
106
+ };
107
+ throw: {
108
+ after: boolean;
109
+ };
110
+ case: {
111
+ after: boolean;
112
+ };
113
+ };
114
+ }];
115
+ 'line-comment-position': ["off", {
116
+ position: string;
117
+ ignorePattern: string;
118
+ applyDefaultPatterns: boolean;
119
+ }];
120
+ 'linebreak-style': ["error", string];
121
+ 'lines-between-class-members': ["error", string, {
122
+ exceptAfterSingleLine: boolean;
123
+ }];
124
+ 'lines-around-comment': "off";
125
+ 'lines-around-directive': ["error", {
126
+ before: string;
127
+ after: string;
128
+ }];
129
+ 'logical-assignment-operators': ["off", string, {
130
+ enforceForIfStatements: boolean;
131
+ }];
132
+ 'max-depth': ["off", number];
133
+ 'max-len': ["error", number, number, {
134
+ ignoreUrls: boolean;
135
+ ignoreComments: boolean;
136
+ ignoreRegExpLiterals: boolean;
137
+ ignoreStrings: boolean;
138
+ ignoreTemplateLiterals: boolean;
139
+ }];
140
+ 'max-lines': ["off", {
141
+ max: number;
142
+ skipBlankLines: boolean;
143
+ skipComments: boolean;
144
+ }];
145
+ 'max-lines-per-function': ["off", {
146
+ max: number;
147
+ skipBlankLines: boolean;
148
+ skipComments: boolean;
149
+ IIFEs: boolean;
150
+ }];
151
+ 'max-nested-callbacks': "off";
152
+ 'max-params': ["off", number];
153
+ 'max-statements': ["off", number];
154
+ 'max-statements-per-line': ["off", {
155
+ max: number;
156
+ }];
157
+ 'multiline-comment-style': ["off", string];
158
+ 'multiline-ternary': ["off", string];
159
+ 'new-cap': ["error", {
160
+ newIsCap: boolean;
161
+ newIsCapExceptions: never[];
162
+ capIsNew: boolean;
163
+ capIsNewExceptions: string[];
164
+ }];
165
+ 'new-parens': "error";
166
+ 'newline-after-var': "off";
167
+ 'newline-before-return': "off";
168
+ 'newline-per-chained-call': ["error", {
169
+ ignoreChainWithDepth: number;
170
+ }];
171
+ 'no-array-constructor': "error";
172
+ 'no-bitwise': "error";
173
+ 'no-continue': "error";
174
+ 'no-inline-comments': "off";
175
+ 'no-lonely-if': "error";
176
+ 'no-mixed-operators': ["error", {
177
+ groups: string[][];
178
+ allowSamePrecedence: boolean;
179
+ }];
180
+ 'no-mixed-spaces-and-tabs': "error";
181
+ 'no-multi-assign': ["error"];
182
+ 'no-multiple-empty-lines': ["error", {
183
+ max: number;
184
+ maxBOF: number;
185
+ maxEOF: number;
186
+ }];
187
+ 'no-negated-condition': "off";
188
+ 'no-nested-ternary': "error";
189
+ 'no-new-object': "error";
190
+ 'no-plusplus': "error";
191
+ 'no-restricted-syntax': ["error", {
192
+ selector: string;
193
+ message: string;
194
+ }, {
195
+ selector: string;
196
+ message: string;
197
+ }, {
198
+ selector: string;
199
+ message: string;
200
+ }, {
201
+ selector: string;
202
+ message: string;
203
+ }];
204
+ 'no-spaced-func': "off";
205
+ 'no-tabs': "error";
206
+ 'no-ternary': "off";
207
+ 'no-trailing-spaces': ["error", {
208
+ skipBlankLines: boolean;
209
+ ignoreComments: boolean;
210
+ }];
211
+ 'no-underscore-dangle': ["error", {
212
+ allow: never[];
213
+ allowAfterThis: boolean;
214
+ allowAfterSuper: boolean;
215
+ enforceInMethodNames: boolean;
216
+ }];
217
+ 'no-unneeded-ternary': ["error", {
218
+ defaultAssignment: boolean;
219
+ }];
220
+ 'no-whitespace-before-property': "error";
221
+ 'nonblock-statement-body-position': ["error", string, {
222
+ overrides: {};
223
+ }];
224
+ 'object-curly-spacing': ["error", string];
225
+ 'object-curly-newline': ["error", {
226
+ ObjectExpression: {
227
+ minProperties: number;
228
+ multiline: boolean;
229
+ consistent: boolean;
230
+ };
231
+ ObjectPattern: {
232
+ minProperties: number;
233
+ multiline: boolean;
234
+ consistent: boolean;
235
+ };
236
+ ImportDeclaration: {
237
+ minProperties: number;
238
+ multiline: boolean;
239
+ consistent: boolean;
240
+ };
241
+ ExportDeclaration: {
242
+ minProperties: number;
243
+ multiline: boolean;
244
+ consistent: boolean;
245
+ };
246
+ }];
247
+ 'object-property-newline': ["error", {
248
+ allowAllPropertiesOnSameLine: boolean;
249
+ }];
250
+ 'one-var': ["error", string];
251
+ 'one-var-declaration-per-line': ["error", string];
252
+ 'operator-assignment': ["error", string];
253
+ 'operator-linebreak': ["error", string, {
254
+ overrides: {
255
+ '=': string;
256
+ };
257
+ }];
258
+ 'padded-blocks': ["error", {
259
+ blocks: string;
260
+ classes: string;
261
+ switches: string;
262
+ }, {
263
+ allowSingleLineBlocks: boolean;
264
+ }];
265
+ 'padding-line-between-statements': "off";
266
+ 'prefer-exponentiation-operator': "error";
267
+ 'prefer-object-spread': "error";
268
+ 'quote-props': ["error", string, {
269
+ keywords: boolean;
270
+ unnecessary: boolean;
271
+ numbers: boolean;
272
+ }];
273
+ quotes: ["error", string, {
274
+ avoidEscape: boolean;
275
+ }];
276
+ 'require-jsdoc': "off";
277
+ semi: ["error", string];
278
+ 'semi-spacing': ["error", {
279
+ before: boolean;
280
+ after: boolean;
281
+ }];
282
+ 'semi-style': ["error", string];
283
+ 'sort-keys': ["off", string, {
284
+ caseSensitive: boolean;
285
+ natural: boolean;
286
+ }];
287
+ 'sort-vars': "off";
288
+ 'space-before-blocks': "error";
289
+ 'space-before-function-paren': ["error", {
290
+ anonymous: string;
291
+ named: string;
292
+ asyncArrow: string;
293
+ }];
294
+ 'space-in-parens': ["error", string];
295
+ 'space-infix-ops': "error";
296
+ 'space-unary-ops': ["error", {
297
+ words: boolean;
298
+ nonwords: boolean;
299
+ overrides: {};
300
+ }];
301
+ 'spaced-comment': ["error", string, {
302
+ line: {
303
+ exceptions: string[];
304
+ markers: string[];
305
+ };
306
+ block: {
307
+ exceptions: string[];
308
+ markers: string[];
309
+ balanced: boolean;
310
+ };
311
+ }];
312
+ 'switch-colon-spacing': ["error", {
313
+ after: boolean;
314
+ before: boolean;
315
+ }];
316
+ 'template-tag-spacing': ["error", string];
317
+ 'unicode-bom': ["error", string];
318
+ 'wrap-regex': "off";
319
+ };
320
+ } | {
321
+ name: string;
322
+ rules: {
323
+ 'accessor-pairs': "off";
324
+ 'array-callback-return': ["error", {
325
+ allowImplicit: boolean;
326
+ }];
327
+ 'block-scoped-var': "error";
328
+ complexity: ["off", number];
329
+ 'class-methods-use-this': ["error", {
330
+ exceptMethods: never[];
331
+ }];
332
+ 'consistent-return': "error";
333
+ curly: ["error", string];
334
+ 'default-case': ["error", {
335
+ commentPattern: string;
336
+ }];
337
+ 'default-case-last': "error";
338
+ 'default-param-last': "error";
339
+ 'dot-notation': ["error", {
340
+ allowKeywords: boolean;
341
+ }];
342
+ 'dot-location': ["error", string];
343
+ eqeqeq: ["error", string, {
344
+ null: string;
345
+ }];
346
+ 'grouped-accessor-pairs': "error";
347
+ 'guard-for-in': "error";
348
+ 'max-classes-per-file': ["error", number];
349
+ 'no-alert': "warn";
350
+ 'no-caller': "error";
351
+ 'no-case-declarations': "error";
352
+ 'no-constructor-return': "error";
353
+ 'no-div-regex': "off";
354
+ 'no-else-return': ["error", {
355
+ allowElseIf: boolean;
356
+ }];
357
+ 'no-empty-function': ["error", {
358
+ allow: string[];
359
+ }];
360
+ 'no-empty-pattern': "error";
361
+ 'no-empty-static-block': "off";
362
+ 'no-eq-null': "off";
363
+ 'no-eval': "error";
364
+ 'no-extend-native': "error";
365
+ 'no-extra-bind': "error";
366
+ 'no-extra-label': "error";
367
+ 'no-fallthrough': "error";
368
+ 'no-floating-decimal': "error";
369
+ 'no-global-assign': ["error", {
370
+ exceptions: never[];
371
+ }];
372
+ 'no-native-reassign': "off";
373
+ 'no-implicit-coercion': ["off", {
374
+ boolean: boolean;
375
+ number: boolean;
376
+ string: boolean;
377
+ allow: never[];
378
+ }];
379
+ 'no-implicit-globals': "off";
380
+ 'no-implied-eval': "error";
381
+ 'no-invalid-this': "off";
382
+ 'no-iterator': "error";
383
+ 'no-labels': ["error", {
384
+ allowLoop: boolean;
385
+ allowSwitch: boolean;
386
+ }];
387
+ 'no-lone-blocks': "error";
388
+ 'no-loop-func': "error";
389
+ 'no-magic-numbers': ["off", {
390
+ ignore: never[];
391
+ ignoreArrayIndexes: boolean;
392
+ enforceConst: boolean;
393
+ detectObjects: boolean;
394
+ }];
395
+ 'no-multi-spaces': ["error", {
396
+ ignoreEOLComments: boolean;
397
+ }];
398
+ 'no-multi-str': "error";
399
+ 'no-new': "error";
400
+ 'no-new-func': "error";
401
+ 'no-new-wrappers': "error";
402
+ 'no-nonoctal-decimal-escape': "error";
403
+ 'no-object-constructor': "off";
404
+ 'no-octal': "error";
405
+ 'no-octal-escape': "error";
406
+ 'no-param-reassign': ["error", {
407
+ props: boolean;
408
+ ignorePropertyModificationsFor: string[];
409
+ }];
410
+ 'no-proto': "error";
411
+ 'no-redeclare': "error";
412
+ 'no-restricted-properties': ["error", {
413
+ object: string;
414
+ property: string;
415
+ message: string;
416
+ }, {
417
+ object: string;
418
+ property: string;
419
+ message: string;
420
+ }, {
421
+ object: string;
422
+ property: string;
423
+ message: string;
424
+ }, {
425
+ object: string;
426
+ property: string;
427
+ message: string;
428
+ }, {
429
+ object: string;
430
+ property: string;
431
+ message: string;
432
+ }, {
433
+ object: string;
434
+ property: string;
435
+ message: string;
436
+ }, {
437
+ object: string;
438
+ property: string;
439
+ message: string;
440
+ }, {
441
+ property: string;
442
+ message: string;
443
+ }, {
444
+ property: string;
445
+ message: string;
446
+ }, {
447
+ object: string;
448
+ property: string;
449
+ message: string;
450
+ }];
451
+ 'no-return-assign': ["error", string];
452
+ 'no-return-await': "error";
453
+ 'no-script-url': "error";
454
+ 'no-self-assign': ["error", {
455
+ props: boolean;
456
+ }];
457
+ 'no-self-compare': "error";
458
+ 'no-sequences': "error";
459
+ 'no-throw-literal': "error";
460
+ 'no-unmodified-loop-condition': "off";
461
+ 'no-unused-expressions': ["error", {
462
+ allowShortCircuit: boolean;
463
+ allowTernary: boolean;
464
+ allowTaggedTemplates: boolean;
465
+ }];
466
+ 'no-unused-labels': "error";
467
+ 'no-useless-call': "off";
468
+ 'no-useless-catch': "error";
469
+ 'no-useless-concat': "error";
470
+ 'no-useless-escape': "error";
471
+ 'no-useless-return': "error";
472
+ 'no-void': "error";
473
+ 'no-warning-comments': ["off", {
474
+ terms: string[];
475
+ location: string;
476
+ }];
477
+ 'no-with': "error";
478
+ 'prefer-promise-reject-errors': ["error", {
479
+ allowEmptyReject: boolean;
480
+ }];
481
+ 'prefer-named-capture-group': "off";
482
+ 'prefer-object-has-own': "off";
483
+ 'prefer-regex-literals': ["error", {
484
+ disallowRedundantWrapping: boolean;
485
+ }];
486
+ radix: "error";
487
+ 'require-await': "off";
488
+ 'require-unicode-regexp': "off";
489
+ 'vars-on-top': "error";
490
+ 'wrap-iife': ["error", string, {
491
+ functionPrototypeMethods: boolean;
492
+ }];
493
+ yoda: "error";
494
+ };
495
+ } | {
496
+ name: string;
497
+ languageOptions: {
498
+ globals: {
499
+ Array: false;
500
+ ArrayBuffer: false;
501
+ Boolean: false;
502
+ DataView: false;
503
+ Date: false;
504
+ decodeURI: false;
505
+ decodeURIComponent: false;
506
+ encodeURI: false;
507
+ encodeURIComponent: false;
508
+ Error: false;
509
+ escape: false;
510
+ eval: false;
511
+ EvalError: false;
512
+ Float32Array: false;
513
+ Float64Array: false;
514
+ Function: false;
515
+ Infinity: false;
516
+ Int16Array: false;
517
+ Int32Array: false;
518
+ Int8Array: false;
519
+ Intl: false;
520
+ isFinite: false;
521
+ isNaN: false;
522
+ JSON: false;
523
+ Map: false;
524
+ Math: false;
525
+ NaN: false;
526
+ Number: false;
527
+ Object: false;
528
+ parseFloat: false;
529
+ parseInt: false;
530
+ Promise: false;
531
+ Proxy: false;
532
+ RangeError: false;
533
+ ReferenceError: false;
534
+ Reflect: false;
535
+ RegExp: false;
536
+ Set: false;
537
+ String: false;
538
+ Symbol: false;
539
+ SyntaxError: false;
540
+ TypeError: false;
541
+ Uint16Array: false;
542
+ Uint32Array: false;
543
+ Uint8Array: false;
544
+ Uint8ClampedArray: false;
545
+ undefined: false;
546
+ unescape: false;
547
+ URIError: false;
548
+ WeakMap: false;
549
+ WeakSet: false;
550
+ };
551
+ parserOptions: {
552
+ ecmaVersion: 6;
553
+ sourceType: "module";
554
+ ecmaFeatures: {
555
+ generators: boolean;
556
+ objectLiteralDuplicateProperties: boolean;
557
+ };
558
+ };
559
+ };
560
+ rules: {
561
+ 'arrow-body-style': ["error", string, {
562
+ requireReturnForObjectLiteral: boolean;
563
+ }];
564
+ 'arrow-parens': ["error", string];
565
+ 'arrow-spacing': ["error", {
566
+ before: boolean;
567
+ after: boolean;
568
+ }];
569
+ 'constructor-super': "error";
570
+ 'generator-star-spacing': ["error", {
571
+ before: boolean;
572
+ after: boolean;
573
+ }];
574
+ 'no-class-assign': "error";
575
+ 'no-confusing-arrow': ["error", {
576
+ allowParens: boolean;
577
+ }];
578
+ 'no-const-assign': "error";
579
+ 'no-dupe-class-members': "error";
580
+ 'no-duplicate-imports': "off";
581
+ 'no-new-symbol': "error";
582
+ 'no-restricted-exports': ["error", {
583
+ restrictedNamedExports: string[];
584
+ }];
585
+ 'no-restricted-imports': ["off", {
586
+ paths: never[];
587
+ patterns: never[];
588
+ }];
589
+ 'no-this-before-super': "error";
590
+ 'no-useless-computed-key': "error";
591
+ 'no-useless-constructor': "error";
592
+ 'no-useless-rename': ["error", {
593
+ ignoreDestructuring: boolean;
594
+ ignoreImport: boolean;
595
+ ignoreExport: boolean;
596
+ }];
597
+ 'no-var': "error";
598
+ 'object-shorthand': ["error", string, {
599
+ ignoreConstructors: boolean;
600
+ avoidQuotes: boolean;
601
+ }];
602
+ 'prefer-arrow-callback': ["error", {
603
+ allowNamedFunctions: boolean;
604
+ allowUnboundThis: boolean;
605
+ }];
606
+ 'prefer-const': ["error", {
607
+ destructuring: string;
608
+ ignoreReadBeforeAssign: boolean;
609
+ }];
610
+ 'prefer-destructuring': ["error", {
611
+ VariableDeclarator: {
612
+ array: boolean;
613
+ object: boolean;
614
+ };
615
+ AssignmentExpression: {
616
+ array: boolean;
617
+ object: boolean;
618
+ };
619
+ }, {
620
+ enforceForRenamedProperties: boolean;
621
+ }];
622
+ 'prefer-numeric-literals': "error";
623
+ 'prefer-reflect': "off";
624
+ 'prefer-rest-params': "error";
625
+ 'prefer-spread': "error";
626
+ 'prefer-template': "error";
627
+ 'require-yield': "error";
628
+ 'rest-spread-spacing': ["error", string];
629
+ 'sort-imports': ["off", {
630
+ ignoreCase: boolean;
631
+ ignoreDeclarationSort: boolean;
632
+ ignoreMemberSort: boolean;
633
+ memberSyntaxSortOrder: string[];
634
+ }];
635
+ 'symbol-description': "error";
636
+ 'template-curly-spacing': "error";
637
+ 'yield-star-spacing': ["error", string];
638
+ };
639
+ } | {
640
+ name: string;
641
+ rules: {
642
+ 'for-direction': "error";
643
+ 'getter-return': ["error", {
644
+ allowImplicit: boolean;
645
+ }];
646
+ 'no-async-promise-executor': "error";
647
+ 'no-await-in-loop': "error";
648
+ 'no-compare-neg-zero': "error";
649
+ 'no-cond-assign': ["error", string];
650
+ 'no-console': "warn";
651
+ 'no-constant-binary-expression': "off";
652
+ 'no-constant-condition': "warn";
653
+ 'no-control-regex': "error";
654
+ 'no-debugger': "error";
655
+ 'no-dupe-args': "error";
656
+ 'no-dupe-else-if': "error";
657
+ 'no-dupe-keys': "error";
658
+ 'no-duplicate-case': "error";
659
+ 'no-empty': "error";
660
+ 'no-empty-character-class': "error";
661
+ 'no-ex-assign': "error";
662
+ 'no-extra-boolean-cast': "error";
663
+ 'no-extra-parens': ["off", string, {
664
+ conditionalAssign: boolean;
665
+ nestedBinaryExpressions: boolean;
666
+ returnAssign: boolean;
667
+ ignoreJSX: string;
668
+ enforceForArrowConditionals: boolean;
669
+ }];
670
+ 'no-extra-semi': "error";
671
+ 'no-func-assign': "error";
672
+ 'no-import-assign': "error";
673
+ 'no-inner-declarations': "error";
674
+ 'no-invalid-regexp': "error";
675
+ 'no-irregular-whitespace': "error";
676
+ 'no-loss-of-precision': "error";
677
+ 'no-misleading-character-class': "error";
678
+ 'no-obj-calls': "error";
679
+ 'no-new-native-nonconstructor': "off";
680
+ 'no-promise-executor-return': "error";
681
+ 'no-prototype-builtins': "error";
682
+ 'no-regex-spaces': "error";
683
+ 'no-setter-return': "error";
684
+ 'no-sparse-arrays': "error";
685
+ 'no-template-curly-in-string': "error";
686
+ 'no-unexpected-multiline': "error";
687
+ 'no-unreachable': "error";
688
+ 'no-unreachable-loop': ["error", {
689
+ ignore: never[];
690
+ }];
691
+ 'no-unsafe-finally': "error";
692
+ 'no-unsafe-negation': "error";
693
+ 'no-unsafe-optional-chaining': ["error", {
694
+ disallowArithmeticOperators: boolean;
695
+ }];
696
+ 'no-unused-private-class-members': "off";
697
+ 'no-useless-backreference': "error";
698
+ 'no-negated-in-lhs': "off";
699
+ 'require-atomic-updates': "off";
700
+ 'use-isnan': "error";
701
+ 'valid-jsdoc': "off";
702
+ 'valid-typeof': ["error", {
703
+ requireStringLiterals: boolean;
704
+ }];
705
+ };
706
+ } | {
707
+ name: string;
708
+ rules: {
709
+ 'init-declarations': "off";
710
+ 'no-catch-shadow': "off";
711
+ 'no-delete-var': "error";
712
+ 'no-label-var': "error";
713
+ 'no-restricted-globals': ["error", {
714
+ name: string;
715
+ message: string;
716
+ }, {
717
+ name: string;
718
+ message: string;
719
+ }, ...{
720
+ name: "self" | "location" | "length" | "find" | "addEventListener" | "blur" | "close" | "closed" | "confirm" | "defaultStatus" | "defaultstatus" | "event" | "external" | "focus" | "frameElement" | "frames" | "history" | "innerHeight" | "innerWidth" | "locationbar" | "menubar" | "moveBy" | "moveTo" | "name" | "onblur" | "onerror" | "onfocus" | "onload" | "onresize" | "onunload" | "open" | "opener" | "opera" | "outerHeight" | "outerWidth" | "pageXOffset" | "pageYOffset" | "parent" | "print" | "removeEventListener" | "resizeBy" | "resizeTo" | "screen" | "screenLeft" | "screenTop" | "screenX" | "screenY" | "scroll" | "scrollbars" | "scrollBy" | "scrollTo" | "scrollX" | "scrollY" | "status" | "statusbar" | "stop" | "toolbar" | "top";
721
+ message: string;
722
+ }[]];
723
+ 'no-shadow': "error";
724
+ 'no-shadow-restricted-names': "error";
725
+ 'no-undef': "error";
726
+ 'no-undef-init': "error";
727
+ 'no-undefined': "off";
728
+ 'no-unused-vars': ["error", {
729
+ vars: string;
730
+ args: string;
731
+ ignoreRestSiblings: boolean;
732
+ }];
733
+ 'no-use-before-define': ["error", {
734
+ functions: boolean;
735
+ classes: boolean;
736
+ variables: boolean;
737
+ }];
738
+ };
739
+ } | {
740
+ name: string;
741
+ languageOptions: {
742
+ globals: {
743
+ Array: false;
744
+ ArrayBuffer: false;
745
+ Boolean: false;
746
+ DataView: false;
747
+ Date: false;
748
+ decodeURI: false;
749
+ decodeURIComponent: false;
750
+ encodeURI: false;
751
+ encodeURIComponent: false;
752
+ Error: false;
753
+ escape: false;
754
+ eval: false;
755
+ EvalError: false;
756
+ Float32Array: false;
757
+ Float64Array: false;
758
+ Function: false;
759
+ Infinity: false;
760
+ Int16Array: false;
761
+ Int32Array: false;
762
+ Int8Array: false;
763
+ Intl: false;
764
+ isFinite: false;
765
+ isNaN: false;
766
+ JSON: false;
767
+ Map: false;
768
+ Math: false;
769
+ NaN: false;
770
+ Number: false;
771
+ Object: false;
772
+ parseFloat: false;
773
+ parseInt: false;
774
+ Promise: false;
775
+ Proxy: false;
776
+ RangeError: false;
777
+ ReferenceError: false;
778
+ Reflect: false;
779
+ RegExp: false;
780
+ Set: false;
781
+ String: false;
782
+ Symbol: false;
783
+ SyntaxError: false;
784
+ TypeError: false;
785
+ Uint16Array: false;
786
+ Uint32Array: false;
787
+ Uint8Array: false;
788
+ Uint8ClampedArray: false;
789
+ undefined: false;
790
+ unescape: false;
791
+ URIError: false;
792
+ WeakMap: false;
793
+ WeakSet: false;
794
+ };
795
+ parserOptions: {
796
+ ecmaVersion: 6;
797
+ sourceType: "module";
798
+ };
799
+ };
800
+ settings: {
801
+ 'import-x/resolver': {
802
+ node: {
803
+ extensions: string[];
804
+ };
805
+ };
806
+ 'import-x/extensions': string[];
807
+ 'import-x/core-modules': never[];
808
+ 'import-x/ignore': string[];
809
+ };
810
+ rules: {
811
+ 'import-x/consistent-type-specifier-style': "off";
812
+ 'import-x/default': "error";
813
+ 'import-x/dynamic-import-chunkname': "off";
814
+ 'import-x/export': "error";
815
+ 'import-x/exports-last': "off";
816
+ 'import-x/extensions': ["error", string, {
817
+ [k: string]: string;
818
+ }];
819
+ 'import-x/first': "error";
820
+ 'import-x/group-exports': "off";
821
+ 'import-x/imports-first': "off";
822
+ 'import-x/max-dependencies': "off";
823
+ 'import-x/named': "error";
824
+ 'import-x/namespaces': "error";
825
+ 'import-x/newline-after-import': "error";
826
+ 'import-x/no-absolute-path': "error";
827
+ 'import-x/no-amd': "error";
828
+ 'import-x/no-anonymous-default-export': "off";
829
+ 'import-x/no-commonjs': "off";
830
+ 'import-x/no-cycle': ["error", {
831
+ maxDepth: string;
832
+ }];
833
+ 'import-x/no-default-export': "off";
834
+ 'import-x/no-deprecated': "off";
835
+ 'import-x/no-duplicates': "error";
836
+ 'import-x/no-dynamic-require': "error";
837
+ 'import-x/no-empty-named-blocks': "error";
838
+ 'import-x/no-extraneous-dependencies': ["error", {
839
+ devDependencies: string[];
840
+ optionalDependencies: boolean;
841
+ peerDependencies: boolean;
842
+ bundledDependencies: boolean;
843
+ }];
844
+ 'import-x/no-import-module-exports': ["error", {
845
+ exceptions: never[];
846
+ }];
847
+ 'import-x/no-internal-modules': "off";
848
+ 'import-x/no-mutable-exports': "error";
849
+ 'import-x/no-named-as-default-member': "error";
850
+ 'import-x/no-named-as-default': "error";
851
+ 'import-x/no-named-default': "error";
852
+ 'import-x/no-named-export': "off";
853
+ 'import-x/no-namespace': "off";
854
+ 'import-x/no-nodejs-modules': "off";
855
+ 'import-x/no-relative-packages': "error";
856
+ 'import-x/no-relative-parent-imports': "off";
857
+ 'import-x/no-rename-default': "warn";
858
+ 'import-x/no-restricted-paths': "off";
859
+ 'import-x/no-self-import': "error";
860
+ 'import-x/no-unassigned-import': "off";
861
+ 'import-x/no-unresolved': ["error", {
862
+ commonjs: boolean;
863
+ caseSensitive: boolean;
864
+ }];
865
+ 'import-x/no-unused-modules': ["off", {
866
+ ignoreExports: never[];
867
+ missingExports: boolean;
868
+ unusedExports: boolean;
869
+ }];
870
+ 'import-x/no-useless-path-segments': ["error", {
871
+ noUselessIndex: boolean;
872
+ commonjs: boolean;
873
+ }];
874
+ 'import-x/no-webpack-loader-syntax': "error";
875
+ 'import-x/order': ["error", {
876
+ groups: string[][];
877
+ }];
878
+ 'import-x/prefer-default-export': "error";
879
+ 'import-x/unambiguous': "off";
880
+ };
881
+ files?: Array<string | string[]>;
882
+ ignores?: string[];
883
+ language?: string;
884
+ linterOptions?: Linter.LinterOptions;
885
+ processor?: string | Linter.Processor;
886
+ plugins?: Record<string, import("eslint").ESLint.Plugin>;
887
+ } | {
888
+ name: string;
889
+ languageOptions: {
890
+ globals: {
891
+ AbortController: false;
892
+ AbortSignal: false;
893
+ atob: false;
894
+ Blob: false;
895
+ BroadcastChannel: false;
896
+ btoa: false;
897
+ Buffer: false;
898
+ ByteLengthQueuingStrategy: false;
899
+ clearImmediate: false;
900
+ clearInterval: false;
901
+ clearTimeout: false;
902
+ CloseEvent: false;
903
+ CompressionStream: false;
904
+ console: false;
905
+ CountQueuingStrategy: false;
906
+ crypto: false;
907
+ Crypto: false;
908
+ CryptoKey: false;
909
+ CustomEvent: false;
910
+ DecompressionStream: false;
911
+ DOMException: false;
912
+ Event: false;
913
+ EventTarget: false;
914
+ fetch: false;
915
+ File: false;
916
+ FormData: false;
917
+ global: false;
918
+ Headers: false;
919
+ MessageChannel: false;
920
+ MessageEvent: false;
921
+ MessagePort: false;
922
+ navigator: false;
923
+ Navigator: false;
924
+ performance: false;
925
+ Performance: false;
926
+ PerformanceEntry: false;
927
+ PerformanceMark: false;
928
+ PerformanceMeasure: false;
929
+ PerformanceObserver: false;
930
+ PerformanceObserverEntryList: false;
931
+ PerformanceResourceTiming: false;
932
+ process: false;
933
+ queueMicrotask: false;
934
+ ReadableByteStreamController: false;
935
+ ReadableStream: false;
936
+ ReadableStreamBYOBReader: false;
937
+ ReadableStreamBYOBRequest: false;
938
+ ReadableStreamDefaultController: false;
939
+ ReadableStreamDefaultReader: false;
940
+ Request: false;
941
+ Response: false;
942
+ setImmediate: false;
943
+ setInterval: false;
944
+ setTimeout: false;
945
+ structuredClone: false;
946
+ SubtleCrypto: false;
947
+ TextDecoder: false;
948
+ TextDecoderStream: false;
949
+ TextEncoder: false;
950
+ TextEncoderStream: false;
951
+ TransformStream: false;
952
+ TransformStreamDefaultController: false;
953
+ URL: false;
954
+ URLSearchParams: false;
955
+ WebAssembly: false;
956
+ WebSocket: false;
957
+ WritableStream: false;
958
+ WritableStreamDefaultController: false;
959
+ WritableStreamDefaultWriter: false;
960
+ };
961
+ };
962
+ rules: {
963
+ 'callback-return': "off";
964
+ 'global-require': "error";
965
+ 'handle-callback-err': "off";
966
+ 'no-buffer-constructor': "error";
967
+ 'no-mixed-requires': ["off", boolean];
968
+ 'no-new-require': "error";
969
+ 'no-path-concat': "error";
970
+ 'no-process-env': "off";
971
+ 'no-process-exit': "off";
972
+ 'no-restricted-modules': "off";
973
+ 'no-sync': "off";
974
+ };
975
+ } | {
976
+ name: string;
977
+ rules: {
978
+ strict: ["error", string];
979
+ };
980
+ } | {
981
+ name: string;
982
+ plugins: {
983
+ react: {
984
+ deprecatedRules: Partial<{
985
+ 'boolean-prop-naming': import("eslint").Rule.RuleModule;
986
+ 'button-has-type': import("eslint").Rule.RuleModule;
987
+ 'checked-requires-onchange-or-readonly': import("eslint").Rule.RuleModule;
988
+ 'default-props-match-prop-types': import("eslint").Rule.RuleModule;
989
+ 'destructuring-assignment': import("eslint").Rule.RuleModule;
990
+ 'display-name': import("eslint").Rule.RuleModule;
991
+ 'forbid-component-props': import("eslint").Rule.RuleModule;
992
+ 'forbid-dom-props': import("eslint").Rule.RuleModule;
993
+ 'forbid-elements': import("eslint").Rule.RuleModule;
994
+ 'forbid-foreign-prop-types': import("eslint").Rule.RuleModule;
995
+ 'forbid-prop-types': import("eslint").Rule.RuleModule;
996
+ 'forward-ref-uses-ref': import("eslint").Rule.RuleModule;
997
+ 'function-component-definition': import("eslint").Rule.RuleModule;
998
+ 'hook-use-state': import("eslint").Rule.RuleModule;
999
+ 'iframe-missing-sandbox': import("eslint").Rule.RuleModule;
1000
+ 'jsx-boolean-value': import("eslint").Rule.RuleModule;
1001
+ 'jsx-child-element-spacing': import("eslint").Rule.RuleModule;
1002
+ 'jsx-closing-bracket-location': import("eslint").Rule.RuleModule;
1003
+ 'jsx-closing-tag-location': import("eslint").Rule.RuleModule;
1004
+ 'jsx-curly-spacing': import("eslint").Rule.RuleModule;
1005
+ 'jsx-curly-newline': import("eslint").Rule.RuleModule;
1006
+ 'jsx-equals-spacing': import("eslint").Rule.RuleModule;
1007
+ 'jsx-filename-extension': import("eslint").Rule.RuleModule;
1008
+ 'jsx-first-prop-new-line': import("eslint").Rule.RuleModule;
1009
+ 'jsx-handler-names': import("eslint").Rule.RuleModule;
1010
+ 'jsx-indent': import("eslint").Rule.RuleModule;
1011
+ 'jsx-indent-props': import("eslint").Rule.RuleModule;
1012
+ 'jsx-key': import("eslint").Rule.RuleModule;
1013
+ 'jsx-max-depth': import("eslint").Rule.RuleModule;
1014
+ 'jsx-max-props-per-line': import("eslint").Rule.RuleModule;
1015
+ 'jsx-newline': import("eslint").Rule.RuleModule;
1016
+ 'jsx-no-bind': import("eslint").Rule.RuleModule;
1017
+ 'jsx-no-comment-textnodes': import("eslint").Rule.RuleModule;
1018
+ 'jsx-no-constructed-context-values': import("eslint").Rule.RuleModule;
1019
+ 'jsx-no-duplicate-props': import("eslint").Rule.RuleModule;
1020
+ 'jsx-no-leaked-render': import("eslint").Rule.RuleModule;
1021
+ 'jsx-no-literals': import("eslint").Rule.RuleModule;
1022
+ 'jsx-no-script-url': import("eslint").Rule.RuleModule;
1023
+ 'jsx-no-target-blank': import("eslint").Rule.RuleModule;
1024
+ 'jsx-no-useless-fragment': import("eslint").Rule.RuleModule;
1025
+ 'jsx-one-expression-per-line': import("eslint").Rule.RuleModule;
1026
+ 'jsx-no-undef': import("eslint").Rule.RuleModule;
1027
+ 'jsx-curly-brace-presence': import("eslint").Rule.RuleModule;
1028
+ 'jsx-pascal-case': import("eslint").Rule.RuleModule;
1029
+ 'jsx-fragments': import("eslint").Rule.RuleModule;
1030
+ 'jsx-props-no-multi-spaces': import("eslint").Rule.RuleModule;
1031
+ 'jsx-props-no-spreading': import("eslint").Rule.RuleModule;
1032
+ 'jsx-props-no-spread-multi': import("eslint").Rule.RuleModule;
1033
+ 'jsx-sort-default-props': import("eslint").Rule.RuleModule;
1034
+ 'jsx-sort-props': import("eslint").Rule.RuleModule;
1035
+ 'jsx-space-before-closing': import("eslint").Rule.RuleModule;
1036
+ 'jsx-tag-spacing': import("eslint").Rule.RuleModule;
1037
+ 'jsx-uses-react': import("eslint").Rule.RuleModule;
1038
+ 'jsx-uses-vars': import("eslint").Rule.RuleModule;
1039
+ 'jsx-wrap-multilines': import("eslint").Rule.RuleModule;
1040
+ 'no-invalid-html-attribute': import("eslint").Rule.RuleModule;
1041
+ 'no-access-state-in-setstate': import("eslint").Rule.RuleModule;
1042
+ 'no-adjacent-inline-elements': import("eslint").Rule.RuleModule;
1043
+ 'no-array-index-key': import("eslint").Rule.RuleModule;
1044
+ 'no-arrow-function-lifecycle': import("eslint").Rule.RuleModule;
1045
+ 'no-children-prop': import("eslint").Rule.RuleModule;
1046
+ 'no-danger': import("eslint").Rule.RuleModule;
1047
+ 'no-danger-with-children': import("eslint").Rule.RuleModule;
1048
+ 'no-deprecated': import("eslint").Rule.RuleModule;
1049
+ 'no-did-mount-set-state': import("eslint").Rule.RuleModule;
1050
+ 'no-did-update-set-state': import("eslint").Rule.RuleModule;
1051
+ 'no-direct-mutation-state': import("eslint").Rule.RuleModule;
1052
+ 'no-find-dom-node': import("eslint").Rule.RuleModule;
1053
+ 'no-is-mounted': import("eslint").Rule.RuleModule;
1054
+ 'no-multi-comp': import("eslint").Rule.RuleModule;
1055
+ 'no-namespace': import("eslint").Rule.RuleModule;
1056
+ 'no-set-state': import("eslint").Rule.RuleModule;
1057
+ 'no-string-refs': import("eslint").Rule.RuleModule;
1058
+ 'no-redundant-should-component-update': import("eslint").Rule.RuleModule;
1059
+ 'no-render-return-value': import("eslint").Rule.RuleModule;
1060
+ 'no-this-in-sfc': import("eslint").Rule.RuleModule;
1061
+ 'no-typos': import("eslint").Rule.RuleModule;
1062
+ 'no-unescaped-entities': import("eslint").Rule.RuleModule;
1063
+ 'no-unknown-property': import("eslint").Rule.RuleModule;
1064
+ 'no-unsafe': import("eslint").Rule.RuleModule;
1065
+ 'no-unstable-nested-components': import("eslint").Rule.RuleModule;
1066
+ 'no-unused-class-component-methods': import("eslint").Rule.RuleModule;
1067
+ 'no-unused-prop-types': import("eslint").Rule.RuleModule;
1068
+ 'no-unused-state': import("eslint").Rule.RuleModule;
1069
+ 'no-object-type-as-default-prop': import("eslint").Rule.RuleModule;
1070
+ 'no-will-update-set-state': import("eslint").Rule.RuleModule;
1071
+ 'prefer-es6-class': import("eslint").Rule.RuleModule;
1072
+ 'prefer-exact-props': import("eslint").Rule.RuleModule;
1073
+ 'prefer-read-only-props': import("eslint").Rule.RuleModule;
1074
+ 'prefer-stateless-function': import("eslint").Rule.RuleModule;
1075
+ 'prop-types': import("eslint").Rule.RuleModule;
1076
+ 'react-in-jsx-scope': import("eslint").Rule.RuleModule;
1077
+ 'require-default-props': import("eslint").Rule.RuleModule;
1078
+ 'require-optimization': import("eslint").Rule.RuleModule;
1079
+ 'require-render-return': import("eslint").Rule.RuleModule;
1080
+ 'self-closing-comp': import("eslint").Rule.RuleModule;
1081
+ 'sort-comp': import("eslint").Rule.RuleModule;
1082
+ 'sort-default-props': import("eslint").Rule.RuleModule;
1083
+ 'sort-prop-types': import("eslint").Rule.RuleModule;
1084
+ 'state-in-constructor': import("eslint").Rule.RuleModule;
1085
+ 'static-property-placement': import("eslint").Rule.RuleModule;
1086
+ 'style-prop-object': import("eslint").Rule.RuleModule;
1087
+ 'void-dom-elements-no-children': import("eslint").Rule.RuleModule;
1088
+ }>;
1089
+ rules: {
1090
+ 'boolean-prop-naming': import("eslint").Rule.RuleModule;
1091
+ 'button-has-type': import("eslint").Rule.RuleModule;
1092
+ 'checked-requires-onchange-or-readonly': import("eslint").Rule.RuleModule;
1093
+ 'default-props-match-prop-types': import("eslint").Rule.RuleModule;
1094
+ 'destructuring-assignment': import("eslint").Rule.RuleModule;
1095
+ 'display-name': import("eslint").Rule.RuleModule;
1096
+ 'forbid-component-props': import("eslint").Rule.RuleModule;
1097
+ 'forbid-dom-props': import("eslint").Rule.RuleModule;
1098
+ 'forbid-elements': import("eslint").Rule.RuleModule;
1099
+ 'forbid-foreign-prop-types': import("eslint").Rule.RuleModule;
1100
+ 'forbid-prop-types': import("eslint").Rule.RuleModule;
1101
+ 'forward-ref-uses-ref': import("eslint").Rule.RuleModule;
1102
+ 'function-component-definition': import("eslint").Rule.RuleModule;
1103
+ 'hook-use-state': import("eslint").Rule.RuleModule;
1104
+ 'iframe-missing-sandbox': import("eslint").Rule.RuleModule;
1105
+ 'jsx-boolean-value': import("eslint").Rule.RuleModule;
1106
+ 'jsx-child-element-spacing': import("eslint").Rule.RuleModule;
1107
+ 'jsx-closing-bracket-location': import("eslint").Rule.RuleModule;
1108
+ 'jsx-closing-tag-location': import("eslint").Rule.RuleModule;
1109
+ 'jsx-curly-spacing': import("eslint").Rule.RuleModule;
1110
+ 'jsx-curly-newline': import("eslint").Rule.RuleModule;
1111
+ 'jsx-equals-spacing': import("eslint").Rule.RuleModule;
1112
+ 'jsx-filename-extension': import("eslint").Rule.RuleModule;
1113
+ 'jsx-first-prop-new-line': import("eslint").Rule.RuleModule;
1114
+ 'jsx-handler-names': import("eslint").Rule.RuleModule;
1115
+ 'jsx-indent': import("eslint").Rule.RuleModule;
1116
+ 'jsx-indent-props': import("eslint").Rule.RuleModule;
1117
+ 'jsx-key': import("eslint").Rule.RuleModule;
1118
+ 'jsx-max-depth': import("eslint").Rule.RuleModule;
1119
+ 'jsx-max-props-per-line': import("eslint").Rule.RuleModule;
1120
+ 'jsx-newline': import("eslint").Rule.RuleModule;
1121
+ 'jsx-no-bind': import("eslint").Rule.RuleModule;
1122
+ 'jsx-no-comment-textnodes': import("eslint").Rule.RuleModule;
1123
+ 'jsx-no-constructed-context-values': import("eslint").Rule.RuleModule;
1124
+ 'jsx-no-duplicate-props': import("eslint").Rule.RuleModule;
1125
+ 'jsx-no-leaked-render': import("eslint").Rule.RuleModule;
1126
+ 'jsx-no-literals': import("eslint").Rule.RuleModule;
1127
+ 'jsx-no-script-url': import("eslint").Rule.RuleModule;
1128
+ 'jsx-no-target-blank': import("eslint").Rule.RuleModule;
1129
+ 'jsx-no-useless-fragment': import("eslint").Rule.RuleModule;
1130
+ 'jsx-one-expression-per-line': import("eslint").Rule.RuleModule;
1131
+ 'jsx-no-undef': import("eslint").Rule.RuleModule;
1132
+ 'jsx-curly-brace-presence': import("eslint").Rule.RuleModule;
1133
+ 'jsx-pascal-case': import("eslint").Rule.RuleModule;
1134
+ 'jsx-fragments': import("eslint").Rule.RuleModule;
1135
+ 'jsx-props-no-multi-spaces': import("eslint").Rule.RuleModule;
1136
+ 'jsx-props-no-spreading': import("eslint").Rule.RuleModule;
1137
+ 'jsx-props-no-spread-multi': import("eslint").Rule.RuleModule;
1138
+ 'jsx-sort-default-props': import("eslint").Rule.RuleModule;
1139
+ 'jsx-sort-props': import("eslint").Rule.RuleModule;
1140
+ 'jsx-space-before-closing': import("eslint").Rule.RuleModule;
1141
+ 'jsx-tag-spacing': import("eslint").Rule.RuleModule;
1142
+ 'jsx-uses-react': import("eslint").Rule.RuleModule;
1143
+ 'jsx-uses-vars': import("eslint").Rule.RuleModule;
1144
+ 'jsx-wrap-multilines': import("eslint").Rule.RuleModule;
1145
+ 'no-invalid-html-attribute': import("eslint").Rule.RuleModule;
1146
+ 'no-access-state-in-setstate': import("eslint").Rule.RuleModule;
1147
+ 'no-adjacent-inline-elements': import("eslint").Rule.RuleModule;
1148
+ 'no-array-index-key': import("eslint").Rule.RuleModule;
1149
+ 'no-arrow-function-lifecycle': import("eslint").Rule.RuleModule;
1150
+ 'no-children-prop': import("eslint").Rule.RuleModule;
1151
+ 'no-danger': import("eslint").Rule.RuleModule;
1152
+ 'no-danger-with-children': import("eslint").Rule.RuleModule;
1153
+ 'no-deprecated': import("eslint").Rule.RuleModule;
1154
+ 'no-did-mount-set-state': import("eslint").Rule.RuleModule;
1155
+ 'no-did-update-set-state': import("eslint").Rule.RuleModule;
1156
+ 'no-direct-mutation-state': import("eslint").Rule.RuleModule;
1157
+ 'no-find-dom-node': import("eslint").Rule.RuleModule;
1158
+ 'no-is-mounted': import("eslint").Rule.RuleModule;
1159
+ 'no-multi-comp': import("eslint").Rule.RuleModule;
1160
+ 'no-namespace': import("eslint").Rule.RuleModule;
1161
+ 'no-set-state': import("eslint").Rule.RuleModule;
1162
+ 'no-string-refs': import("eslint").Rule.RuleModule;
1163
+ 'no-redundant-should-component-update': import("eslint").Rule.RuleModule;
1164
+ 'no-render-return-value': import("eslint").Rule.RuleModule;
1165
+ 'no-this-in-sfc': import("eslint").Rule.RuleModule;
1166
+ 'no-typos': import("eslint").Rule.RuleModule;
1167
+ 'no-unescaped-entities': import("eslint").Rule.RuleModule;
1168
+ 'no-unknown-property': import("eslint").Rule.RuleModule;
1169
+ 'no-unsafe': import("eslint").Rule.RuleModule;
1170
+ 'no-unstable-nested-components': import("eslint").Rule.RuleModule;
1171
+ 'no-unused-class-component-methods': import("eslint").Rule.RuleModule;
1172
+ 'no-unused-prop-types': import("eslint").Rule.RuleModule;
1173
+ 'no-unused-state': import("eslint").Rule.RuleModule;
1174
+ 'no-object-type-as-default-prop': import("eslint").Rule.RuleModule;
1175
+ 'no-will-update-set-state': import("eslint").Rule.RuleModule;
1176
+ 'prefer-es6-class': import("eslint").Rule.RuleModule;
1177
+ 'prefer-exact-props': import("eslint").Rule.RuleModule;
1178
+ 'prefer-read-only-props': import("eslint").Rule.RuleModule;
1179
+ 'prefer-stateless-function': import("eslint").Rule.RuleModule;
1180
+ 'prop-types': import("eslint").Rule.RuleModule;
1181
+ 'react-in-jsx-scope': import("eslint").Rule.RuleModule;
1182
+ 'require-default-props': import("eslint").Rule.RuleModule;
1183
+ 'require-optimization': import("eslint").Rule.RuleModule;
1184
+ 'require-render-return': import("eslint").Rule.RuleModule;
1185
+ 'self-closing-comp': import("eslint").Rule.RuleModule;
1186
+ 'sort-comp': import("eslint").Rule.RuleModule;
1187
+ 'sort-default-props': import("eslint").Rule.RuleModule;
1188
+ 'sort-prop-types': import("eslint").Rule.RuleModule;
1189
+ 'state-in-constructor': import("eslint").Rule.RuleModule;
1190
+ 'static-property-placement': import("eslint").Rule.RuleModule;
1191
+ 'style-prop-object': import("eslint").Rule.RuleModule;
1192
+ 'void-dom-elements-no-children': import("eslint").Rule.RuleModule;
1193
+ };
1194
+ configs: {
1195
+ recommended: {
1196
+ plugins: ["react"];
1197
+ parserOptions: {
1198
+ ecmaFeatures: {
1199
+ jsx: boolean;
1200
+ };
1201
+ };
1202
+ rules: {
1203
+ "react/display-name": 2;
1204
+ "react/jsx-key": 2;
1205
+ "react/jsx-no-comment-textnodes": 2;
1206
+ "react/jsx-no-duplicate-props": 2;
1207
+ "react/jsx-no-target-blank": 2;
1208
+ "react/jsx-no-undef": 2;
1209
+ "react/jsx-uses-react": 2;
1210
+ "react/jsx-uses-vars": 2;
1211
+ "react/no-children-prop": 2;
1212
+ "react/no-danger-with-children": 2;
1213
+ "react/no-deprecated": 2;
1214
+ "react/no-direct-mutation-state": 2;
1215
+ "react/no-find-dom-node": 2;
1216
+ "react/no-is-mounted": 2;
1217
+ "react/no-render-return-value": 2;
1218
+ "react/no-string-refs": 2;
1219
+ "react/no-unescaped-entities": 2;
1220
+ "react/no-unknown-property": 2;
1221
+ "react/no-unsafe": 0;
1222
+ "react/prop-types": 2;
1223
+ "react/react-in-jsx-scope": 2;
1224
+ "react/require-render-return": 2;
1225
+ };
1226
+ };
1227
+ all: {
1228
+ plugins: ["react"];
1229
+ parserOptions: {
1230
+ ecmaFeatures: {
1231
+ jsx: boolean;
1232
+ };
1233
+ };
1234
+ rules: Record<"boolean-prop-naming" | "button-has-type" | "checked-requires-onchange-or-readonly" | "default-props-match-prop-types" | "destructuring-assignment" | "display-name" | "forbid-component-props" | "forbid-dom-props" | "forbid-elements" | "forbid-foreign-prop-types" | "forbid-prop-types" | "prop-types" | "forward-ref-uses-ref" | "function-component-definition" | "hook-use-state" | "iframe-missing-sandbox" | "jsx-boolean-value" | "jsx-child-element-spacing" | "jsx-closing-bracket-location" | "jsx-closing-tag-location" | "jsx-curly-spacing" | "jsx-curly-newline" | "jsx-equals-spacing" | "jsx-filename-extension" | "jsx-first-prop-new-line" | "jsx-handler-names" | "jsx-indent" | "jsx-indent-props" | "jsx-key" | "jsx-max-depth" | "jsx-max-props-per-line" | "jsx-newline" | "jsx-no-bind" | "jsx-no-comment-textnodes" | "jsx-no-constructed-context-values" | "jsx-no-duplicate-props" | "jsx-no-leaked-render" | "jsx-no-literals" | "jsx-no-script-url" | "jsx-no-target-blank" | "jsx-no-useless-fragment" | "jsx-one-expression-per-line" | "jsx-no-undef" | "jsx-curly-brace-presence" | "jsx-pascal-case" | "jsx-fragments" | "jsx-props-no-multi-spaces" | "jsx-props-no-spreading" | "jsx-props-no-spread-multi" | "sort-default-props" | "jsx-sort-default-props" | "jsx-sort-props" | "jsx-tag-spacing" | "jsx-space-before-closing" | "jsx-uses-react" | "jsx-uses-vars" | "jsx-wrap-multilines" | "no-invalid-html-attribute" | "no-access-state-in-setstate" | "no-adjacent-inline-elements" | "no-array-index-key" | "no-arrow-function-lifecycle" | "no-children-prop" | "no-danger" | "no-danger-with-children" | "no-deprecated" | "no-direct-mutation-state" | "no-find-dom-node" | "no-is-mounted" | "no-multi-comp" | "no-namespace" | "no-set-state" | "no-string-refs" | "no-redundant-should-component-update" | "no-render-return-value" | "no-this-in-sfc" | "no-typos" | "no-unescaped-entities" | "no-unknown-property" | "no-unsafe" | "no-unstable-nested-components" | "no-unused-class-component-methods" | "no-unused-prop-types" | "no-unused-state" | "no-object-type-as-default-prop" | "prefer-es6-class" | "prefer-exact-props" | "prefer-read-only-props" | "prefer-stateless-function" | "react-in-jsx-scope" | "require-default-props" | "require-optimization" | "require-render-return" | "self-closing-comp" | "sort-comp" | "sort-prop-types" | "state-in-constructor" | "static-property-placement" | "style-prop-object" | "void-dom-elements-no-children" | "no-did-mount-set-state" | "no-did-update-set-state" | "no-will-update-set-state", 2 | "error">;
1235
+ };
1236
+ 'jsx-runtime': {
1237
+ plugins: ["react"];
1238
+ parserOptions: {
1239
+ ecmaFeatures: {
1240
+ jsx: boolean;
1241
+ };
1242
+ jsxPragma: any;
1243
+ };
1244
+ rules: {
1245
+ "react/react-in-jsx-scope": 0;
1246
+ "react/jsx-uses-react": 0;
1247
+ };
1248
+ };
1249
+ flat: Record<string, import("eslint-plugin-react").ReactFlatConfig>;
1250
+ } & {
1251
+ flat: Record<string, import("eslint-plugin-react").ReactFlatConfig>;
1252
+ };
1253
+ };
1254
+ };
1255
+ languageOptions: {
1256
+ parserOptions: {
1257
+ ecmaFeatures: {
1258
+ jsx: true;
1259
+ };
1260
+ };
1261
+ globals: {
1262
+ AbortController: false;
1263
+ AbortSignal: false;
1264
+ AbsoluteOrientationSensor: false;
1265
+ AbstractRange: false;
1266
+ Accelerometer: false;
1267
+ addEventListener: false;
1268
+ ai: false;
1269
+ AI: false;
1270
+ AITextSession: false;
1271
+ alert: false;
1272
+ AnalyserNode: false;
1273
+ Animation: false;
1274
+ AnimationEffect: false;
1275
+ AnimationEvent: false;
1276
+ AnimationPlaybackEvent: false;
1277
+ AnimationTimeline: false;
1278
+ atob: false;
1279
+ Attr: false;
1280
+ Audio: false;
1281
+ AudioBuffer: false;
1282
+ AudioBufferSourceNode: false;
1283
+ AudioContext: false;
1284
+ AudioData: false;
1285
+ AudioDecoder: false;
1286
+ AudioDestinationNode: false;
1287
+ AudioEncoder: false;
1288
+ AudioListener: false;
1289
+ AudioNode: false;
1290
+ AudioParam: false;
1291
+ AudioParamMap: false;
1292
+ AudioProcessingEvent: false;
1293
+ AudioScheduledSourceNode: false;
1294
+ AudioSinkInfo: false;
1295
+ AudioWorklet: false;
1296
+ AudioWorkletGlobalScope: false;
1297
+ AudioWorkletNode: false;
1298
+ AudioWorkletProcessor: false;
1299
+ AuthenticatorAssertionResponse: false;
1300
+ AuthenticatorAttestationResponse: false;
1301
+ AuthenticatorResponse: false;
1302
+ BackgroundFetchManager: false;
1303
+ BackgroundFetchRecord: false;
1304
+ BackgroundFetchRegistration: false;
1305
+ BarcodeDetector: false;
1306
+ BarProp: false;
1307
+ BaseAudioContext: false;
1308
+ BatteryManager: false;
1309
+ BeforeUnloadEvent: false;
1310
+ BiquadFilterNode: false;
1311
+ Blob: false;
1312
+ BlobEvent: false;
1313
+ Bluetooth: false;
1314
+ BluetoothCharacteristicProperties: false;
1315
+ BluetoothDevice: false;
1316
+ BluetoothRemoteGATTCharacteristic: false;
1317
+ BluetoothRemoteGATTDescriptor: false;
1318
+ BluetoothRemoteGATTServer: false;
1319
+ BluetoothRemoteGATTService: false;
1320
+ BluetoothUUID: false;
1321
+ blur: false;
1322
+ BroadcastChannel: false;
1323
+ BrowserCaptureMediaStreamTrack: false;
1324
+ btoa: false;
1325
+ ByteLengthQueuingStrategy: false;
1326
+ Cache: false;
1327
+ caches: false;
1328
+ CacheStorage: false;
1329
+ cancelAnimationFrame: false;
1330
+ cancelIdleCallback: false;
1331
+ CanvasCaptureMediaStream: false;
1332
+ CanvasCaptureMediaStreamTrack: false;
1333
+ CanvasGradient: false;
1334
+ CanvasPattern: false;
1335
+ CanvasRenderingContext2D: false;
1336
+ CaptureController: false;
1337
+ CaretPosition: false;
1338
+ CDATASection: false;
1339
+ ChannelMergerNode: false;
1340
+ ChannelSplitterNode: false;
1341
+ ChapterInformation: false;
1342
+ CharacterBoundsUpdateEvent: false;
1343
+ CharacterData: false;
1344
+ clearInterval: false;
1345
+ clearTimeout: false;
1346
+ clientInformation: false;
1347
+ Clipboard: false;
1348
+ ClipboardEvent: false;
1349
+ ClipboardItem: false;
1350
+ close: false;
1351
+ closed: false;
1352
+ CloseEvent: false;
1353
+ CloseWatcher: false;
1354
+ Comment: false;
1355
+ CompositionEvent: false;
1356
+ CompressionStream: false;
1357
+ confirm: false;
1358
+ console: false;
1359
+ ConstantSourceNode: false;
1360
+ ContentVisibilityAutoStateChangeEvent: false;
1361
+ ConvolverNode: false;
1362
+ CookieChangeEvent: false;
1363
+ CookieDeprecationLabel: false;
1364
+ cookieStore: false;
1365
+ CookieStore: false;
1366
+ CookieStoreManager: false;
1367
+ CountQueuingStrategy: false;
1368
+ createImageBitmap: false;
1369
+ Credential: false;
1370
+ credentialless: false;
1371
+ CredentialsContainer: false;
1372
+ CropTarget: false;
1373
+ crossOriginIsolated: false;
1374
+ crypto: false;
1375
+ Crypto: false;
1376
+ CryptoKey: false;
1377
+ CSS: false;
1378
+ CSSAnimation: false;
1379
+ CSSConditionRule: false;
1380
+ CSSContainerRule: false;
1381
+ CSSCounterStyleRule: false;
1382
+ CSSFontFaceRule: false;
1383
+ CSSFontFeatureValuesRule: false;
1384
+ CSSFontPaletteValuesRule: false;
1385
+ CSSGroupingRule: false;
1386
+ CSSImageValue: false;
1387
+ CSSImportRule: false;
1388
+ CSSKeyframeRule: false;
1389
+ CSSKeyframesRule: false;
1390
+ CSSKeywordValue: false;
1391
+ CSSLayerBlockRule: false;
1392
+ CSSLayerStatementRule: false;
1393
+ CSSMarginRule: false;
1394
+ CSSMathClamp: false;
1395
+ CSSMathInvert: false;
1396
+ CSSMathMax: false;
1397
+ CSSMathMin: false;
1398
+ CSSMathNegate: false;
1399
+ CSSMathProduct: false;
1400
+ CSSMathSum: false;
1401
+ CSSMathValue: false;
1402
+ CSSMatrixComponent: false;
1403
+ CSSMediaRule: false;
1404
+ CSSNamespaceRule: false;
1405
+ CSSNestedDeclarations: false;
1406
+ CSSNumericArray: false;
1407
+ CSSNumericValue: false;
1408
+ CSSPageDescriptors: false;
1409
+ CSSPageRule: false;
1410
+ CSSPerspective: false;
1411
+ CSSPositionTryDescriptors: false;
1412
+ CSSPositionTryRule: false;
1413
+ CSSPositionValue: false;
1414
+ CSSPropertyRule: false;
1415
+ CSSRotate: false;
1416
+ CSSRule: false;
1417
+ CSSRuleList: false;
1418
+ CSSScale: false;
1419
+ CSSScopeRule: false;
1420
+ CSSSkew: false;
1421
+ CSSSkewX: false;
1422
+ CSSSkewY: false;
1423
+ CSSStartingStyleRule: false;
1424
+ CSSStyleDeclaration: false;
1425
+ CSSStyleRule: false;
1426
+ CSSStyleSheet: false;
1427
+ CSSStyleValue: false;
1428
+ CSSSupportsRule: false;
1429
+ CSSTransformComponent: false;
1430
+ CSSTransformValue: false;
1431
+ CSSTransition: false;
1432
+ CSSTranslate: false;
1433
+ CSSUnitValue: false;
1434
+ CSSUnparsedValue: false;
1435
+ CSSVariableReferenceValue: false;
1436
+ CSSViewTransitionRule: false;
1437
+ currentFrame: false;
1438
+ currentTime: false;
1439
+ CustomElementRegistry: false;
1440
+ customElements: false;
1441
+ CustomEvent: false;
1442
+ CustomStateSet: false;
1443
+ DataTransfer: false;
1444
+ DataTransferItem: false;
1445
+ DataTransferItemList: false;
1446
+ DecompressionStream: false;
1447
+ DelayNode: false;
1448
+ DelegatedInkTrailPresenter: false;
1449
+ DeviceMotionEvent: false;
1450
+ DeviceMotionEventAcceleration: false;
1451
+ DeviceMotionEventRotationRate: false;
1452
+ DeviceOrientationEvent: false;
1453
+ devicePixelRatio: false;
1454
+ dispatchEvent: false;
1455
+ document: false;
1456
+ Document: false;
1457
+ DocumentFragment: false;
1458
+ documentPictureInPicture: false;
1459
+ DocumentPictureInPicture: false;
1460
+ DocumentPictureInPictureEvent: false;
1461
+ DocumentTimeline: false;
1462
+ DocumentType: false;
1463
+ DOMError: false;
1464
+ DOMException: false;
1465
+ DOMImplementation: false;
1466
+ DOMMatrix: false;
1467
+ DOMMatrixReadOnly: false;
1468
+ DOMParser: false;
1469
+ DOMPoint: false;
1470
+ DOMPointReadOnly: false;
1471
+ DOMQuad: false;
1472
+ DOMRect: false;
1473
+ DOMRectList: false;
1474
+ DOMRectReadOnly: false;
1475
+ DOMStringList: false;
1476
+ DOMStringMap: false;
1477
+ DOMTokenList: false;
1478
+ DragEvent: false;
1479
+ DynamicsCompressorNode: false;
1480
+ EditContext: false;
1481
+ Element: false;
1482
+ ElementInternals: false;
1483
+ EncodedAudioChunk: false;
1484
+ EncodedVideoChunk: false;
1485
+ ErrorEvent: false;
1486
+ event: false;
1487
+ Event: false;
1488
+ EventCounts: false;
1489
+ EventSource: false;
1490
+ EventTarget: false;
1491
+ external: false;
1492
+ External: false;
1493
+ EyeDropper: false;
1494
+ FeaturePolicy: false;
1495
+ FederatedCredential: false;
1496
+ fence: false;
1497
+ Fence: false;
1498
+ FencedFrameConfig: false;
1499
+ fetch: false;
1500
+ fetchLater: false;
1501
+ FetchLaterResult: false;
1502
+ File: false;
1503
+ FileList: false;
1504
+ FileReader: false;
1505
+ FileSystem: false;
1506
+ FileSystemDirectoryEntry: false;
1507
+ FileSystemDirectoryHandle: false;
1508
+ FileSystemDirectoryReader: false;
1509
+ FileSystemEntry: false;
1510
+ FileSystemFileEntry: false;
1511
+ FileSystemFileHandle: false;
1512
+ FileSystemHandle: false;
1513
+ FileSystemWritableFileStream: false;
1514
+ find: false;
1515
+ Float16Array: false;
1516
+ focus: false;
1517
+ FocusEvent: false;
1518
+ FontData: false;
1519
+ FontFace: false;
1520
+ FontFaceSet: false;
1521
+ FontFaceSetLoadEvent: false;
1522
+ FormData: false;
1523
+ FormDataEvent: false;
1524
+ FragmentDirective: false;
1525
+ frameElement: false;
1526
+ frames: false;
1527
+ GainNode: false;
1528
+ Gamepad: false;
1529
+ GamepadAxisMoveEvent: false;
1530
+ GamepadButton: false;
1531
+ GamepadButtonEvent: false;
1532
+ GamepadEvent: false;
1533
+ GamepadHapticActuator: false;
1534
+ GamepadPose: false;
1535
+ Geolocation: false;
1536
+ GeolocationCoordinates: false;
1537
+ GeolocationPosition: false;
1538
+ GeolocationPositionError: false;
1539
+ getComputedStyle: false;
1540
+ getScreenDetails: false;
1541
+ getSelection: false;
1542
+ GPU: false;
1543
+ GPUAdapter: false;
1544
+ GPUAdapterInfo: false;
1545
+ GPUBindGroup: false;
1546
+ GPUBindGroupLayout: false;
1547
+ GPUBuffer: false;
1548
+ GPUBufferUsage: false;
1549
+ GPUCanvasContext: false;
1550
+ GPUColorWrite: false;
1551
+ GPUCommandBuffer: false;
1552
+ GPUCommandEncoder: false;
1553
+ GPUCompilationInfo: false;
1554
+ GPUCompilationMessage: false;
1555
+ GPUComputePassEncoder: false;
1556
+ GPUComputePipeline: false;
1557
+ GPUDevice: false;
1558
+ GPUDeviceLostInfo: false;
1559
+ GPUError: false;
1560
+ GPUExternalTexture: false;
1561
+ GPUInternalError: false;
1562
+ GPUMapMode: false;
1563
+ GPUOutOfMemoryError: false;
1564
+ GPUPipelineError: false;
1565
+ GPUPipelineLayout: false;
1566
+ GPUQuerySet: false;
1567
+ GPUQueue: false;
1568
+ GPURenderBundle: false;
1569
+ GPURenderBundleEncoder: false;
1570
+ GPURenderPassEncoder: false;
1571
+ GPURenderPipeline: false;
1572
+ GPUSampler: false;
1573
+ GPUShaderModule: false;
1574
+ GPUShaderStage: false;
1575
+ GPUSupportedFeatures: false;
1576
+ GPUSupportedLimits: false;
1577
+ GPUTexture: false;
1578
+ GPUTextureUsage: false;
1579
+ GPUTextureView: false;
1580
+ GPUUncapturedErrorEvent: false;
1581
+ GPUValidationError: false;
1582
+ GravitySensor: false;
1583
+ Gyroscope: false;
1584
+ HashChangeEvent: false;
1585
+ Headers: false;
1586
+ HID: false;
1587
+ HIDConnectionEvent: false;
1588
+ HIDDevice: false;
1589
+ HIDInputReportEvent: false;
1590
+ Highlight: false;
1591
+ HighlightRegistry: false;
1592
+ history: false;
1593
+ History: false;
1594
+ HTMLAllCollection: false;
1595
+ HTMLAnchorElement: false;
1596
+ HTMLAreaElement: false;
1597
+ HTMLAudioElement: false;
1598
+ HTMLBaseElement: false;
1599
+ HTMLBodyElement: false;
1600
+ HTMLBRElement: false;
1601
+ HTMLButtonElement: false;
1602
+ HTMLCanvasElement: false;
1603
+ HTMLCollection: false;
1604
+ HTMLDataElement: false;
1605
+ HTMLDataListElement: false;
1606
+ HTMLDetailsElement: false;
1607
+ HTMLDialogElement: false;
1608
+ HTMLDirectoryElement: false;
1609
+ HTMLDivElement: false;
1610
+ HTMLDListElement: false;
1611
+ HTMLDocument: false;
1612
+ HTMLElement: false;
1613
+ HTMLEmbedElement: false;
1614
+ HTMLFencedFrameElement: false;
1615
+ HTMLFieldSetElement: false;
1616
+ HTMLFontElement: false;
1617
+ HTMLFormControlsCollection: false;
1618
+ HTMLFormElement: false;
1619
+ HTMLFrameElement: false;
1620
+ HTMLFrameSetElement: false;
1621
+ HTMLHeadElement: false;
1622
+ HTMLHeadingElement: false;
1623
+ HTMLHRElement: false;
1624
+ HTMLHtmlElement: false;
1625
+ HTMLIFrameElement: false;
1626
+ HTMLImageElement: false;
1627
+ HTMLInputElement: false;
1628
+ HTMLLabelElement: false;
1629
+ HTMLLegendElement: false;
1630
+ HTMLLIElement: false;
1631
+ HTMLLinkElement: false;
1632
+ HTMLMapElement: false;
1633
+ HTMLMarqueeElement: false;
1634
+ HTMLMediaElement: false;
1635
+ HTMLMenuElement: false;
1636
+ HTMLMetaElement: false;
1637
+ HTMLMeterElement: false;
1638
+ HTMLModElement: false;
1639
+ HTMLObjectElement: false;
1640
+ HTMLOListElement: false;
1641
+ HTMLOptGroupElement: false;
1642
+ HTMLOptionElement: false;
1643
+ HTMLOptionsCollection: false;
1644
+ HTMLOutputElement: false;
1645
+ HTMLParagraphElement: false;
1646
+ HTMLParamElement: false;
1647
+ HTMLPictureElement: false;
1648
+ HTMLPreElement: false;
1649
+ HTMLProgressElement: false;
1650
+ HTMLQuoteElement: false;
1651
+ HTMLScriptElement: false;
1652
+ HTMLSelectElement: false;
1653
+ HTMLSlotElement: false;
1654
+ HTMLSourceElement: false;
1655
+ HTMLSpanElement: false;
1656
+ HTMLStyleElement: false;
1657
+ HTMLTableCaptionElement: false;
1658
+ HTMLTableCellElement: false;
1659
+ HTMLTableColElement: false;
1660
+ HTMLTableElement: false;
1661
+ HTMLTableRowElement: false;
1662
+ HTMLTableSectionElement: false;
1663
+ HTMLTemplateElement: false;
1664
+ HTMLTextAreaElement: false;
1665
+ HTMLTimeElement: false;
1666
+ HTMLTitleElement: false;
1667
+ HTMLTrackElement: false;
1668
+ HTMLUListElement: false;
1669
+ HTMLUnknownElement: false;
1670
+ HTMLVideoElement: false;
1671
+ IDBCursor: false;
1672
+ IDBCursorWithValue: false;
1673
+ IDBDatabase: false;
1674
+ IDBFactory: false;
1675
+ IDBIndex: false;
1676
+ IDBKeyRange: false;
1677
+ IDBObjectStore: false;
1678
+ IDBOpenDBRequest: false;
1679
+ IDBRequest: false;
1680
+ IDBTransaction: false;
1681
+ IDBVersionChangeEvent: false;
1682
+ IdentityCredential: false;
1683
+ IdentityCredentialError: false;
1684
+ IdentityProvider: false;
1685
+ IdleDeadline: false;
1686
+ IdleDetector: false;
1687
+ IIRFilterNode: false;
1688
+ Image: false;
1689
+ ImageBitmap: false;
1690
+ ImageBitmapRenderingContext: false;
1691
+ ImageCapture: false;
1692
+ ImageData: false;
1693
+ ImageDecoder: false;
1694
+ ImageTrack: false;
1695
+ ImageTrackList: false;
1696
+ indexedDB: false;
1697
+ Ink: false;
1698
+ innerHeight: false;
1699
+ innerWidth: false;
1700
+ InputDeviceCapabilities: false;
1701
+ InputDeviceInfo: false;
1702
+ InputEvent: false;
1703
+ IntersectionObserver: false;
1704
+ IntersectionObserverEntry: false;
1705
+ isSecureContext: false;
1706
+ Keyboard: false;
1707
+ KeyboardEvent: false;
1708
+ KeyboardLayoutMap: false;
1709
+ KeyframeEffect: false;
1710
+ LargestContentfulPaint: false;
1711
+ LaunchParams: false;
1712
+ launchQueue: false;
1713
+ LaunchQueue: false;
1714
+ LayoutShift: false;
1715
+ LayoutShiftAttribution: false;
1716
+ length: false;
1717
+ LinearAccelerationSensor: false;
1718
+ localStorage: false;
1719
+ location: true;
1720
+ Location: false;
1721
+ locationbar: false;
1722
+ Lock: false;
1723
+ LockManager: false;
1724
+ matchMedia: false;
1725
+ MathMLElement: false;
1726
+ MediaCapabilities: false;
1727
+ MediaCapabilitiesInfo: false;
1728
+ MediaDeviceInfo: false;
1729
+ MediaDevices: false;
1730
+ MediaElementAudioSourceNode: false;
1731
+ MediaEncryptedEvent: false;
1732
+ MediaError: false;
1733
+ MediaKeyError: false;
1734
+ MediaKeyMessageEvent: false;
1735
+ MediaKeys: false;
1736
+ MediaKeySession: false;
1737
+ MediaKeyStatusMap: false;
1738
+ MediaKeySystemAccess: false;
1739
+ MediaList: false;
1740
+ MediaMetadata: false;
1741
+ MediaQueryList: false;
1742
+ MediaQueryListEvent: false;
1743
+ MediaRecorder: false;
1744
+ MediaRecorderErrorEvent: false;
1745
+ MediaSession: false;
1746
+ MediaSource: false;
1747
+ MediaSourceHandle: false;
1748
+ MediaStream: false;
1749
+ MediaStreamAudioDestinationNode: false;
1750
+ MediaStreamAudioSourceNode: false;
1751
+ MediaStreamEvent: false;
1752
+ MediaStreamTrack: false;
1753
+ MediaStreamTrackAudioSourceNode: false;
1754
+ MediaStreamTrackAudioStats: false;
1755
+ MediaStreamTrackEvent: false;
1756
+ MediaStreamTrackGenerator: false;
1757
+ MediaStreamTrackProcessor: false;
1758
+ MediaStreamTrackVideoStats: false;
1759
+ menubar: false;
1760
+ MessageChannel: false;
1761
+ MessageEvent: false;
1762
+ MessagePort: false;
1763
+ MIDIAccess: false;
1764
+ MIDIConnectionEvent: false;
1765
+ MIDIInput: false;
1766
+ MIDIInputMap: false;
1767
+ MIDIMessageEvent: false;
1768
+ MIDIOutput: false;
1769
+ MIDIOutputMap: false;
1770
+ MIDIPort: false;
1771
+ MimeType: false;
1772
+ MimeTypeArray: false;
1773
+ model: false;
1774
+ ModelGenericSession: false;
1775
+ ModelManager: false;
1776
+ MouseEvent: false;
1777
+ moveBy: false;
1778
+ moveTo: false;
1779
+ MutationEvent: false;
1780
+ MutationObserver: false;
1781
+ MutationRecord: false;
1782
+ name: false;
1783
+ NamedNodeMap: false;
1784
+ NavigateEvent: false;
1785
+ navigation: false;
1786
+ Navigation: false;
1787
+ NavigationActivation: false;
1788
+ NavigationCurrentEntryChangeEvent: false;
1789
+ NavigationDestination: false;
1790
+ NavigationHistoryEntry: false;
1791
+ NavigationPreloadManager: false;
1792
+ NavigationTransition: false;
1793
+ navigator: false;
1794
+ Navigator: false;
1795
+ NavigatorLogin: false;
1796
+ NavigatorManagedData: false;
1797
+ NavigatorUAData: false;
1798
+ NetworkInformation: false;
1799
+ Node: false;
1800
+ NodeFilter: false;
1801
+ NodeIterator: false;
1802
+ NodeList: false;
1803
+ Notification: false;
1804
+ NotifyPaintEvent: false;
1805
+ NotRestoredReasonDetails: false;
1806
+ NotRestoredReasons: false;
1807
+ OfflineAudioCompletionEvent: false;
1808
+ OfflineAudioContext: false;
1809
+ offscreenBuffering: false;
1810
+ OffscreenCanvas: false;
1811
+ OffscreenCanvasRenderingContext2D: false;
1812
+ onabort: true;
1813
+ onafterprint: true;
1814
+ onanimationcancel: true;
1815
+ onanimationend: true;
1816
+ onanimationiteration: true;
1817
+ onanimationstart: true;
1818
+ onappinstalled: true;
1819
+ onauxclick: true;
1820
+ onbeforeinput: true;
1821
+ onbeforeinstallprompt: true;
1822
+ onbeforematch: true;
1823
+ onbeforeprint: true;
1824
+ onbeforetoggle: true;
1825
+ onbeforeunload: true;
1826
+ onbeforexrselect: true;
1827
+ onblur: true;
1828
+ oncancel: true;
1829
+ oncanplay: true;
1830
+ oncanplaythrough: true;
1831
+ onchange: true;
1832
+ onclick: true;
1833
+ onclose: true;
1834
+ oncontentvisibilityautostatechange: true;
1835
+ oncontextlost: true;
1836
+ oncontextmenu: true;
1837
+ oncontextrestored: true;
1838
+ oncopy: true;
1839
+ oncuechange: true;
1840
+ oncut: true;
1841
+ ondblclick: true;
1842
+ ondevicemotion: true;
1843
+ ondeviceorientation: true;
1844
+ ondeviceorientationabsolute: true;
1845
+ ondrag: true;
1846
+ ondragend: true;
1847
+ ondragenter: true;
1848
+ ondragleave: true;
1849
+ ondragover: true;
1850
+ ondragstart: true;
1851
+ ondrop: true;
1852
+ ondurationchange: true;
1853
+ onemptied: true;
1854
+ onended: true;
1855
+ onerror: true;
1856
+ onfocus: true;
1857
+ onformdata: true;
1858
+ ongamepadconnected: true;
1859
+ ongamepaddisconnected: true;
1860
+ ongotpointercapture: true;
1861
+ onhashchange: true;
1862
+ oninput: true;
1863
+ oninvalid: true;
1864
+ onkeydown: true;
1865
+ onkeypress: true;
1866
+ onkeyup: true;
1867
+ onlanguagechange: true;
1868
+ onload: true;
1869
+ onloadeddata: true;
1870
+ onloadedmetadata: true;
1871
+ onloadstart: true;
1872
+ onlostpointercapture: true;
1873
+ onmessage: true;
1874
+ onmessageerror: true;
1875
+ onmousedown: true;
1876
+ onmouseenter: true;
1877
+ onmouseleave: true;
1878
+ onmousemove: true;
1879
+ onmouseout: true;
1880
+ onmouseover: true;
1881
+ onmouseup: true;
1882
+ onmousewheel: true;
1883
+ onoffline: true;
1884
+ ononline: true;
1885
+ onpagehide: true;
1886
+ onpagereveal: true;
1887
+ onpageshow: true;
1888
+ onpageswap: true;
1889
+ onpaste: true;
1890
+ onpause: true;
1891
+ onplay: true;
1892
+ onplaying: true;
1893
+ onpointercancel: true;
1894
+ onpointerdown: true;
1895
+ onpointerenter: true;
1896
+ onpointerleave: true;
1897
+ onpointermove: true;
1898
+ onpointerout: true;
1899
+ onpointerover: true;
1900
+ onpointerrawupdate: true;
1901
+ onpointerup: true;
1902
+ onpopstate: true;
1903
+ onprogress: true;
1904
+ onratechange: true;
1905
+ onrejectionhandled: true;
1906
+ onreset: true;
1907
+ onresize: true;
1908
+ onscroll: true;
1909
+ onscrollend: true;
1910
+ onscrollsnapchange: true;
1911
+ onscrollsnapchanging: true;
1912
+ onsearch: true;
1913
+ onsecuritypolicyviolation: true;
1914
+ onseeked: true;
1915
+ onseeking: true;
1916
+ onselect: true;
1917
+ onselectionchange: true;
1918
+ onselectstart: true;
1919
+ onslotchange: true;
1920
+ onstalled: true;
1921
+ onstorage: true;
1922
+ onsubmit: true;
1923
+ onsuspend: true;
1924
+ ontimeupdate: true;
1925
+ ontoggle: true;
1926
+ ontransitioncancel: true;
1927
+ ontransitionend: true;
1928
+ ontransitionrun: true;
1929
+ ontransitionstart: true;
1930
+ onunhandledrejection: true;
1931
+ onunload: true;
1932
+ onvolumechange: true;
1933
+ onwaiting: true;
1934
+ onwheel: true;
1935
+ open: false;
1936
+ opener: false;
1937
+ Option: false;
1938
+ OrientationSensor: false;
1939
+ origin: false;
1940
+ originAgentCluster: false;
1941
+ OscillatorNode: false;
1942
+ OTPCredential: false;
1943
+ outerHeight: false;
1944
+ outerWidth: false;
1945
+ OverconstrainedError: false;
1946
+ PageRevealEvent: false;
1947
+ PageSwapEvent: false;
1948
+ PageTransitionEvent: false;
1949
+ pageXOffset: false;
1950
+ pageYOffset: false;
1951
+ PannerNode: false;
1952
+ parent: false;
1953
+ PasswordCredential: false;
1954
+ Path2D: false;
1955
+ PaymentAddress: false;
1956
+ PaymentManager: false;
1957
+ PaymentMethodChangeEvent: false;
1958
+ PaymentRequest: false;
1959
+ PaymentRequestUpdateEvent: false;
1960
+ PaymentResponse: false;
1961
+ performance: false;
1962
+ Performance: false;
1963
+ PerformanceElementTiming: false;
1964
+ PerformanceEntry: false;
1965
+ PerformanceEventTiming: false;
1966
+ PerformanceLongAnimationFrameTiming: false;
1967
+ PerformanceLongTaskTiming: false;
1968
+ PerformanceMark: false;
1969
+ PerformanceMeasure: false;
1970
+ PerformanceNavigation: false;
1971
+ PerformanceNavigationTiming: false;
1972
+ PerformanceObserver: false;
1973
+ PerformanceObserverEntryList: false;
1974
+ PerformancePaintTiming: false;
1975
+ PerformanceResourceTiming: false;
1976
+ PerformanceScriptTiming: false;
1977
+ PerformanceServerTiming: false;
1978
+ PerformanceTiming: false;
1979
+ PeriodicSyncManager: false;
1980
+ PeriodicWave: false;
1981
+ Permissions: false;
1982
+ PermissionStatus: false;
1983
+ PERSISTENT: false;
1984
+ personalbar: false;
1985
+ PictureInPictureEvent: false;
1986
+ PictureInPictureWindow: false;
1987
+ Plugin: false;
1988
+ PluginArray: false;
1989
+ PointerEvent: false;
1990
+ PopStateEvent: false;
1991
+ postMessage: false;
1992
+ Presentation: false;
1993
+ PresentationAvailability: false;
1994
+ PresentationConnection: false;
1995
+ PresentationConnectionAvailableEvent: false;
1996
+ PresentationConnectionCloseEvent: false;
1997
+ PresentationConnectionList: false;
1998
+ PresentationReceiver: false;
1999
+ PresentationRequest: false;
2000
+ PressureObserver: false;
2001
+ PressureRecord: false;
2002
+ print: false;
2003
+ ProcessingInstruction: false;
2004
+ Profiler: false;
2005
+ ProgressEvent: false;
2006
+ PromiseRejectionEvent: false;
2007
+ prompt: false;
2008
+ ProtectedAudience: false;
2009
+ PublicKeyCredential: false;
2010
+ PushManager: false;
2011
+ PushSubscription: false;
2012
+ PushSubscriptionOptions: false;
2013
+ queryLocalFonts: false;
2014
+ queueMicrotask: false;
2015
+ RadioNodeList: false;
2016
+ Range: false;
2017
+ ReadableByteStreamController: false;
2018
+ ReadableStream: false;
2019
+ ReadableStreamBYOBReader: false;
2020
+ ReadableStreamBYOBRequest: false;
2021
+ ReadableStreamDefaultController: false;
2022
+ ReadableStreamDefaultReader: false;
2023
+ registerProcessor: false;
2024
+ RelativeOrientationSensor: false;
2025
+ RemotePlayback: false;
2026
+ removeEventListener: false;
2027
+ reportError: false;
2028
+ ReportingObserver: false;
2029
+ Request: false;
2030
+ requestAnimationFrame: false;
2031
+ requestIdleCallback: false;
2032
+ resizeBy: false;
2033
+ ResizeObserver: false;
2034
+ ResizeObserverEntry: false;
2035
+ ResizeObserverSize: false;
2036
+ resizeTo: false;
2037
+ Response: false;
2038
+ RTCCertificate: false;
2039
+ RTCDataChannel: false;
2040
+ RTCDataChannelEvent: false;
2041
+ RTCDtlsTransport: false;
2042
+ RTCDTMFSender: false;
2043
+ RTCDTMFToneChangeEvent: false;
2044
+ RTCEncodedAudioFrame: false;
2045
+ RTCEncodedVideoFrame: false;
2046
+ RTCError: false;
2047
+ RTCErrorEvent: false;
2048
+ RTCIceCandidate: false;
2049
+ RTCIceTransport: false;
2050
+ RTCPeerConnection: false;
2051
+ RTCPeerConnectionIceErrorEvent: false;
2052
+ RTCPeerConnectionIceEvent: false;
2053
+ RTCRtpReceiver: false;
2054
+ RTCRtpScriptTransform: false;
2055
+ RTCRtpSender: false;
2056
+ RTCRtpTransceiver: false;
2057
+ RTCSctpTransport: false;
2058
+ RTCSessionDescription: false;
2059
+ RTCStatsReport: false;
2060
+ RTCTrackEvent: false;
2061
+ sampleRate: false;
2062
+ scheduler: false;
2063
+ Scheduler: false;
2064
+ Scheduling: false;
2065
+ screen: false;
2066
+ Screen: false;
2067
+ ScreenDetailed: false;
2068
+ ScreenDetails: false;
2069
+ screenLeft: false;
2070
+ ScreenOrientation: false;
2071
+ screenTop: false;
2072
+ screenX: false;
2073
+ screenY: false;
2074
+ ScriptProcessorNode: false;
2075
+ scroll: false;
2076
+ scrollbars: false;
2077
+ scrollBy: false;
2078
+ ScrollTimeline: false;
2079
+ scrollTo: false;
2080
+ scrollX: false;
2081
+ scrollY: false;
2082
+ SecurityPolicyViolationEvent: false;
2083
+ Selection: false;
2084
+ self: false;
2085
+ Sensor: false;
2086
+ SensorErrorEvent: false;
2087
+ Serial: false;
2088
+ SerialPort: false;
2089
+ ServiceWorker: false;
2090
+ ServiceWorkerContainer: false;
2091
+ ServiceWorkerRegistration: false;
2092
+ sessionStorage: false;
2093
+ setInterval: false;
2094
+ setTimeout: false;
2095
+ ShadowRoot: false;
2096
+ sharedStorage: false;
2097
+ SharedStorage: false;
2098
+ SharedStorageWorklet: false;
2099
+ SharedWorker: false;
2100
+ showDirectoryPicker: false;
2101
+ showOpenFilePicker: false;
2102
+ showSaveFilePicker: false;
2103
+ SnapEvent: false;
2104
+ SourceBuffer: false;
2105
+ SourceBufferList: false;
2106
+ speechSynthesis: false;
2107
+ SpeechSynthesis: false;
2108
+ SpeechSynthesisErrorEvent: false;
2109
+ SpeechSynthesisEvent: false;
2110
+ SpeechSynthesisUtterance: false;
2111
+ SpeechSynthesisVoice: false;
2112
+ StaticRange: false;
2113
+ status: false;
2114
+ statusbar: false;
2115
+ StereoPannerNode: false;
2116
+ stop: false;
2117
+ Storage: false;
2118
+ StorageBucket: false;
2119
+ StorageBucketManager: false;
2120
+ StorageEvent: false;
2121
+ StorageManager: false;
2122
+ structuredClone: false;
2123
+ styleMedia: false;
2124
+ StylePropertyMap: false;
2125
+ StylePropertyMapReadOnly: false;
2126
+ StyleSheet: false;
2127
+ StyleSheetList: false;
2128
+ SubmitEvent: false;
2129
+ SubtleCrypto: false;
2130
+ SVGAElement: false;
2131
+ SVGAngle: false;
2132
+ SVGAnimatedAngle: false;
2133
+ SVGAnimatedBoolean: false;
2134
+ SVGAnimatedEnumeration: false;
2135
+ SVGAnimatedInteger: false;
2136
+ SVGAnimatedLength: false;
2137
+ SVGAnimatedLengthList: false;
2138
+ SVGAnimatedNumber: false;
2139
+ SVGAnimatedNumberList: false;
2140
+ SVGAnimatedPreserveAspectRatio: false;
2141
+ SVGAnimatedRect: false;
2142
+ SVGAnimatedString: false;
2143
+ SVGAnimatedTransformList: false;
2144
+ SVGAnimateElement: false;
2145
+ SVGAnimateMotionElement: false;
2146
+ SVGAnimateTransformElement: false;
2147
+ SVGAnimationElement: false;
2148
+ SVGCircleElement: false;
2149
+ SVGClipPathElement: false;
2150
+ SVGComponentTransferFunctionElement: false;
2151
+ SVGDefsElement: false;
2152
+ SVGDescElement: false;
2153
+ SVGElement: false;
2154
+ SVGEllipseElement: false;
2155
+ SVGFEBlendElement: false;
2156
+ SVGFEColorMatrixElement: false;
2157
+ SVGFEComponentTransferElement: false;
2158
+ SVGFECompositeElement: false;
2159
+ SVGFEConvolveMatrixElement: false;
2160
+ SVGFEDiffuseLightingElement: false;
2161
+ SVGFEDisplacementMapElement: false;
2162
+ SVGFEDistantLightElement: false;
2163
+ SVGFEDropShadowElement: false;
2164
+ SVGFEFloodElement: false;
2165
+ SVGFEFuncAElement: false;
2166
+ SVGFEFuncBElement: false;
2167
+ SVGFEFuncGElement: false;
2168
+ SVGFEFuncRElement: false;
2169
+ SVGFEGaussianBlurElement: false;
2170
+ SVGFEImageElement: false;
2171
+ SVGFEMergeElement: false;
2172
+ SVGFEMergeNodeElement: false;
2173
+ SVGFEMorphologyElement: false;
2174
+ SVGFEOffsetElement: false;
2175
+ SVGFEPointLightElement: false;
2176
+ SVGFESpecularLightingElement: false;
2177
+ SVGFESpotLightElement: false;
2178
+ SVGFETileElement: false;
2179
+ SVGFETurbulenceElement: false;
2180
+ SVGFilterElement: false;
2181
+ SVGForeignObjectElement: false;
2182
+ SVGGElement: false;
2183
+ SVGGeometryElement: false;
2184
+ SVGGradientElement: false;
2185
+ SVGGraphicsElement: false;
2186
+ SVGImageElement: false;
2187
+ SVGLength: false;
2188
+ SVGLengthList: false;
2189
+ SVGLinearGradientElement: false;
2190
+ SVGLineElement: false;
2191
+ SVGMarkerElement: false;
2192
+ SVGMaskElement: false;
2193
+ SVGMatrix: false;
2194
+ SVGMetadataElement: false;
2195
+ SVGMPathElement: false;
2196
+ SVGNumber: false;
2197
+ SVGNumberList: false;
2198
+ SVGPathElement: false;
2199
+ SVGPatternElement: false;
2200
+ SVGPoint: false;
2201
+ SVGPointList: false;
2202
+ SVGPolygonElement: false;
2203
+ SVGPolylineElement: false;
2204
+ SVGPreserveAspectRatio: false;
2205
+ SVGRadialGradientElement: false;
2206
+ SVGRect: false;
2207
+ SVGRectElement: false;
2208
+ SVGScriptElement: false;
2209
+ SVGSetElement: false;
2210
+ SVGStopElement: false;
2211
+ SVGStringList: false;
2212
+ SVGStyleElement: false;
2213
+ SVGSVGElement: false;
2214
+ SVGSwitchElement: false;
2215
+ SVGSymbolElement: false;
2216
+ SVGTextContentElement: false;
2217
+ SVGTextElement: false;
2218
+ SVGTextPathElement: false;
2219
+ SVGTextPositioningElement: false;
2220
+ SVGTitleElement: false;
2221
+ SVGTransform: false;
2222
+ SVGTransformList: false;
2223
+ SVGTSpanElement: false;
2224
+ SVGUnitTypes: false;
2225
+ SVGUseElement: false;
2226
+ SVGViewElement: false;
2227
+ SyncManager: false;
2228
+ TaskAttributionTiming: false;
2229
+ TaskController: false;
2230
+ TaskPriorityChangeEvent: false;
2231
+ TaskSignal: false;
2232
+ TEMPORARY: false;
2233
+ Text: false;
2234
+ TextDecoder: false;
2235
+ TextDecoderStream: false;
2236
+ TextEncoder: false;
2237
+ TextEncoderStream: false;
2238
+ TextEvent: false;
2239
+ TextFormat: false;
2240
+ TextFormatUpdateEvent: false;
2241
+ TextMetrics: false;
2242
+ TextTrack: false;
2243
+ TextTrackCue: false;
2244
+ TextTrackCueList: false;
2245
+ TextTrackList: false;
2246
+ TextUpdateEvent: false;
2247
+ TimeEvent: false;
2248
+ TimeRanges: false;
2249
+ ToggleEvent: false;
2250
+ toolbar: false;
2251
+ top: false;
2252
+ Touch: false;
2253
+ TouchEvent: false;
2254
+ TouchList: false;
2255
+ TrackEvent: false;
2256
+ TransformStream: false;
2257
+ TransformStreamDefaultController: false;
2258
+ TransitionEvent: false;
2259
+ TreeWalker: false;
2260
+ TrustedHTML: false;
2261
+ TrustedScript: false;
2262
+ TrustedScriptURL: false;
2263
+ TrustedTypePolicy: false;
2264
+ TrustedTypePolicyFactory: false;
2265
+ trustedTypes: false;
2266
+ UIEvent: false;
2267
+ URL: false;
2268
+ URLPattern: false;
2269
+ URLSearchParams: false;
2270
+ USB: false;
2271
+ USBAlternateInterface: false;
2272
+ USBConfiguration: false;
2273
+ USBConnectionEvent: false;
2274
+ USBDevice: false;
2275
+ USBEndpoint: false;
2276
+ USBInterface: false;
2277
+ USBInTransferResult: false;
2278
+ USBIsochronousInTransferPacket: false;
2279
+ USBIsochronousInTransferResult: false;
2280
+ USBIsochronousOutTransferPacket: false;
2281
+ USBIsochronousOutTransferResult: false;
2282
+ USBOutTransferResult: false;
2283
+ UserActivation: false;
2284
+ ValidityState: false;
2285
+ VideoColorSpace: false;
2286
+ VideoDecoder: false;
2287
+ VideoEncoder: false;
2288
+ VideoFrame: false;
2289
+ VideoPlaybackQuality: false;
2290
+ ViewTimeline: false;
2291
+ ViewTransition: false;
2292
+ ViewTransitionTypeSet: false;
2293
+ VirtualKeyboard: false;
2294
+ VirtualKeyboardGeometryChangeEvent: false;
2295
+ VisibilityStateEntry: false;
2296
+ visualViewport: false;
2297
+ VisualViewport: false;
2298
+ VTTCue: false;
2299
+ VTTRegion: false;
2300
+ WakeLock: false;
2301
+ WakeLockSentinel: false;
2302
+ WaveShaperNode: false;
2303
+ WebAssembly: false;
2304
+ WebGL2RenderingContext: false;
2305
+ WebGLActiveInfo: false;
2306
+ WebGLBuffer: false;
2307
+ WebGLContextEvent: false;
2308
+ WebGLFramebuffer: false;
2309
+ WebGLObject: false;
2310
+ WebGLProgram: false;
2311
+ WebGLQuery: false;
2312
+ WebGLRenderbuffer: false;
2313
+ WebGLRenderingContext: false;
2314
+ WebGLSampler: false;
2315
+ WebGLShader: false;
2316
+ WebGLShaderPrecisionFormat: false;
2317
+ WebGLSync: false;
2318
+ WebGLTexture: false;
2319
+ WebGLTransformFeedback: false;
2320
+ WebGLUniformLocation: false;
2321
+ WebGLVertexArrayObject: false;
2322
+ WebSocket: false;
2323
+ WebSocketError: false;
2324
+ WebSocketStream: false;
2325
+ WebTransport: false;
2326
+ WebTransportBidirectionalStream: false;
2327
+ WebTransportDatagramDuplexStream: false;
2328
+ WebTransportError: false;
2329
+ WebTransportReceiveStream: false;
2330
+ WebTransportSendStream: false;
2331
+ WGSLLanguageFeatures: false;
2332
+ WheelEvent: false;
2333
+ window: false;
2334
+ Window: false;
2335
+ WindowControlsOverlay: false;
2336
+ WindowControlsOverlayGeometryChangeEvent: false;
2337
+ Worker: false;
2338
+ Worklet: false;
2339
+ WorkletGlobalScope: false;
2340
+ WritableStream: false;
2341
+ WritableStreamDefaultController: false;
2342
+ WritableStreamDefaultWriter: false;
2343
+ XMLDocument: false;
2344
+ XMLHttpRequest: false;
2345
+ XMLHttpRequestEventTarget: false;
2346
+ XMLHttpRequestUpload: false;
2347
+ XMLSerializer: false;
2348
+ XPathEvaluator: false;
2349
+ XPathExpression: false;
2350
+ XPathResult: false;
2351
+ XRAnchor: false;
2352
+ XRAnchorSet: false;
2353
+ XRBoundedReferenceSpace: false;
2354
+ XRCamera: false;
2355
+ XRCPUDepthInformation: false;
2356
+ XRDepthInformation: false;
2357
+ XRDOMOverlayState: false;
2358
+ XRFrame: false;
2359
+ XRHand: false;
2360
+ XRHitTestResult: false;
2361
+ XRHitTestSource: false;
2362
+ XRInputSource: false;
2363
+ XRInputSourceArray: false;
2364
+ XRInputSourceEvent: false;
2365
+ XRInputSourcesChangeEvent: false;
2366
+ XRJointPose: false;
2367
+ XRJointSpace: false;
2368
+ XRLayer: false;
2369
+ XRLightEstimate: false;
2370
+ XRLightProbe: false;
2371
+ XRPose: false;
2372
+ XRRay: false;
2373
+ XRReferenceSpace: false;
2374
+ XRReferenceSpaceEvent: false;
2375
+ XRRenderState: false;
2376
+ XRRigidTransform: false;
2377
+ XRSession: false;
2378
+ XRSessionEvent: false;
2379
+ XRSpace: false;
2380
+ XRSystem: false;
2381
+ XRTransientInputHitTestResult: false;
2382
+ XRTransientInputHitTestSource: false;
2383
+ XRView: false;
2384
+ XRViewerPose: false;
2385
+ XRViewport: false;
2386
+ XRWebGLBinding: false;
2387
+ XRWebGLDepthInformation: false;
2388
+ XRWebGLLayer: false;
2389
+ XSLTProcessor: false;
2390
+ };
2391
+ };
2392
+ settings: {
2393
+ react: {
2394
+ pragma: string;
2395
+ version: string;
2396
+ };
2397
+ propWrapperFunctions: string[];
2398
+ };
2399
+ rules: {
2400
+ 'no-underscore-dangle': ["error", {
2401
+ allow: string[];
2402
+ allowAfterThis: boolean;
2403
+ allowAfterSuper: boolean;
2404
+ enforceInMethodNames: boolean;
2405
+ }];
2406
+ 'jsx-quotes': ["error", string];
2407
+ 'class-methods-use-this': ["error", {
2408
+ exceptMethods: string[];
2409
+ }];
2410
+ 'react/checked-requires-onchange-or-readonly': ["off", {
2411
+ ignoreMissingProperties: boolean;
2412
+ ignoreExclusiveCheckedAttribute: boolean;
2413
+ }];
2414
+ 'react/display-name': ["off", {
2415
+ ignoreTranspilerName: boolean;
2416
+ }];
2417
+ 'react/forbid-prop-types': ["error", {
2418
+ forbid: string[];
2419
+ checkContextTypes: boolean;
2420
+ checkChildContextTypes: boolean;
2421
+ }];
2422
+ 'react/forbid-dom-props': ["off", {
2423
+ forbid: never[];
2424
+ }];
2425
+ 'react/jsx-boolean-value': ["error", string, {
2426
+ always: never[];
2427
+ }];
2428
+ 'react/jsx-closing-bracket-location': ["error", string];
2429
+ 'react/jsx-closing-tag-location': "error";
2430
+ 'react/jsx-curly-spacing': ["error", string, {
2431
+ allowMultiline: boolean;
2432
+ }];
2433
+ 'react/jsx-handler-names': ["off", {
2434
+ eventHandlerPrefix: string;
2435
+ eventHandlerPropPrefix: string;
2436
+ }];
2437
+ 'react/jsx-indent-props': ["error", number];
2438
+ 'react/jsx-key': "off";
2439
+ 'react/jsx-max-props-per-line': ["error", {
2440
+ maximum: number;
2441
+ when: string;
2442
+ }];
2443
+ 'react/jsx-no-bind': ["error", {
2444
+ ignoreRefs: boolean;
2445
+ allowArrowFunctions: boolean;
2446
+ allowFunctions: boolean;
2447
+ allowBind: boolean;
2448
+ ignoreDOMComponents: boolean;
2449
+ }];
2450
+ 'react/jsx-no-duplicate-props': ["error", {
2451
+ ignoreCase: boolean;
2452
+ }];
2453
+ 'react/jsx-no-literals': ["off", {
2454
+ noStrings: boolean;
2455
+ }];
2456
+ 'react/jsx-no-undef': "error";
2457
+ 'react/jsx-pascal-case': ["error", {
2458
+ allowAllCaps: boolean;
2459
+ ignore: never[];
2460
+ }];
2461
+ 'react/sort-prop-types': ["off", {
2462
+ ignoreCase: boolean;
2463
+ callbacksLast: boolean;
2464
+ requiredFirst: boolean;
2465
+ sortShapeProp: boolean;
2466
+ }];
2467
+ 'react/jsx-sort-prop-types': "off";
2468
+ 'react/jsx-sort-props': ["off", {
2469
+ ignoreCase: boolean;
2470
+ callbacksLast: boolean;
2471
+ shorthandFirst: boolean;
2472
+ shorthandLast: boolean;
2473
+ noSortAlphabetically: boolean;
2474
+ reservedFirst: boolean;
2475
+ }];
2476
+ 'react/jsx-sort-default-props': ["off", {
2477
+ ignoreCase: boolean;
2478
+ }];
2479
+ 'react/jsx-uses-react': ["error"];
2480
+ 'react/jsx-uses-vars': "error";
2481
+ 'react/no-danger': "warn";
2482
+ 'react/no-deprecated': ["error"];
2483
+ 'react/no-did-mount-set-state': "off";
2484
+ 'react/no-did-update-set-state': "error";
2485
+ 'react/no-will-update-set-state': "error";
2486
+ 'react/no-direct-mutation-state': "off";
2487
+ 'react/no-is-mounted': "error";
2488
+ 'react/no-multi-comp': "off";
2489
+ 'react/no-set-state': "off";
2490
+ 'react/no-string-refs': "error";
2491
+ 'react/no-unknown-property': "error";
2492
+ 'react/prefer-es6-class': ["error", string];
2493
+ 'react/prefer-stateless-function': ["error", {
2494
+ ignorePureComponents: boolean;
2495
+ }];
2496
+ 'react/prop-types': ["error", {
2497
+ ignore: never[];
2498
+ customValidators: never[];
2499
+ skipUndeclared: boolean;
2500
+ }];
2501
+ 'react/react-in-jsx-scope': "error";
2502
+ 'react/require-render-return': "error";
2503
+ 'react/self-closing-comp': "error";
2504
+ 'react/sort-comp': ["error", {
2505
+ order: string[];
2506
+ groups: {
2507
+ lifecycle: string[];
2508
+ rendering: string[];
2509
+ };
2510
+ }];
2511
+ 'react/jsx-wrap-multilines': ["error", {
2512
+ declaration: string;
2513
+ assignment: string;
2514
+ return: string;
2515
+ arrow: string;
2516
+ condition: string;
2517
+ logical: string;
2518
+ prop: string;
2519
+ }];
2520
+ 'react/jsx-first-prop-new-line': ["error", string];
2521
+ 'react/jsx-equals-spacing': ["error", string];
2522
+ 'react/jsx-indent': ["error", number];
2523
+ 'react/jsx-no-target-blank': ["error", {
2524
+ enforceDynamicLinks: string;
2525
+ }];
2526
+ 'react/jsx-filename-extension': ["error", {
2527
+ extensions: string[];
2528
+ }];
2529
+ 'react/jsx-no-comment-textnodes': "error";
2530
+ 'react/no-render-return-value': "error";
2531
+ 'react/require-optimization': ["off", {
2532
+ allowDecorators: never[];
2533
+ }];
2534
+ 'react/no-find-dom-node': "error";
2535
+ 'react/forbid-component-props': ["off", {
2536
+ forbid: never[];
2537
+ }];
2538
+ 'react/forbid-elements': ["off", {
2539
+ forbid: never[];
2540
+ }];
2541
+ 'react/no-danger-with-children': "error";
2542
+ 'react/no-unused-prop-types': ["error", {
2543
+ customValidators: never[];
2544
+ skipShapeProps: boolean;
2545
+ }];
2546
+ 'react/style-prop-object': "error";
2547
+ 'react/no-unescaped-entities': "error";
2548
+ 'react/no-children-prop': "error";
2549
+ 'react/jsx-tag-spacing': ["error", {
2550
+ closingSlash: string;
2551
+ beforeSelfClosing: string;
2552
+ afterOpening: string;
2553
+ beforeClosing: string;
2554
+ }];
2555
+ 'react/jsx-space-before-closing': ["off", string];
2556
+ 'react/no-array-index-key': "error";
2557
+ 'react/require-default-props': ["error", {
2558
+ forbidDefaultForRequired: boolean;
2559
+ }];
2560
+ 'react/forbid-foreign-prop-types': ["warn", {
2561
+ allowInPropTypes: boolean;
2562
+ }];
2563
+ 'react/void-dom-elements-no-children': "error";
2564
+ 'react/default-props-match-prop-types': ["error", {
2565
+ allowRequiredDefaults: boolean;
2566
+ }];
2567
+ 'react/no-redundant-should-component-update': "error";
2568
+ 'react/no-unused-state': "error";
2569
+ 'react/boolean-prop-naming': ["off", {
2570
+ propTypeNames: string[];
2571
+ rule: string;
2572
+ message: string;
2573
+ }];
2574
+ 'react/no-typos': "error";
2575
+ 'react/jsx-curly-brace-presence': ["error", {
2576
+ props: string;
2577
+ children: string;
2578
+ }];
2579
+ 'react/jsx-one-expression-per-line': ["error", {
2580
+ allow: string;
2581
+ }];
2582
+ 'react/destructuring-assignment': ["error", string];
2583
+ 'react/no-access-state-in-setstate': "error";
2584
+ 'react/button-has-type': ["error", {
2585
+ button: boolean;
2586
+ submit: boolean;
2587
+ reset: boolean;
2588
+ }];
2589
+ 'react/jsx-child-element-spacing': "off";
2590
+ 'react/no-this-in-sfc': "error";
2591
+ 'react/jsx-max-depth': "off";
2592
+ 'react/jsx-props-no-multi-spaces': "error";
2593
+ 'react/no-unsafe': "off";
2594
+ 'react/jsx-fragments': ["error", string];
2595
+ 'react/jsx-curly-newline': ["error", {
2596
+ multiline: string;
2597
+ singleline: string;
2598
+ }];
2599
+ 'react/state-in-constructor': ["error", string];
2600
+ 'react/static-property-placement': ["error", string];
2601
+ 'react/jsx-props-no-spreading': ["error", {
2602
+ html: string;
2603
+ custom: string;
2604
+ explicitSpread: string;
2605
+ exceptions: never[];
2606
+ }];
2607
+ 'react/prefer-read-only-props': "off";
2608
+ 'react/jsx-no-script-url': ["error", {
2609
+ name: string;
2610
+ props: string[];
2611
+ }[]];
2612
+ 'react/jsx-no-useless-fragment': "error";
2613
+ 'react/no-adjacent-inline-elements': "off";
2614
+ 'react/function-component-definition': ["error", {
2615
+ namedComponents: string[];
2616
+ unnamedComponents: string;
2617
+ }];
2618
+ 'react/jsx-newline': "off";
2619
+ 'react/jsx-no-constructed-context-values': "error";
2620
+ 'react/no-unstable-nested-components': "error";
2621
+ 'react/no-namespace': "error";
2622
+ 'react/prefer-exact-props': "error";
2623
+ 'react/no-arrow-function-lifecycle': "error";
2624
+ 'react/no-invalid-html-attribute': "error";
2625
+ 'react/no-unused-class-component-methods': "error";
2626
+ 'react/hook-use-state': "off";
2627
+ 'react/iframe-missing-sandbox': "off";
2628
+ 'react/jsx-no-leaked-render': "off";
2629
+ 'react/no-object-type-as-default-prop': "off";
2630
+ 'react/sort-default-props': ["off", {
2631
+ ignoreCase: boolean;
2632
+ }];
2633
+ 'react/forward-ref-uses-ref': "off";
2634
+ 'react/jsx-props-no-spread-multi': "off";
2635
+ };
2636
+ } | {
2637
+ name: string;
2638
+ plugins: {
2639
+ 'jsx-a11y': any;
2640
+ };
2641
+ languageOptions: {
2642
+ parserOptions: {
2643
+ ecmaFeatures: {
2644
+ jsx: true;
2645
+ };
2646
+ };
2647
+ };
2648
+ rules: {
2649
+ 'jsx-a11y/accessible-emoji': "off";
2650
+ 'jsx-a11y/alt-text': ["error", {
2651
+ elements: string[];
2652
+ img: never[];
2653
+ object: never[];
2654
+ area: never[];
2655
+ 'input[type="image"]': never[];
2656
+ }];
2657
+ 'jsx-a11y/anchor-has-content': ["error", {
2658
+ components: never[];
2659
+ }];
2660
+ 'jsx-a11y/anchor-is-valid': ["error", {
2661
+ components: string[];
2662
+ specialLink: string[];
2663
+ aspects: string[];
2664
+ }];
2665
+ 'jsx-a11y/aria-activedescendant-has-tabindex': "error";
2666
+ 'jsx-a11y/aria-props': "error";
2667
+ 'jsx-a11y/aria-proptypes': "error";
2668
+ 'jsx-a11y/aria-role': ["error", {
2669
+ ignoreNonDOM: boolean;
2670
+ }];
2671
+ 'jsx-a11y/aria-unsupported-elements': "error";
2672
+ 'jsx-a11y/autocomplete-valid': ["off", {
2673
+ inputComponents: never[];
2674
+ }];
2675
+ 'jsx-a11y/click-events-have-key-events': "error";
2676
+ 'jsx-a11y/control-has-associated-label': ["error", {
2677
+ labelAttributes: string[];
2678
+ controlComponents: never[];
2679
+ ignoreElements: string[];
2680
+ ignoreRoles: string[];
2681
+ depth: number;
2682
+ }];
2683
+ 'jsx-a11y/heading-has-content': ["error", {
2684
+ components: string[];
2685
+ }];
2686
+ 'jsx-a11y/html-has-lang': "error";
2687
+ 'jsx-a11y/iframe-has-title': "error";
2688
+ 'jsx-a11y/img-redundant-alt': "error";
2689
+ 'jsx-a11y/interactive-supports-focus': "error";
2690
+ 'jsx-a11y/label-has-associated-control': ["error", {
2691
+ labelComponents: never[];
2692
+ labelAttributes: never[];
2693
+ controlComponents: never[];
2694
+ assert: string;
2695
+ depth: number;
2696
+ }];
2697
+ 'jsx-a11y/lang': "error";
2698
+ 'jsx-a11y/media-has-caption': ["error", {
2699
+ audio: never[];
2700
+ video: never[];
2701
+ track: never[];
2702
+ }];
2703
+ 'jsx-a11y/mouse-events-have-key-events': "error";
2704
+ 'jsx-a11y/no-access-key': "error";
2705
+ 'jsx-a11y/no-autofocus': ["error", {
2706
+ ignoreNonDOM: boolean;
2707
+ }];
2708
+ 'jsx-a11y/no-distracting-elements': ["error", {
2709
+ elements: string[];
2710
+ }];
2711
+ 'jsx-a11y/no-interactive-element-to-noninteractive-role': ["error", {
2712
+ tr: string[];
2713
+ }];
2714
+ 'jsx-a11y/no-noninteractive-element-interactions': ["error", {
2715
+ handlers: string[];
2716
+ }];
2717
+ 'jsx-a11y/no-noninteractive-element-to-interactive-role': ["error", {
2718
+ ul: string[];
2719
+ ol: string[];
2720
+ li: string[];
2721
+ table: string[];
2722
+ td: string[];
2723
+ }];
2724
+ 'jsx-a11y/no-noninteractive-tabindex': ["error", {
2725
+ tags: never[];
2726
+ roles: string[];
2727
+ allowExpressionValues: boolean;
2728
+ }];
2729
+ 'jsx-a11y/no-onchange': "off";
2730
+ 'jsx-a11y/no-redundant-roles': ["error", {
2731
+ nav: string[];
2732
+ }];
2733
+ 'jsx-a11y/no-static-element-interactions': ["error", {
2734
+ handlers: string[];
2735
+ }];
2736
+ 'jsx-a11y/role-has-required-aria-props': "error";
2737
+ 'jsx-a11y/role-supports-aria-props': "error";
2738
+ 'jsx-a11y/scope': "error";
2739
+ 'jsx-a11y/tabindex-no-positive': "error";
2740
+ 'jsx-a11y/label-has-for': ["off", {
2741
+ components: never[];
2742
+ required: {
2743
+ every: string[];
2744
+ };
2745
+ allowChildren: boolean;
2746
+ }];
2747
+ 'jsx-a11y/anchor-ambiguous-text': "off";
2748
+ 'jsx-a11y/no-aria-hidden-on-focusable': "off";
2749
+ 'jsx-a11y/prefer-tag-over-role': "off";
2750
+ };
2751
+ } | {
2752
+ name: string;
2753
+ plugins: {
2754
+ 'react-hooks': typeof import("eslint-plugin-react-hooks");
2755
+ };
2756
+ languageOptions: {
2757
+ parserOptions: {
2758
+ ecmaFeatures: {
2759
+ jsx: true;
2760
+ };
2761
+ };
2762
+ };
2763
+ rules: {
2764
+ 'react-hooks/rules-of-hooks': "error";
2765
+ 'react-hooks/exhaustive-deps': "error";
2766
+ };
2767
+ } | {
2768
+ name: string;
2769
+ languageOptions: {
2770
+ parserOptions: {
2771
+ ecmaVersion: 2018;
2772
+ sourceType: "module";
2773
+ };
2774
+ };
2775
+ rules: {};
2776
+ } | {
2777
+ name: string;
2778
+ settings: {
2779
+ 'import-x/resolver': {
2780
+ node: {
2781
+ extensions: string[];
2782
+ };
2783
+ };
2784
+ };
2785
+ })[];
2
2786
  export default _default;