@jimmy.codes/eslint-config 4.3.1 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,18 +1,2135 @@
1
- import * as eslint_plugin_regexp from 'eslint-plugin-regexp';
1
+ import * as eslint from 'eslint';
2
+ import { ESLint, Linter } from 'eslint';
3
+ import * as eslint_plugin_astro from 'eslint-plugin-astro';
4
+ import * as _typescript_eslint_utils_ts_eslint from '@typescript-eslint/utils/ts-eslint';
5
+ import * as astro_eslint_parser from 'astro-eslint-parser';
2
6
  import * as estree from 'estree';
3
7
  import * as eslint_plugin_react_hooks from 'eslint-plugin-react-hooks';
4
8
  import * as eslint_plugin_react_compiler from 'eslint-plugin-react-compiler';
5
9
  import * as eslint_plugin_react from 'eslint-plugin-react';
10
+ import * as eslint_plugin_regexp from 'eslint-plugin-regexp';
6
11
  import * as eslint_plugin_n from 'eslint-plugin-n';
7
12
  import * as eslint_plugin_import_x_node_resolver_js from 'eslint-plugin-import-x/node-resolver.js';
8
13
  import * as eslint_plugin_import_x_utils_resolve_js from 'eslint-plugin-import-x/utils/resolve.js';
9
14
  import * as eslint_plugin_import_x_utils_module_visitor_js from 'eslint-plugin-import-x/utils/module-visitor.js';
10
15
  import * as eslint_plugin_import_x_types_js from 'eslint-plugin-import-x/types.js';
11
- import * as eslint_plugin_astro from 'eslint-plugin-astro';
12
- import * as eslint from 'eslint';
13
- import { Linter } from 'eslint';
14
- import * as astro_eslint_parser from 'astro-eslint-parser';
15
- import * as _typescript_eslint_utils_ts_eslint from '@typescript-eslint/utils/ts-eslint';
16
+
17
+ declare function nextjsConfig(): Promise<{
18
+ files: string[];
19
+ name: string;
20
+ plugins: {
21
+ "@next/next": {
22
+ configs: {
23
+ "core-web-vitals": eslint.Linter.Config<eslint.Linter.RulesRecord>;
24
+ recommended: eslint.Linter.Config<eslint.Linter.RulesRecord>;
25
+ };
26
+ };
27
+ };
28
+ rules: {
29
+ [k: string]: 0 | 1 | 2 | "off" | "error" | [eslint.Linter.RuleSeverity, ...any[]] | undefined;
30
+ };
31
+ }[]>;
32
+
33
+ declare namespace __configs_nextjs {
34
+ export { nextjsConfig as default };
35
+ }
36
+
37
+ declare function storybookConfig(): Promise<({
38
+ name: string;
39
+ plugins: {
40
+ readonly storybook: any;
41
+ } | undefined;
42
+ files?: undefined;
43
+ rules?: undefined;
44
+ } | {
45
+ files: string[] | undefined;
46
+ name: string;
47
+ rules: {
48
+ "import-x/no-anonymous-default-export": "off";
49
+ "unicorn/no-anonymous-default-export": "off";
50
+ };
51
+ plugins?: undefined;
52
+ } | {
53
+ files: string[] | undefined;
54
+ name: string;
55
+ rules: {};
56
+ plugins?: undefined;
57
+ })[]>;
58
+
59
+ declare namespace __configs_storybook {
60
+ export { storybookConfig as default };
61
+ }
62
+
63
+ declare function playwrightConfig(): Promise<{
64
+ files: string[];
65
+ name: string;
66
+ rules: {
67
+ "playwright/expect-expect": "error";
68
+ "playwright/max-nested-describe": "error";
69
+ "playwright/no-conditional-expect": "error";
70
+ "playwright/no-conditional-in-test": "error";
71
+ "playwright/no-element-handle": "error";
72
+ "playwright/no-eval": "error";
73
+ "playwright/no-force-option": "error";
74
+ "playwright/no-nested-step": "error";
75
+ "playwright/no-page-pause": "error";
76
+ "playwright/no-skipped-test": "error";
77
+ "playwright/no-slowed-test": "error";
78
+ "playwright/no-useless-await": "error";
79
+ "playwright/no-useless-not": "error";
80
+ "playwright/no-wait-for-selector": "error";
81
+ "playwright/no-wait-for-timeout": "error";
82
+ };
83
+ ignores?: string[];
84
+ language?: string;
85
+ languageOptions?: eslint.Linter.LanguageOptions;
86
+ linterOptions?: eslint.Linter.LinterOptions;
87
+ processor?: string | eslint.Linter.Processor;
88
+ plugins?: Record<string, eslint.ESLint.Plugin>;
89
+ settings?: Record<string, unknown>;
90
+ }[]>;
91
+
92
+ declare namespace __configs_playwright {
93
+ export { playwrightConfig as default };
94
+ }
95
+
96
+ declare function testingLibraryConfig(): Promise<{
97
+ files: string[];
98
+ ignores: string[];
99
+ name: string;
100
+ plugins: {
101
+ "jest-dom": {
102
+ default: {
103
+ meta: {
104
+ name: string;
105
+ version: string;
106
+ };
107
+ configs: {
108
+ all: eslint.Linter.LegacyConfig;
109
+ recommended: eslint.Linter.LegacyConfig;
110
+ "flat/all": eslint.Linter.FlatConfig;
111
+ "flat/recommended": eslint.Linter.FlatConfig;
112
+ };
113
+ rules: {
114
+ [key: string]: eslint.Rule.RuleModule;
115
+ };
116
+ };
117
+ meta: {
118
+ name: string;
119
+ version: string;
120
+ };
121
+ configs: {
122
+ all: eslint.Linter.LegacyConfig;
123
+ recommended: eslint.Linter.LegacyConfig;
124
+ "flat/all": eslint.Linter.FlatConfig;
125
+ "flat/recommended": eslint.Linter.FlatConfig;
126
+ };
127
+ rules: {
128
+ [key: string]: eslint.Rule.RuleModule;
129
+ };
130
+ };
131
+ "testing-library": {
132
+ meta: {
133
+ name: string;
134
+ version: string;
135
+ };
136
+ configs: {
137
+ angular: eslint.Linter.LegacyConfig;
138
+ dom: eslint.Linter.LegacyConfig;
139
+ marko: eslint.Linter.LegacyConfig;
140
+ react: eslint.Linter.LegacyConfig;
141
+ svelte: eslint.Linter.LegacyConfig;
142
+ vue: eslint.Linter.LegacyConfig;
143
+ "flat/angular": eslint.Linter.FlatConfig;
144
+ "flat/dom": eslint.Linter.FlatConfig;
145
+ "flat/marko": eslint.Linter.FlatConfig;
146
+ "flat/react": eslint.Linter.FlatConfig;
147
+ "flat/svelte": eslint.Linter.FlatConfig;
148
+ "flat/vue": eslint.Linter.FlatConfig;
149
+ };
150
+ rules: {
151
+ [key: string]: eslint.Rule.RuleModule;
152
+ };
153
+ };
154
+ };
155
+ rules: {
156
+ [x: string]: eslint.Linter.RuleEntry<any[]> | undefined;
157
+ };
158
+ }[]>;
159
+
160
+ declare namespace __configs_testing_library {
161
+ export { testingLibraryConfig as default };
162
+ }
163
+
164
+ declare function vitestConfig(): Promise<{
165
+ name: string;
166
+ rules: {
167
+ "vitest/consistent-test-it": ["error", {
168
+ fn: "test";
169
+ withinDescribe: "it";
170
+ }];
171
+ "vitest/no-alias-methods": "error";
172
+ "vitest/no-commented-out-tests": "error";
173
+ "vitest/no-conditional-in-test": "error";
174
+ "vitest/no-disabled-tests": "warn";
175
+ "vitest/no-duplicate-hooks": "error";
176
+ "vitest/no-focused-tests": "error";
177
+ "vitest/no-hooks": "off";
178
+ "vitest/no-identical-title": "error";
179
+ "vitest/no-interpolation-in-snapshots": "error";
180
+ "vitest/no-large-snapshots": "off";
181
+ "vitest/no-mocks-import": "error";
182
+ "vitest/no-restricted-matchers": "off";
183
+ "vitest/no-restricted-vi-methods": "off";
184
+ "vitest/no-standalone-expect": "error";
185
+ "vitest/no-test-prefixes": "error";
186
+ "vitest/no-test-return-statement": "error";
187
+ "vitest/prefer-called-with": "error";
188
+ "vitest/prefer-comparison-matcher": "error";
189
+ "vitest/prefer-each": "error";
190
+ "vitest/prefer-equality-matcher": "error";
191
+ "vitest/prefer-expect-assertions": "off";
192
+ "vitest/prefer-expect-resolves": "error";
193
+ "vitest/prefer-hooks-in-order": "error";
194
+ "vitest/prefer-hooks-on-top": "error";
195
+ "vitest/prefer-lowercase-title": "off";
196
+ "vitest/prefer-mock-promise-shorthand": "error";
197
+ "vitest/prefer-snapshot-hint": "error";
198
+ "vitest/prefer-spy-on": "off";
199
+ "vitest/prefer-strict-boolean-matchers": "error";
200
+ "vitest/prefer-strict-equal": "error";
201
+ "vitest/prefer-to-be": "error";
202
+ "vitest/prefer-to-contain": "error";
203
+ "vitest/prefer-to-have-length": "error";
204
+ "vitest/prefer-todo": "warn";
205
+ "vitest/require-hook": "error";
206
+ "vitest/require-to-throw-message": "error";
207
+ "vitest/require-top-level-describe": "off";
208
+ "vitest/valid-expect": "error";
209
+ "vitest/valid-expect-in-promise": "error";
210
+ "vitest/valid-title": "error";
211
+ "vitest/expect-expect": "error";
212
+ "vitest/valid-describe-callback": "error";
213
+ "vitest/require-local-test-context-for-concurrent-snapshots": "error";
214
+ "vitest/no-import-node-test": "error";
215
+ };
216
+ plugins: {
217
+ readonly vitest: eslint.ESLint.Plugin;
218
+ };
219
+ files: string[];
220
+ ignores: string[];
221
+ }[]>;
222
+
223
+ declare namespace __configs_vitest {
224
+ export { vitestConfig as default };
225
+ }
226
+
227
+ declare function jestConfig(): Promise<{
228
+ name: string;
229
+ rules: {
230
+ "jest/consistent-test-it": ["error", {
231
+ fn: "test";
232
+ withinDescribe: "it";
233
+ }];
234
+ "jest/expect-expect": "error";
235
+ "jest/no-alias-methods": "error";
236
+ "jest/no-commented-out-tests": "error";
237
+ "jest/no-conditional-in-test": "error";
238
+ "jest/no-confusing-set-timeout": "error";
239
+ "jest/no-duplicate-hooks": "error";
240
+ "jest/no-hooks": "off";
241
+ "jest/no-large-snapshots": "off";
242
+ "jest/no-restricted-jest-methods": "off";
243
+ "jest/no-restricted-matchers": "off";
244
+ "jest/no-test-return-statement": "error";
245
+ "jest/no-untyped-mock-factory": "off";
246
+ "jest/prefer-called-with": "error";
247
+ "jest/prefer-comparison-matcher": "error";
248
+ "jest/prefer-each": "error";
249
+ "jest/prefer-equality-matcher": "error";
250
+ "jest/prefer-expect-assertions": "off";
251
+ "jest/prefer-expect-resolves": "error";
252
+ "jest/prefer-hooks-in-order": "error";
253
+ "jest/prefer-hooks-on-top": "error";
254
+ "jest/prefer-lowercase-title": "off";
255
+ "jest/prefer-mock-promise-shorthand": "error";
256
+ "jest/prefer-snapshot-hint": "error";
257
+ "jest/prefer-spy-on": "off";
258
+ "jest/prefer-strict-equal": "error";
259
+ "jest/prefer-todo": "warn";
260
+ "jest/require-hook": "error";
261
+ "jest/require-to-throw-message": "error";
262
+ "jest/require-top-level-describe": "off";
263
+ "jest/unbound-method": "off";
264
+ };
265
+ files: Array<string | string[]>;
266
+ ignores: string[];
267
+ language?: string;
268
+ languageOptions?: eslint.Linter.LanguageOptions;
269
+ linterOptions?: eslint.Linter.LinterOptions;
270
+ processor?: string | eslint.Linter.Processor;
271
+ plugins?: Record<string, eslint.ESLint.Plugin>;
272
+ settings?: Record<string, unknown>;
273
+ }[]>;
274
+
275
+ declare namespace __configs_jest {
276
+ export { jestConfig as default };
277
+ }
278
+
279
+ declare function astroConfig(): Promise<({
280
+ files: string[];
281
+ languageOptions: {
282
+ globals: {
283
+ Astro: false;
284
+ Fragment: false;
285
+ __dirname: false;
286
+ __filename: false;
287
+ AbortController: false;
288
+ AbortSignal: false;
289
+ atob: false;
290
+ Blob: false;
291
+ BroadcastChannel: false;
292
+ btoa: false;
293
+ Buffer: false;
294
+ ByteLengthQueuingStrategy: false;
295
+ clearImmediate: false;
296
+ clearInterval: false;
297
+ clearTimeout: false;
298
+ CloseEvent: false;
299
+ CompressionStream: false;
300
+ console: false;
301
+ CountQueuingStrategy: false;
302
+ crypto: false;
303
+ Crypto: false;
304
+ CryptoKey: false;
305
+ CustomEvent: false;
306
+ DecompressionStream: false;
307
+ DOMException: false;
308
+ Event: false;
309
+ EventTarget: false;
310
+ exports: true;
311
+ fetch: false;
312
+ File: false;
313
+ FormData: false;
314
+ global: false;
315
+ Headers: false;
316
+ MessageChannel: false;
317
+ MessageEvent: false;
318
+ MessagePort: false;
319
+ module: false;
320
+ navigator: false;
321
+ Navigator: false;
322
+ performance: false;
323
+ Performance: false;
324
+ PerformanceEntry: false;
325
+ PerformanceMark: false;
326
+ PerformanceMeasure: false;
327
+ PerformanceObserver: false;
328
+ PerformanceObserverEntryList: false;
329
+ PerformanceResourceTiming: false;
330
+ process: false;
331
+ queueMicrotask: false;
332
+ ReadableByteStreamController: false;
333
+ ReadableStream: false;
334
+ ReadableStreamBYOBReader: false;
335
+ ReadableStreamBYOBRequest: false;
336
+ ReadableStreamDefaultController: false;
337
+ ReadableStreamDefaultReader: false;
338
+ Request: false;
339
+ require: false;
340
+ Response: false;
341
+ setImmediate: false;
342
+ setInterval: false;
343
+ setTimeout: false;
344
+ structuredClone: false;
345
+ SubtleCrypto: false;
346
+ TextDecoder: false;
347
+ TextDecoderStream: false;
348
+ TextEncoder: false;
349
+ TextEncoderStream: false;
350
+ TransformStream: false;
351
+ TransformStreamDefaultController: false;
352
+ URL: false;
353
+ URLSearchParams: false;
354
+ WebAssembly: false;
355
+ WebSocket: false;
356
+ WritableStream: false;
357
+ WritableStreamDefaultController: false;
358
+ WritableStreamDefaultWriter: false;
359
+ };
360
+ parser: {
361
+ default: typeof astro_eslint_parser;
362
+ ParseError: typeof astro_eslint_parser.ParseError;
363
+ VisitorKeys: eslint.SourceCode.VisitorKeys;
364
+ meta: typeof astro_eslint_parser.meta;
365
+ name: string;
366
+ parseForESLint: typeof astro_eslint_parser.parseForESLint;
367
+ parseTemplate: typeof astro_eslint_parser.parseTemplate;
368
+ traverseNodes: typeof astro_eslint_parser.traverseNodes;
369
+ };
370
+ parserOptions: {
371
+ extraFileExtensions: string[];
372
+ parser: _typescript_eslint_utils_ts_eslint.Parser.LooseParserModule;
373
+ };
374
+ sourceType: "module";
375
+ };
376
+ name: string;
377
+ plugins: {
378
+ astro: typeof eslint_plugin_astro;
379
+ "jsx-a11y": {
380
+ configs: {
381
+ recommended: eslint.Linter.Config<eslint.Linter.RulesRecord>;
382
+ };
383
+ };
384
+ };
385
+ processor: string;
386
+ rules: {
387
+ "astro/missing-client-only-directive-value": "error";
388
+ "astro/no-conflict-set-directives": "error";
389
+ "astro/no-deprecated-astro-canonicalurl": "error";
390
+ "astro/no-deprecated-astro-fetchcontent": "error";
391
+ "astro/no-deprecated-astro-resolve": "error";
392
+ "astro/no-deprecated-getentrybyslug": "error";
393
+ "astro/no-exports-from-components": "off";
394
+ "astro/no-unused-define-vars-in-style": "error";
395
+ "astro/valid-compile": "error";
396
+ };
397
+ settings?: undefined;
398
+ } | {
399
+ files: string[];
400
+ languageOptions: {
401
+ parserOptions: _typescript_eslint_utils_ts_eslint.ParserOptions | undefined;
402
+ globals?: undefined;
403
+ parser?: undefined;
404
+ sourceType?: undefined;
405
+ };
406
+ name: string;
407
+ rules: Partial<Record<string, _typescript_eslint_utils_ts_eslint.SharedConfig.RuleEntry>> | undefined;
408
+ plugins?: undefined;
409
+ processor?: undefined;
410
+ settings?: undefined;
411
+ } | {
412
+ name: string;
413
+ settings: {
414
+ "import-x/core-modules": string[];
415
+ };
416
+ files?: undefined;
417
+ languageOptions?: undefined;
418
+ plugins?: undefined;
419
+ processor?: undefined;
420
+ rules?: undefined;
421
+ })[]>;
422
+
423
+ declare namespace __configs_astro {
424
+ export { astroConfig as default };
425
+ }
426
+
427
+ declare function tanstackQueryConfig(): Promise<{
428
+ files: string[];
429
+ name: string;
430
+ plugins: {
431
+ "@tanstack/query": ESLint.Plugin;
432
+ };
433
+ rules: {
434
+ "@tanstack/query/exhaustive-deps": "error";
435
+ "@tanstack/query/no-rest-destructuring": "warn";
436
+ "@tanstack/query/stable-query-client": "error";
437
+ };
438
+ }[]>;
439
+
440
+ declare namespace __configs_tanstack_query {
441
+ export { tanstackQueryConfig as default };
442
+ }
443
+
444
+ declare function reactConfig(): Promise<{
445
+ files: string[];
446
+ languageOptions: {
447
+ globals: {
448
+ AbortController: false;
449
+ AbortSignal: false;
450
+ AbsoluteOrientationSensor: false;
451
+ AbstractRange: false;
452
+ Accelerometer: false;
453
+ addEventListener: false;
454
+ ai: false;
455
+ AI: false;
456
+ AITextSession: false;
457
+ alert: false;
458
+ AnalyserNode: false;
459
+ Animation: false;
460
+ AnimationEffect: false;
461
+ AnimationEvent: false;
462
+ AnimationPlaybackEvent: false;
463
+ AnimationTimeline: false;
464
+ atob: false;
465
+ Attr: false;
466
+ Audio: false;
467
+ AudioBuffer: false;
468
+ AudioBufferSourceNode: false;
469
+ AudioContext: false;
470
+ AudioData: false;
471
+ AudioDecoder: false;
472
+ AudioDestinationNode: false;
473
+ AudioEncoder: false;
474
+ AudioListener: false;
475
+ AudioNode: false;
476
+ AudioParam: false;
477
+ AudioParamMap: false;
478
+ AudioProcessingEvent: false;
479
+ AudioScheduledSourceNode: false;
480
+ AudioSinkInfo: false;
481
+ AudioWorklet: false;
482
+ AudioWorkletGlobalScope: false;
483
+ AudioWorkletNode: false;
484
+ AudioWorkletProcessor: false;
485
+ AuthenticatorAssertionResponse: false;
486
+ AuthenticatorAttestationResponse: false;
487
+ AuthenticatorResponse: false;
488
+ BackgroundFetchManager: false;
489
+ BackgroundFetchRecord: false;
490
+ BackgroundFetchRegistration: false;
491
+ BarcodeDetector: false;
492
+ BarProp: false;
493
+ BaseAudioContext: false;
494
+ BatteryManager: false;
495
+ BeforeUnloadEvent: false;
496
+ BiquadFilterNode: false;
497
+ Blob: false;
498
+ BlobEvent: false;
499
+ Bluetooth: false;
500
+ BluetoothCharacteristicProperties: false;
501
+ BluetoothDevice: false;
502
+ BluetoothRemoteGATTCharacteristic: false;
503
+ BluetoothRemoteGATTDescriptor: false;
504
+ BluetoothRemoteGATTServer: false;
505
+ BluetoothRemoteGATTService: false;
506
+ BluetoothUUID: false;
507
+ blur: false;
508
+ BroadcastChannel: false;
509
+ BrowserCaptureMediaStreamTrack: false;
510
+ btoa: false;
511
+ ByteLengthQueuingStrategy: false;
512
+ Cache: false;
513
+ caches: false;
514
+ CacheStorage: false;
515
+ cancelAnimationFrame: false;
516
+ cancelIdleCallback: false;
517
+ CanvasCaptureMediaStream: false;
518
+ CanvasCaptureMediaStreamTrack: false;
519
+ CanvasGradient: false;
520
+ CanvasPattern: false;
521
+ CanvasRenderingContext2D: false;
522
+ CaptureController: false;
523
+ CaretPosition: false;
524
+ CDATASection: false;
525
+ ChannelMergerNode: false;
526
+ ChannelSplitterNode: false;
527
+ ChapterInformation: false;
528
+ CharacterBoundsUpdateEvent: false;
529
+ CharacterData: false;
530
+ clearInterval: false;
531
+ clearTimeout: false;
532
+ clientInformation: false;
533
+ Clipboard: false;
534
+ ClipboardEvent: false;
535
+ ClipboardItem: false;
536
+ close: false;
537
+ closed: false;
538
+ CloseEvent: false;
539
+ CloseWatcher: false;
540
+ Comment: false;
541
+ CompositionEvent: false;
542
+ CompressionStream: false;
543
+ confirm: false;
544
+ console: false;
545
+ ConstantSourceNode: false;
546
+ ContentVisibilityAutoStateChangeEvent: false;
547
+ ConvolverNode: false;
548
+ CookieChangeEvent: false;
549
+ CookieDeprecationLabel: false;
550
+ cookieStore: false;
551
+ CookieStore: false;
552
+ CookieStoreManager: false;
553
+ CountQueuingStrategy: false;
554
+ createImageBitmap: false;
555
+ Credential: false;
556
+ credentialless: false;
557
+ CredentialsContainer: false;
558
+ CropTarget: false;
559
+ crossOriginIsolated: false;
560
+ crypto: false;
561
+ Crypto: false;
562
+ CryptoKey: false;
563
+ CSS: false;
564
+ CSSAnimation: false;
565
+ CSSConditionRule: false;
566
+ CSSContainerRule: false;
567
+ CSSCounterStyleRule: false;
568
+ CSSFontFaceRule: false;
569
+ CSSFontFeatureValuesRule: false;
570
+ CSSFontPaletteValuesRule: false;
571
+ CSSGroupingRule: false;
572
+ CSSImageValue: false;
573
+ CSSImportRule: false;
574
+ CSSKeyframeRule: false;
575
+ CSSKeyframesRule: false;
576
+ CSSKeywordValue: false;
577
+ CSSLayerBlockRule: false;
578
+ CSSLayerStatementRule: false;
579
+ CSSMarginRule: false;
580
+ CSSMathClamp: false;
581
+ CSSMathInvert: false;
582
+ CSSMathMax: false;
583
+ CSSMathMin: false;
584
+ CSSMathNegate: false;
585
+ CSSMathProduct: false;
586
+ CSSMathSum: false;
587
+ CSSMathValue: false;
588
+ CSSMatrixComponent: false;
589
+ CSSMediaRule: false;
590
+ CSSNamespaceRule: false;
591
+ CSSNestedDeclarations: false;
592
+ CSSNumericArray: false;
593
+ CSSNumericValue: false;
594
+ CSSPageDescriptors: false;
595
+ CSSPageRule: false;
596
+ CSSPerspective: false;
597
+ CSSPositionTryDescriptors: false;
598
+ CSSPositionTryRule: false;
599
+ CSSPositionValue: false;
600
+ CSSPropertyRule: false;
601
+ CSSRotate: false;
602
+ CSSRule: false;
603
+ CSSRuleList: false;
604
+ CSSScale: false;
605
+ CSSScopeRule: false;
606
+ CSSSkew: false;
607
+ CSSSkewX: false;
608
+ CSSSkewY: false;
609
+ CSSStartingStyleRule: false;
610
+ CSSStyleDeclaration: false;
611
+ CSSStyleRule: false;
612
+ CSSStyleSheet: false;
613
+ CSSStyleValue: false;
614
+ CSSSupportsRule: false;
615
+ CSSTransformComponent: false;
616
+ CSSTransformValue: false;
617
+ CSSTransition: false;
618
+ CSSTranslate: false;
619
+ CSSUnitValue: false;
620
+ CSSUnparsedValue: false;
621
+ CSSVariableReferenceValue: false;
622
+ CSSViewTransitionRule: false;
623
+ currentFrame: false;
624
+ currentTime: false;
625
+ CustomElementRegistry: false;
626
+ customElements: false;
627
+ CustomEvent: false;
628
+ CustomStateSet: false;
629
+ DataTransfer: false;
630
+ DataTransferItem: false;
631
+ DataTransferItemList: false;
632
+ DecompressionStream: false;
633
+ DelayNode: false;
634
+ DelegatedInkTrailPresenter: false;
635
+ DeviceMotionEvent: false;
636
+ DeviceMotionEventAcceleration: false;
637
+ DeviceMotionEventRotationRate: false;
638
+ DeviceOrientationEvent: false;
639
+ devicePixelRatio: false;
640
+ dispatchEvent: false;
641
+ document: false;
642
+ Document: false;
643
+ DocumentFragment: false;
644
+ documentPictureInPicture: false;
645
+ DocumentPictureInPicture: false;
646
+ DocumentPictureInPictureEvent: false;
647
+ DocumentTimeline: false;
648
+ DocumentType: false;
649
+ DOMError: false;
650
+ DOMException: false;
651
+ DOMImplementation: false;
652
+ DOMMatrix: false;
653
+ DOMMatrixReadOnly: false;
654
+ DOMParser: false;
655
+ DOMPoint: false;
656
+ DOMPointReadOnly: false;
657
+ DOMQuad: false;
658
+ DOMRect: false;
659
+ DOMRectList: false;
660
+ DOMRectReadOnly: false;
661
+ DOMStringList: false;
662
+ DOMStringMap: false;
663
+ DOMTokenList: false;
664
+ DragEvent: false;
665
+ DynamicsCompressorNode: false;
666
+ EditContext: false;
667
+ Element: false;
668
+ ElementInternals: false;
669
+ EncodedAudioChunk: false;
670
+ EncodedVideoChunk: false;
671
+ ErrorEvent: false;
672
+ event: false;
673
+ Event: false;
674
+ EventCounts: false;
675
+ EventSource: false;
676
+ EventTarget: false;
677
+ external: false;
678
+ External: false;
679
+ EyeDropper: false;
680
+ FeaturePolicy: false;
681
+ FederatedCredential: false;
682
+ fence: false;
683
+ Fence: false;
684
+ FencedFrameConfig: false;
685
+ fetch: false;
686
+ fetchLater: false;
687
+ FetchLaterResult: false;
688
+ File: false;
689
+ FileList: false;
690
+ FileReader: false;
691
+ FileSystem: false;
692
+ FileSystemDirectoryEntry: false;
693
+ FileSystemDirectoryHandle: false;
694
+ FileSystemDirectoryReader: false;
695
+ FileSystemEntry: false;
696
+ FileSystemFileEntry: false;
697
+ FileSystemFileHandle: false;
698
+ FileSystemHandle: false;
699
+ FileSystemWritableFileStream: false;
700
+ find: false;
701
+ Float16Array: false;
702
+ focus: false;
703
+ FocusEvent: false;
704
+ FontData: false;
705
+ FontFace: false;
706
+ FontFaceSet: false;
707
+ FontFaceSetLoadEvent: false;
708
+ FormData: false;
709
+ FormDataEvent: false;
710
+ FragmentDirective: false;
711
+ frameElement: false;
712
+ frames: false;
713
+ GainNode: false;
714
+ Gamepad: false;
715
+ GamepadAxisMoveEvent: false;
716
+ GamepadButton: false;
717
+ GamepadButtonEvent: false;
718
+ GamepadEvent: false;
719
+ GamepadHapticActuator: false;
720
+ GamepadPose: false;
721
+ Geolocation: false;
722
+ GeolocationCoordinates: false;
723
+ GeolocationPosition: false;
724
+ GeolocationPositionError: false;
725
+ getComputedStyle: false;
726
+ getScreenDetails: false;
727
+ getSelection: false;
728
+ GPU: false;
729
+ GPUAdapter: false;
730
+ GPUAdapterInfo: false;
731
+ GPUBindGroup: false;
732
+ GPUBindGroupLayout: false;
733
+ GPUBuffer: false;
734
+ GPUBufferUsage: false;
735
+ GPUCanvasContext: false;
736
+ GPUColorWrite: false;
737
+ GPUCommandBuffer: false;
738
+ GPUCommandEncoder: false;
739
+ GPUCompilationInfo: false;
740
+ GPUCompilationMessage: false;
741
+ GPUComputePassEncoder: false;
742
+ GPUComputePipeline: false;
743
+ GPUDevice: false;
744
+ GPUDeviceLostInfo: false;
745
+ GPUError: false;
746
+ GPUExternalTexture: false;
747
+ GPUInternalError: false;
748
+ GPUMapMode: false;
749
+ GPUOutOfMemoryError: false;
750
+ GPUPipelineError: false;
751
+ GPUPipelineLayout: false;
752
+ GPUQuerySet: false;
753
+ GPUQueue: false;
754
+ GPURenderBundle: false;
755
+ GPURenderBundleEncoder: false;
756
+ GPURenderPassEncoder: false;
757
+ GPURenderPipeline: false;
758
+ GPUSampler: false;
759
+ GPUShaderModule: false;
760
+ GPUShaderStage: false;
761
+ GPUSupportedFeatures: false;
762
+ GPUSupportedLimits: false;
763
+ GPUTexture: false;
764
+ GPUTextureUsage: false;
765
+ GPUTextureView: false;
766
+ GPUUncapturedErrorEvent: false;
767
+ GPUValidationError: false;
768
+ GravitySensor: false;
769
+ Gyroscope: false;
770
+ HashChangeEvent: false;
771
+ Headers: false;
772
+ HID: false;
773
+ HIDConnectionEvent: false;
774
+ HIDDevice: false;
775
+ HIDInputReportEvent: false;
776
+ Highlight: false;
777
+ HighlightRegistry: false;
778
+ history: false;
779
+ History: false;
780
+ HTMLAllCollection: false;
781
+ HTMLAnchorElement: false;
782
+ HTMLAreaElement: false;
783
+ HTMLAudioElement: false;
784
+ HTMLBaseElement: false;
785
+ HTMLBodyElement: false;
786
+ HTMLBRElement: false;
787
+ HTMLButtonElement: false;
788
+ HTMLCanvasElement: false;
789
+ HTMLCollection: false;
790
+ HTMLDataElement: false;
791
+ HTMLDataListElement: false;
792
+ HTMLDetailsElement: false;
793
+ HTMLDialogElement: false;
794
+ HTMLDirectoryElement: false;
795
+ HTMLDivElement: false;
796
+ HTMLDListElement: false;
797
+ HTMLDocument: false;
798
+ HTMLElement: false;
799
+ HTMLEmbedElement: false;
800
+ HTMLFencedFrameElement: false;
801
+ HTMLFieldSetElement: false;
802
+ HTMLFontElement: false;
803
+ HTMLFormControlsCollection: false;
804
+ HTMLFormElement: false;
805
+ HTMLFrameElement: false;
806
+ HTMLFrameSetElement: false;
807
+ HTMLHeadElement: false;
808
+ HTMLHeadingElement: false;
809
+ HTMLHRElement: false;
810
+ HTMLHtmlElement: false;
811
+ HTMLIFrameElement: false;
812
+ HTMLImageElement: false;
813
+ HTMLInputElement: false;
814
+ HTMLLabelElement: false;
815
+ HTMLLegendElement: false;
816
+ HTMLLIElement: false;
817
+ HTMLLinkElement: false;
818
+ HTMLMapElement: false;
819
+ HTMLMarqueeElement: false;
820
+ HTMLMediaElement: false;
821
+ HTMLMenuElement: false;
822
+ HTMLMetaElement: false;
823
+ HTMLMeterElement: false;
824
+ HTMLModElement: false;
825
+ HTMLObjectElement: false;
826
+ HTMLOListElement: false;
827
+ HTMLOptGroupElement: false;
828
+ HTMLOptionElement: false;
829
+ HTMLOptionsCollection: false;
830
+ HTMLOutputElement: false;
831
+ HTMLParagraphElement: false;
832
+ HTMLParamElement: false;
833
+ HTMLPictureElement: false;
834
+ HTMLPreElement: false;
835
+ HTMLProgressElement: false;
836
+ HTMLQuoteElement: false;
837
+ HTMLScriptElement: false;
838
+ HTMLSelectElement: false;
839
+ HTMLSlotElement: false;
840
+ HTMLSourceElement: false;
841
+ HTMLSpanElement: false;
842
+ HTMLStyleElement: false;
843
+ HTMLTableCaptionElement: false;
844
+ HTMLTableCellElement: false;
845
+ HTMLTableColElement: false;
846
+ HTMLTableElement: false;
847
+ HTMLTableRowElement: false;
848
+ HTMLTableSectionElement: false;
849
+ HTMLTemplateElement: false;
850
+ HTMLTextAreaElement: false;
851
+ HTMLTimeElement: false;
852
+ HTMLTitleElement: false;
853
+ HTMLTrackElement: false;
854
+ HTMLUListElement: false;
855
+ HTMLUnknownElement: false;
856
+ HTMLVideoElement: false;
857
+ IDBCursor: false;
858
+ IDBCursorWithValue: false;
859
+ IDBDatabase: false;
860
+ IDBFactory: false;
861
+ IDBIndex: false;
862
+ IDBKeyRange: false;
863
+ IDBObjectStore: false;
864
+ IDBOpenDBRequest: false;
865
+ IDBRequest: false;
866
+ IDBTransaction: false;
867
+ IDBVersionChangeEvent: false;
868
+ IdentityCredential: false;
869
+ IdentityCredentialError: false;
870
+ IdentityProvider: false;
871
+ IdleDeadline: false;
872
+ IdleDetector: false;
873
+ IIRFilterNode: false;
874
+ Image: false;
875
+ ImageBitmap: false;
876
+ ImageBitmapRenderingContext: false;
877
+ ImageCapture: false;
878
+ ImageData: false;
879
+ ImageDecoder: false;
880
+ ImageTrack: false;
881
+ ImageTrackList: false;
882
+ indexedDB: false;
883
+ Ink: false;
884
+ innerHeight: false;
885
+ innerWidth: false;
886
+ InputDeviceCapabilities: false;
887
+ InputDeviceInfo: false;
888
+ InputEvent: false;
889
+ IntersectionObserver: false;
890
+ IntersectionObserverEntry: false;
891
+ isSecureContext: false;
892
+ Keyboard: false;
893
+ KeyboardEvent: false;
894
+ KeyboardLayoutMap: false;
895
+ KeyframeEffect: false;
896
+ LargestContentfulPaint: false;
897
+ LaunchParams: false;
898
+ launchQueue: false;
899
+ LaunchQueue: false;
900
+ LayoutShift: false;
901
+ LayoutShiftAttribution: false;
902
+ length: false;
903
+ LinearAccelerationSensor: false;
904
+ localStorage: false;
905
+ location: true;
906
+ Location: false;
907
+ locationbar: false;
908
+ Lock: false;
909
+ LockManager: false;
910
+ matchMedia: false;
911
+ MathMLElement: false;
912
+ MediaCapabilities: false;
913
+ MediaCapabilitiesInfo: false;
914
+ MediaDeviceInfo: false;
915
+ MediaDevices: false;
916
+ MediaElementAudioSourceNode: false;
917
+ MediaEncryptedEvent: false;
918
+ MediaError: false;
919
+ MediaKeyError: false;
920
+ MediaKeyMessageEvent: false;
921
+ MediaKeys: false;
922
+ MediaKeySession: false;
923
+ MediaKeyStatusMap: false;
924
+ MediaKeySystemAccess: false;
925
+ MediaList: false;
926
+ MediaMetadata: false;
927
+ MediaQueryList: false;
928
+ MediaQueryListEvent: false;
929
+ MediaRecorder: false;
930
+ MediaRecorderErrorEvent: false;
931
+ MediaSession: false;
932
+ MediaSource: false;
933
+ MediaSourceHandle: false;
934
+ MediaStream: false;
935
+ MediaStreamAudioDestinationNode: false;
936
+ MediaStreamAudioSourceNode: false;
937
+ MediaStreamEvent: false;
938
+ MediaStreamTrack: false;
939
+ MediaStreamTrackAudioSourceNode: false;
940
+ MediaStreamTrackAudioStats: false;
941
+ MediaStreamTrackEvent: false;
942
+ MediaStreamTrackGenerator: false;
943
+ MediaStreamTrackProcessor: false;
944
+ MediaStreamTrackVideoStats: false;
945
+ menubar: false;
946
+ MessageChannel: false;
947
+ MessageEvent: false;
948
+ MessagePort: false;
949
+ MIDIAccess: false;
950
+ MIDIConnectionEvent: false;
951
+ MIDIInput: false;
952
+ MIDIInputMap: false;
953
+ MIDIMessageEvent: false;
954
+ MIDIOutput: false;
955
+ MIDIOutputMap: false;
956
+ MIDIPort: false;
957
+ MimeType: false;
958
+ MimeTypeArray: false;
959
+ model: false;
960
+ ModelGenericSession: false;
961
+ ModelManager: false;
962
+ MouseEvent: false;
963
+ moveBy: false;
964
+ moveTo: false;
965
+ MutationEvent: false;
966
+ MutationObserver: false;
967
+ MutationRecord: false;
968
+ name: false;
969
+ NamedNodeMap: false;
970
+ NavigateEvent: false;
971
+ navigation: false;
972
+ Navigation: false;
973
+ NavigationActivation: false;
974
+ NavigationCurrentEntryChangeEvent: false;
975
+ NavigationDestination: false;
976
+ NavigationHistoryEntry: false;
977
+ NavigationPreloadManager: false;
978
+ NavigationTransition: false;
979
+ navigator: false;
980
+ Navigator: false;
981
+ NavigatorLogin: false;
982
+ NavigatorManagedData: false;
983
+ NavigatorUAData: false;
984
+ NetworkInformation: false;
985
+ Node: false;
986
+ NodeFilter: false;
987
+ NodeIterator: false;
988
+ NodeList: false;
989
+ Notification: false;
990
+ NotifyPaintEvent: false;
991
+ NotRestoredReasonDetails: false;
992
+ NotRestoredReasons: false;
993
+ OfflineAudioCompletionEvent: false;
994
+ OfflineAudioContext: false;
995
+ offscreenBuffering: false;
996
+ OffscreenCanvas: false;
997
+ OffscreenCanvasRenderingContext2D: false;
998
+ onabort: true;
999
+ onafterprint: true;
1000
+ onanimationcancel: true;
1001
+ onanimationend: true;
1002
+ onanimationiteration: true;
1003
+ onanimationstart: true;
1004
+ onappinstalled: true;
1005
+ onauxclick: true;
1006
+ onbeforeinput: true;
1007
+ onbeforeinstallprompt: true;
1008
+ onbeforematch: true;
1009
+ onbeforeprint: true;
1010
+ onbeforetoggle: true;
1011
+ onbeforeunload: true;
1012
+ onbeforexrselect: true;
1013
+ onblur: true;
1014
+ oncancel: true;
1015
+ oncanplay: true;
1016
+ oncanplaythrough: true;
1017
+ onchange: true;
1018
+ onclick: true;
1019
+ onclose: true;
1020
+ oncontentvisibilityautostatechange: true;
1021
+ oncontextlost: true;
1022
+ oncontextmenu: true;
1023
+ oncontextrestored: true;
1024
+ oncopy: true;
1025
+ oncuechange: true;
1026
+ oncut: true;
1027
+ ondblclick: true;
1028
+ ondevicemotion: true;
1029
+ ondeviceorientation: true;
1030
+ ondeviceorientationabsolute: true;
1031
+ ondrag: true;
1032
+ ondragend: true;
1033
+ ondragenter: true;
1034
+ ondragleave: true;
1035
+ ondragover: true;
1036
+ ondragstart: true;
1037
+ ondrop: true;
1038
+ ondurationchange: true;
1039
+ onemptied: true;
1040
+ onended: true;
1041
+ onerror: true;
1042
+ onfocus: true;
1043
+ onformdata: true;
1044
+ ongamepadconnected: true;
1045
+ ongamepaddisconnected: true;
1046
+ ongotpointercapture: true;
1047
+ onhashchange: true;
1048
+ oninput: true;
1049
+ oninvalid: true;
1050
+ onkeydown: true;
1051
+ onkeypress: true;
1052
+ onkeyup: true;
1053
+ onlanguagechange: true;
1054
+ onload: true;
1055
+ onloadeddata: true;
1056
+ onloadedmetadata: true;
1057
+ onloadstart: true;
1058
+ onlostpointercapture: true;
1059
+ onmessage: true;
1060
+ onmessageerror: true;
1061
+ onmousedown: true;
1062
+ onmouseenter: true;
1063
+ onmouseleave: true;
1064
+ onmousemove: true;
1065
+ onmouseout: true;
1066
+ onmouseover: true;
1067
+ onmouseup: true;
1068
+ onmousewheel: true;
1069
+ onoffline: true;
1070
+ ononline: true;
1071
+ onpagehide: true;
1072
+ onpagereveal: true;
1073
+ onpageshow: true;
1074
+ onpageswap: true;
1075
+ onpaste: true;
1076
+ onpause: true;
1077
+ onplay: true;
1078
+ onplaying: true;
1079
+ onpointercancel: true;
1080
+ onpointerdown: true;
1081
+ onpointerenter: true;
1082
+ onpointerleave: true;
1083
+ onpointermove: true;
1084
+ onpointerout: true;
1085
+ onpointerover: true;
1086
+ onpointerrawupdate: true;
1087
+ onpointerup: true;
1088
+ onpopstate: true;
1089
+ onprogress: true;
1090
+ onratechange: true;
1091
+ onrejectionhandled: true;
1092
+ onreset: true;
1093
+ onresize: true;
1094
+ onscroll: true;
1095
+ onscrollend: true;
1096
+ onscrollsnapchange: true;
1097
+ onscrollsnapchanging: true;
1098
+ onsearch: true;
1099
+ onsecuritypolicyviolation: true;
1100
+ onseeked: true;
1101
+ onseeking: true;
1102
+ onselect: true;
1103
+ onselectionchange: true;
1104
+ onselectstart: true;
1105
+ onslotchange: true;
1106
+ onstalled: true;
1107
+ onstorage: true;
1108
+ onsubmit: true;
1109
+ onsuspend: true;
1110
+ ontimeupdate: true;
1111
+ ontoggle: true;
1112
+ ontransitioncancel: true;
1113
+ ontransitionend: true;
1114
+ ontransitionrun: true;
1115
+ ontransitionstart: true;
1116
+ onunhandledrejection: true;
1117
+ onunload: true;
1118
+ onvolumechange: true;
1119
+ onwaiting: true;
1120
+ onwheel: true;
1121
+ open: false;
1122
+ opener: false;
1123
+ Option: false;
1124
+ OrientationSensor: false;
1125
+ origin: false;
1126
+ originAgentCluster: false;
1127
+ OscillatorNode: false;
1128
+ OTPCredential: false;
1129
+ outerHeight: false;
1130
+ outerWidth: false;
1131
+ OverconstrainedError: false;
1132
+ PageRevealEvent: false;
1133
+ PageSwapEvent: false;
1134
+ PageTransitionEvent: false;
1135
+ pageXOffset: false;
1136
+ pageYOffset: false;
1137
+ PannerNode: false;
1138
+ parent: false;
1139
+ PasswordCredential: false;
1140
+ Path2D: false;
1141
+ PaymentAddress: false;
1142
+ PaymentManager: false;
1143
+ PaymentMethodChangeEvent: false;
1144
+ PaymentRequest: false;
1145
+ PaymentRequestUpdateEvent: false;
1146
+ PaymentResponse: false;
1147
+ performance: false;
1148
+ Performance: false;
1149
+ PerformanceElementTiming: false;
1150
+ PerformanceEntry: false;
1151
+ PerformanceEventTiming: false;
1152
+ PerformanceLongAnimationFrameTiming: false;
1153
+ PerformanceLongTaskTiming: false;
1154
+ PerformanceMark: false;
1155
+ PerformanceMeasure: false;
1156
+ PerformanceNavigation: false;
1157
+ PerformanceNavigationTiming: false;
1158
+ PerformanceObserver: false;
1159
+ PerformanceObserverEntryList: false;
1160
+ PerformancePaintTiming: false;
1161
+ PerformanceResourceTiming: false;
1162
+ PerformanceScriptTiming: false;
1163
+ PerformanceServerTiming: false;
1164
+ PerformanceTiming: false;
1165
+ PeriodicSyncManager: false;
1166
+ PeriodicWave: false;
1167
+ Permissions: false;
1168
+ PermissionStatus: false;
1169
+ PERSISTENT: false;
1170
+ personalbar: false;
1171
+ PictureInPictureEvent: false;
1172
+ PictureInPictureWindow: false;
1173
+ Plugin: false;
1174
+ PluginArray: false;
1175
+ PointerEvent: false;
1176
+ PopStateEvent: false;
1177
+ postMessage: false;
1178
+ Presentation: false;
1179
+ PresentationAvailability: false;
1180
+ PresentationConnection: false;
1181
+ PresentationConnectionAvailableEvent: false;
1182
+ PresentationConnectionCloseEvent: false;
1183
+ PresentationConnectionList: false;
1184
+ PresentationReceiver: false;
1185
+ PresentationRequest: false;
1186
+ PressureObserver: false;
1187
+ PressureRecord: false;
1188
+ print: false;
1189
+ ProcessingInstruction: false;
1190
+ Profiler: false;
1191
+ ProgressEvent: false;
1192
+ PromiseRejectionEvent: false;
1193
+ prompt: false;
1194
+ ProtectedAudience: false;
1195
+ PublicKeyCredential: false;
1196
+ PushManager: false;
1197
+ PushSubscription: false;
1198
+ PushSubscriptionOptions: false;
1199
+ queryLocalFonts: false;
1200
+ queueMicrotask: false;
1201
+ RadioNodeList: false;
1202
+ Range: false;
1203
+ ReadableByteStreamController: false;
1204
+ ReadableStream: false;
1205
+ ReadableStreamBYOBReader: false;
1206
+ ReadableStreamBYOBRequest: false;
1207
+ ReadableStreamDefaultController: false;
1208
+ ReadableStreamDefaultReader: false;
1209
+ registerProcessor: false;
1210
+ RelativeOrientationSensor: false;
1211
+ RemotePlayback: false;
1212
+ removeEventListener: false;
1213
+ reportError: false;
1214
+ ReportingObserver: false;
1215
+ Request: false;
1216
+ requestAnimationFrame: false;
1217
+ requestIdleCallback: false;
1218
+ resizeBy: false;
1219
+ ResizeObserver: false;
1220
+ ResizeObserverEntry: false;
1221
+ ResizeObserverSize: false;
1222
+ resizeTo: false;
1223
+ Response: false;
1224
+ RTCCertificate: false;
1225
+ RTCDataChannel: false;
1226
+ RTCDataChannelEvent: false;
1227
+ RTCDtlsTransport: false;
1228
+ RTCDTMFSender: false;
1229
+ RTCDTMFToneChangeEvent: false;
1230
+ RTCEncodedAudioFrame: false;
1231
+ RTCEncodedVideoFrame: false;
1232
+ RTCError: false;
1233
+ RTCErrorEvent: false;
1234
+ RTCIceCandidate: false;
1235
+ RTCIceTransport: false;
1236
+ RTCPeerConnection: false;
1237
+ RTCPeerConnectionIceErrorEvent: false;
1238
+ RTCPeerConnectionIceEvent: false;
1239
+ RTCRtpReceiver: false;
1240
+ RTCRtpScriptTransform: false;
1241
+ RTCRtpSender: false;
1242
+ RTCRtpTransceiver: false;
1243
+ RTCSctpTransport: false;
1244
+ RTCSessionDescription: false;
1245
+ RTCStatsReport: false;
1246
+ RTCTrackEvent: false;
1247
+ sampleRate: false;
1248
+ scheduler: false;
1249
+ Scheduler: false;
1250
+ Scheduling: false;
1251
+ screen: false;
1252
+ Screen: false;
1253
+ ScreenDetailed: false;
1254
+ ScreenDetails: false;
1255
+ screenLeft: false;
1256
+ ScreenOrientation: false;
1257
+ screenTop: false;
1258
+ screenX: false;
1259
+ screenY: false;
1260
+ ScriptProcessorNode: false;
1261
+ scroll: false;
1262
+ scrollbars: false;
1263
+ scrollBy: false;
1264
+ ScrollTimeline: false;
1265
+ scrollTo: false;
1266
+ scrollX: false;
1267
+ scrollY: false;
1268
+ SecurityPolicyViolationEvent: false;
1269
+ Selection: false;
1270
+ self: false;
1271
+ Sensor: false;
1272
+ SensorErrorEvent: false;
1273
+ Serial: false;
1274
+ SerialPort: false;
1275
+ ServiceWorker: false;
1276
+ ServiceWorkerContainer: false;
1277
+ ServiceWorkerRegistration: false;
1278
+ sessionStorage: false;
1279
+ setInterval: false;
1280
+ setTimeout: false;
1281
+ ShadowRoot: false;
1282
+ sharedStorage: false;
1283
+ SharedStorage: false;
1284
+ SharedStorageWorklet: false;
1285
+ SharedWorker: false;
1286
+ showDirectoryPicker: false;
1287
+ showOpenFilePicker: false;
1288
+ showSaveFilePicker: false;
1289
+ SnapEvent: false;
1290
+ SourceBuffer: false;
1291
+ SourceBufferList: false;
1292
+ speechSynthesis: false;
1293
+ SpeechSynthesis: false;
1294
+ SpeechSynthesisErrorEvent: false;
1295
+ SpeechSynthesisEvent: false;
1296
+ SpeechSynthesisUtterance: false;
1297
+ SpeechSynthesisVoice: false;
1298
+ StaticRange: false;
1299
+ status: false;
1300
+ statusbar: false;
1301
+ StereoPannerNode: false;
1302
+ stop: false;
1303
+ Storage: false;
1304
+ StorageBucket: false;
1305
+ StorageBucketManager: false;
1306
+ StorageEvent: false;
1307
+ StorageManager: false;
1308
+ structuredClone: false;
1309
+ styleMedia: false;
1310
+ StylePropertyMap: false;
1311
+ StylePropertyMapReadOnly: false;
1312
+ StyleSheet: false;
1313
+ StyleSheetList: false;
1314
+ SubmitEvent: false;
1315
+ SubtleCrypto: false;
1316
+ SVGAElement: false;
1317
+ SVGAngle: false;
1318
+ SVGAnimatedAngle: false;
1319
+ SVGAnimatedBoolean: false;
1320
+ SVGAnimatedEnumeration: false;
1321
+ SVGAnimatedInteger: false;
1322
+ SVGAnimatedLength: false;
1323
+ SVGAnimatedLengthList: false;
1324
+ SVGAnimatedNumber: false;
1325
+ SVGAnimatedNumberList: false;
1326
+ SVGAnimatedPreserveAspectRatio: false;
1327
+ SVGAnimatedRect: false;
1328
+ SVGAnimatedString: false;
1329
+ SVGAnimatedTransformList: false;
1330
+ SVGAnimateElement: false;
1331
+ SVGAnimateMotionElement: false;
1332
+ SVGAnimateTransformElement: false;
1333
+ SVGAnimationElement: false;
1334
+ SVGCircleElement: false;
1335
+ SVGClipPathElement: false;
1336
+ SVGComponentTransferFunctionElement: false;
1337
+ SVGDefsElement: false;
1338
+ SVGDescElement: false;
1339
+ SVGElement: false;
1340
+ SVGEllipseElement: false;
1341
+ SVGFEBlendElement: false;
1342
+ SVGFEColorMatrixElement: false;
1343
+ SVGFEComponentTransferElement: false;
1344
+ SVGFECompositeElement: false;
1345
+ SVGFEConvolveMatrixElement: false;
1346
+ SVGFEDiffuseLightingElement: false;
1347
+ SVGFEDisplacementMapElement: false;
1348
+ SVGFEDistantLightElement: false;
1349
+ SVGFEDropShadowElement: false;
1350
+ SVGFEFloodElement: false;
1351
+ SVGFEFuncAElement: false;
1352
+ SVGFEFuncBElement: false;
1353
+ SVGFEFuncGElement: false;
1354
+ SVGFEFuncRElement: false;
1355
+ SVGFEGaussianBlurElement: false;
1356
+ SVGFEImageElement: false;
1357
+ SVGFEMergeElement: false;
1358
+ SVGFEMergeNodeElement: false;
1359
+ SVGFEMorphologyElement: false;
1360
+ SVGFEOffsetElement: false;
1361
+ SVGFEPointLightElement: false;
1362
+ SVGFESpecularLightingElement: false;
1363
+ SVGFESpotLightElement: false;
1364
+ SVGFETileElement: false;
1365
+ SVGFETurbulenceElement: false;
1366
+ SVGFilterElement: false;
1367
+ SVGForeignObjectElement: false;
1368
+ SVGGElement: false;
1369
+ SVGGeometryElement: false;
1370
+ SVGGradientElement: false;
1371
+ SVGGraphicsElement: false;
1372
+ SVGImageElement: false;
1373
+ SVGLength: false;
1374
+ SVGLengthList: false;
1375
+ SVGLinearGradientElement: false;
1376
+ SVGLineElement: false;
1377
+ SVGMarkerElement: false;
1378
+ SVGMaskElement: false;
1379
+ SVGMatrix: false;
1380
+ SVGMetadataElement: false;
1381
+ SVGMPathElement: false;
1382
+ SVGNumber: false;
1383
+ SVGNumberList: false;
1384
+ SVGPathElement: false;
1385
+ SVGPatternElement: false;
1386
+ SVGPoint: false;
1387
+ SVGPointList: false;
1388
+ SVGPolygonElement: false;
1389
+ SVGPolylineElement: false;
1390
+ SVGPreserveAspectRatio: false;
1391
+ SVGRadialGradientElement: false;
1392
+ SVGRect: false;
1393
+ SVGRectElement: false;
1394
+ SVGScriptElement: false;
1395
+ SVGSetElement: false;
1396
+ SVGStopElement: false;
1397
+ SVGStringList: false;
1398
+ SVGStyleElement: false;
1399
+ SVGSVGElement: false;
1400
+ SVGSwitchElement: false;
1401
+ SVGSymbolElement: false;
1402
+ SVGTextContentElement: false;
1403
+ SVGTextElement: false;
1404
+ SVGTextPathElement: false;
1405
+ SVGTextPositioningElement: false;
1406
+ SVGTitleElement: false;
1407
+ SVGTransform: false;
1408
+ SVGTransformList: false;
1409
+ SVGTSpanElement: false;
1410
+ SVGUnitTypes: false;
1411
+ SVGUseElement: false;
1412
+ SVGViewElement: false;
1413
+ SyncManager: false;
1414
+ TaskAttributionTiming: false;
1415
+ TaskController: false;
1416
+ TaskPriorityChangeEvent: false;
1417
+ TaskSignal: false;
1418
+ TEMPORARY: false;
1419
+ Text: false;
1420
+ TextDecoder: false;
1421
+ TextDecoderStream: false;
1422
+ TextEncoder: false;
1423
+ TextEncoderStream: false;
1424
+ TextEvent: false;
1425
+ TextFormat: false;
1426
+ TextFormatUpdateEvent: false;
1427
+ TextMetrics: false;
1428
+ TextTrack: false;
1429
+ TextTrackCue: false;
1430
+ TextTrackCueList: false;
1431
+ TextTrackList: false;
1432
+ TextUpdateEvent: false;
1433
+ TimeEvent: false;
1434
+ TimeRanges: false;
1435
+ ToggleEvent: false;
1436
+ toolbar: false;
1437
+ top: false;
1438
+ Touch: false;
1439
+ TouchEvent: false;
1440
+ TouchList: false;
1441
+ TrackEvent: false;
1442
+ TransformStream: false;
1443
+ TransformStreamDefaultController: false;
1444
+ TransitionEvent: false;
1445
+ TreeWalker: false;
1446
+ TrustedHTML: false;
1447
+ TrustedScript: false;
1448
+ TrustedScriptURL: false;
1449
+ TrustedTypePolicy: false;
1450
+ TrustedTypePolicyFactory: false;
1451
+ trustedTypes: false;
1452
+ UIEvent: false;
1453
+ URL: false;
1454
+ URLPattern: false;
1455
+ URLSearchParams: false;
1456
+ USB: false;
1457
+ USBAlternateInterface: false;
1458
+ USBConfiguration: false;
1459
+ USBConnectionEvent: false;
1460
+ USBDevice: false;
1461
+ USBEndpoint: false;
1462
+ USBInterface: false;
1463
+ USBInTransferResult: false;
1464
+ USBIsochronousInTransferPacket: false;
1465
+ USBIsochronousInTransferResult: false;
1466
+ USBIsochronousOutTransferPacket: false;
1467
+ USBIsochronousOutTransferResult: false;
1468
+ USBOutTransferResult: false;
1469
+ UserActivation: false;
1470
+ ValidityState: false;
1471
+ VideoColorSpace: false;
1472
+ VideoDecoder: false;
1473
+ VideoEncoder: false;
1474
+ VideoFrame: false;
1475
+ VideoPlaybackQuality: false;
1476
+ ViewTimeline: false;
1477
+ ViewTransition: false;
1478
+ ViewTransitionTypeSet: false;
1479
+ VirtualKeyboard: false;
1480
+ VirtualKeyboardGeometryChangeEvent: false;
1481
+ VisibilityStateEntry: false;
1482
+ visualViewport: false;
1483
+ VisualViewport: false;
1484
+ VTTCue: false;
1485
+ VTTRegion: false;
1486
+ WakeLock: false;
1487
+ WakeLockSentinel: false;
1488
+ WaveShaperNode: false;
1489
+ WebAssembly: false;
1490
+ WebGL2RenderingContext: false;
1491
+ WebGLActiveInfo: false;
1492
+ WebGLBuffer: false;
1493
+ WebGLContextEvent: false;
1494
+ WebGLFramebuffer: false;
1495
+ WebGLObject: false;
1496
+ WebGLProgram: false;
1497
+ WebGLQuery: false;
1498
+ WebGLRenderbuffer: false;
1499
+ WebGLRenderingContext: false;
1500
+ WebGLSampler: false;
1501
+ WebGLShader: false;
1502
+ WebGLShaderPrecisionFormat: false;
1503
+ WebGLSync: false;
1504
+ WebGLTexture: false;
1505
+ WebGLTransformFeedback: false;
1506
+ WebGLUniformLocation: false;
1507
+ WebGLVertexArrayObject: false;
1508
+ WebSocket: false;
1509
+ WebSocketError: false;
1510
+ WebSocketStream: false;
1511
+ WebTransport: false;
1512
+ WebTransportBidirectionalStream: false;
1513
+ WebTransportDatagramDuplexStream: false;
1514
+ WebTransportError: false;
1515
+ WebTransportReceiveStream: false;
1516
+ WebTransportSendStream: false;
1517
+ WGSLLanguageFeatures: false;
1518
+ WheelEvent: false;
1519
+ window: false;
1520
+ Window: false;
1521
+ WindowControlsOverlay: false;
1522
+ WindowControlsOverlayGeometryChangeEvent: false;
1523
+ Worker: false;
1524
+ Worklet: false;
1525
+ WorkletGlobalScope: false;
1526
+ WritableStream: false;
1527
+ WritableStreamDefaultController: false;
1528
+ WritableStreamDefaultWriter: false;
1529
+ XMLDocument: false;
1530
+ XMLHttpRequest: false;
1531
+ XMLHttpRequestEventTarget: false;
1532
+ XMLHttpRequestUpload: false;
1533
+ XMLSerializer: false;
1534
+ XPathEvaluator: false;
1535
+ XPathExpression: false;
1536
+ XPathResult: false;
1537
+ XRAnchor: false;
1538
+ XRAnchorSet: false;
1539
+ XRBoundedReferenceSpace: false;
1540
+ XRCamera: false;
1541
+ XRCPUDepthInformation: false;
1542
+ XRDepthInformation: false;
1543
+ XRDOMOverlayState: false;
1544
+ XRFrame: false;
1545
+ XRHand: false;
1546
+ XRHitTestResult: false;
1547
+ XRHitTestSource: false;
1548
+ XRInputSource: false;
1549
+ XRInputSourceArray: false;
1550
+ XRInputSourceEvent: false;
1551
+ XRInputSourcesChangeEvent: false;
1552
+ XRJointPose: false;
1553
+ XRJointSpace: false;
1554
+ XRLayer: false;
1555
+ XRLightEstimate: false;
1556
+ XRLightProbe: false;
1557
+ XRPose: false;
1558
+ XRRay: false;
1559
+ XRReferenceSpace: false;
1560
+ XRReferenceSpaceEvent: false;
1561
+ XRRenderState: false;
1562
+ XRRigidTransform: false;
1563
+ XRSession: false;
1564
+ XRSessionEvent: false;
1565
+ XRSpace: false;
1566
+ XRSystem: false;
1567
+ XRTransientInputHitTestResult: false;
1568
+ XRTransientInputHitTestSource: false;
1569
+ XRView: false;
1570
+ XRViewerPose: false;
1571
+ XRViewport: false;
1572
+ XRWebGLBinding: false;
1573
+ XRWebGLDepthInformation: false;
1574
+ XRWebGLLayer: false;
1575
+ XSLTProcessor: false;
1576
+ };
1577
+ parserOptions: {
1578
+ ecmaFeatures: {
1579
+ jsx: true;
1580
+ };
1581
+ jsxPragma: null;
1582
+ };
1583
+ };
1584
+ name: string;
1585
+ plugins: {
1586
+ "jsx-a11y": {
1587
+ configs: {
1588
+ recommended: eslint.Linter.Config<eslint.Linter.RulesRecord>;
1589
+ };
1590
+ };
1591
+ react: {
1592
+ deprecatedRules: Partial<{
1593
+ 'boolean-prop-naming': eslint.Rule.RuleModule;
1594
+ 'button-has-type': eslint.Rule.RuleModule;
1595
+ 'checked-requires-onchange-or-readonly': eslint.Rule.RuleModule;
1596
+ 'default-props-match-prop-types': eslint.Rule.RuleModule;
1597
+ 'destructuring-assignment': eslint.Rule.RuleModule;
1598
+ 'display-name': eslint.Rule.RuleModule;
1599
+ 'forbid-component-props': eslint.Rule.RuleModule;
1600
+ 'forbid-dom-props': eslint.Rule.RuleModule;
1601
+ 'forbid-elements': eslint.Rule.RuleModule;
1602
+ 'forbid-foreign-prop-types': eslint.Rule.RuleModule;
1603
+ 'forbid-prop-types': eslint.Rule.RuleModule;
1604
+ 'forward-ref-uses-ref': eslint.Rule.RuleModule;
1605
+ 'function-component-definition': eslint.Rule.RuleModule;
1606
+ 'hook-use-state': eslint.Rule.RuleModule;
1607
+ 'iframe-missing-sandbox': eslint.Rule.RuleModule;
1608
+ 'jsx-boolean-value': eslint.Rule.RuleModule;
1609
+ 'jsx-child-element-spacing': eslint.Rule.RuleModule;
1610
+ 'jsx-closing-bracket-location': eslint.Rule.RuleModule;
1611
+ 'jsx-closing-tag-location': eslint.Rule.RuleModule;
1612
+ 'jsx-curly-spacing': eslint.Rule.RuleModule;
1613
+ 'jsx-curly-newline': eslint.Rule.RuleModule;
1614
+ 'jsx-equals-spacing': eslint.Rule.RuleModule;
1615
+ 'jsx-filename-extension': eslint.Rule.RuleModule;
1616
+ 'jsx-first-prop-new-line': eslint.Rule.RuleModule;
1617
+ 'jsx-handler-names': eslint.Rule.RuleModule;
1618
+ 'jsx-indent': eslint.Rule.RuleModule;
1619
+ 'jsx-indent-props': eslint.Rule.RuleModule;
1620
+ 'jsx-key': eslint.Rule.RuleModule;
1621
+ 'jsx-max-depth': eslint.Rule.RuleModule;
1622
+ 'jsx-max-props-per-line': eslint.Rule.RuleModule;
1623
+ 'jsx-newline': eslint.Rule.RuleModule;
1624
+ 'jsx-no-bind': eslint.Rule.RuleModule;
1625
+ 'jsx-no-comment-textnodes': eslint.Rule.RuleModule;
1626
+ 'jsx-no-constructed-context-values': eslint.Rule.RuleModule;
1627
+ 'jsx-no-duplicate-props': eslint.Rule.RuleModule;
1628
+ 'jsx-no-leaked-render': eslint.Rule.RuleModule;
1629
+ 'jsx-no-literals': eslint.Rule.RuleModule;
1630
+ 'jsx-no-script-url': eslint.Rule.RuleModule;
1631
+ 'jsx-no-target-blank': eslint.Rule.RuleModule;
1632
+ 'jsx-no-useless-fragment': eslint.Rule.RuleModule;
1633
+ 'jsx-one-expression-per-line': eslint.Rule.RuleModule;
1634
+ 'jsx-no-undef': eslint.Rule.RuleModule;
1635
+ 'jsx-curly-brace-presence': eslint.Rule.RuleModule;
1636
+ 'jsx-pascal-case': eslint.Rule.RuleModule;
1637
+ 'jsx-fragments': eslint.Rule.RuleModule;
1638
+ 'jsx-props-no-multi-spaces': eslint.Rule.RuleModule;
1639
+ 'jsx-props-no-spreading': eslint.Rule.RuleModule;
1640
+ 'jsx-props-no-spread-multi': eslint.Rule.RuleModule;
1641
+ 'jsx-sort-default-props': eslint.Rule.RuleModule;
1642
+ 'jsx-sort-props': eslint.Rule.RuleModule;
1643
+ 'jsx-space-before-closing': eslint.Rule.RuleModule;
1644
+ 'jsx-tag-spacing': eslint.Rule.RuleModule;
1645
+ 'jsx-uses-react': eslint.Rule.RuleModule;
1646
+ 'jsx-uses-vars': eslint.Rule.RuleModule;
1647
+ 'jsx-wrap-multilines': eslint.Rule.RuleModule;
1648
+ 'no-invalid-html-attribute': eslint.Rule.RuleModule;
1649
+ 'no-access-state-in-setstate': eslint.Rule.RuleModule;
1650
+ 'no-adjacent-inline-elements': eslint.Rule.RuleModule;
1651
+ 'no-array-index-key': eslint.Rule.RuleModule;
1652
+ 'no-arrow-function-lifecycle': eslint.Rule.RuleModule;
1653
+ 'no-children-prop': eslint.Rule.RuleModule;
1654
+ 'no-danger': eslint.Rule.RuleModule;
1655
+ 'no-danger-with-children': eslint.Rule.RuleModule;
1656
+ 'no-deprecated': eslint.Rule.RuleModule;
1657
+ 'no-did-mount-set-state': eslint.Rule.RuleModule;
1658
+ 'no-did-update-set-state': eslint.Rule.RuleModule;
1659
+ 'no-direct-mutation-state': eslint.Rule.RuleModule;
1660
+ 'no-find-dom-node': eslint.Rule.RuleModule;
1661
+ 'no-is-mounted': eslint.Rule.RuleModule;
1662
+ 'no-multi-comp': eslint.Rule.RuleModule;
1663
+ 'no-namespace': eslint.Rule.RuleModule;
1664
+ 'no-set-state': eslint.Rule.RuleModule;
1665
+ 'no-string-refs': eslint.Rule.RuleModule;
1666
+ 'no-redundant-should-component-update': eslint.Rule.RuleModule;
1667
+ 'no-render-return-value': eslint.Rule.RuleModule;
1668
+ 'no-this-in-sfc': eslint.Rule.RuleModule;
1669
+ 'no-typos': eslint.Rule.RuleModule;
1670
+ 'no-unescaped-entities': eslint.Rule.RuleModule;
1671
+ 'no-unknown-property': eslint.Rule.RuleModule;
1672
+ 'no-unsafe': eslint.Rule.RuleModule;
1673
+ 'no-unstable-nested-components': eslint.Rule.RuleModule;
1674
+ 'no-unused-class-component-methods': eslint.Rule.RuleModule;
1675
+ 'no-unused-prop-types': eslint.Rule.RuleModule;
1676
+ 'no-unused-state': eslint.Rule.RuleModule;
1677
+ 'no-object-type-as-default-prop': eslint.Rule.RuleModule;
1678
+ 'no-will-update-set-state': eslint.Rule.RuleModule;
1679
+ 'prefer-es6-class': eslint.Rule.RuleModule;
1680
+ 'prefer-exact-props': eslint.Rule.RuleModule;
1681
+ 'prefer-read-only-props': eslint.Rule.RuleModule;
1682
+ 'prefer-stateless-function': eslint.Rule.RuleModule;
1683
+ 'prop-types': eslint.Rule.RuleModule;
1684
+ 'react-in-jsx-scope': eslint.Rule.RuleModule;
1685
+ 'require-default-props': eslint.Rule.RuleModule;
1686
+ 'require-optimization': eslint.Rule.RuleModule;
1687
+ 'require-render-return': eslint.Rule.RuleModule;
1688
+ 'self-closing-comp': eslint.Rule.RuleModule;
1689
+ 'sort-comp': eslint.Rule.RuleModule;
1690
+ 'sort-default-props': eslint.Rule.RuleModule;
1691
+ 'sort-prop-types': eslint.Rule.RuleModule;
1692
+ 'state-in-constructor': eslint.Rule.RuleModule;
1693
+ 'static-property-placement': eslint.Rule.RuleModule;
1694
+ 'style-prop-object': eslint.Rule.RuleModule;
1695
+ 'void-dom-elements-no-children': eslint.Rule.RuleModule;
1696
+ }>;
1697
+ rules: {
1698
+ 'boolean-prop-naming': eslint.Rule.RuleModule;
1699
+ 'button-has-type': eslint.Rule.RuleModule;
1700
+ 'checked-requires-onchange-or-readonly': eslint.Rule.RuleModule;
1701
+ 'default-props-match-prop-types': eslint.Rule.RuleModule;
1702
+ 'destructuring-assignment': eslint.Rule.RuleModule;
1703
+ 'display-name': eslint.Rule.RuleModule;
1704
+ 'forbid-component-props': eslint.Rule.RuleModule;
1705
+ 'forbid-dom-props': eslint.Rule.RuleModule;
1706
+ 'forbid-elements': eslint.Rule.RuleModule;
1707
+ 'forbid-foreign-prop-types': eslint.Rule.RuleModule;
1708
+ 'forbid-prop-types': eslint.Rule.RuleModule;
1709
+ 'forward-ref-uses-ref': eslint.Rule.RuleModule;
1710
+ 'function-component-definition': eslint.Rule.RuleModule;
1711
+ 'hook-use-state': eslint.Rule.RuleModule;
1712
+ 'iframe-missing-sandbox': eslint.Rule.RuleModule;
1713
+ 'jsx-boolean-value': eslint.Rule.RuleModule;
1714
+ 'jsx-child-element-spacing': eslint.Rule.RuleModule;
1715
+ 'jsx-closing-bracket-location': eslint.Rule.RuleModule;
1716
+ 'jsx-closing-tag-location': eslint.Rule.RuleModule;
1717
+ 'jsx-curly-spacing': eslint.Rule.RuleModule;
1718
+ 'jsx-curly-newline': eslint.Rule.RuleModule;
1719
+ 'jsx-equals-spacing': eslint.Rule.RuleModule;
1720
+ 'jsx-filename-extension': eslint.Rule.RuleModule;
1721
+ 'jsx-first-prop-new-line': eslint.Rule.RuleModule;
1722
+ 'jsx-handler-names': eslint.Rule.RuleModule;
1723
+ 'jsx-indent': eslint.Rule.RuleModule;
1724
+ 'jsx-indent-props': eslint.Rule.RuleModule;
1725
+ 'jsx-key': eslint.Rule.RuleModule;
1726
+ 'jsx-max-depth': eslint.Rule.RuleModule;
1727
+ 'jsx-max-props-per-line': eslint.Rule.RuleModule;
1728
+ 'jsx-newline': eslint.Rule.RuleModule;
1729
+ 'jsx-no-bind': eslint.Rule.RuleModule;
1730
+ 'jsx-no-comment-textnodes': eslint.Rule.RuleModule;
1731
+ 'jsx-no-constructed-context-values': eslint.Rule.RuleModule;
1732
+ 'jsx-no-duplicate-props': eslint.Rule.RuleModule;
1733
+ 'jsx-no-leaked-render': eslint.Rule.RuleModule;
1734
+ 'jsx-no-literals': eslint.Rule.RuleModule;
1735
+ 'jsx-no-script-url': eslint.Rule.RuleModule;
1736
+ 'jsx-no-target-blank': eslint.Rule.RuleModule;
1737
+ 'jsx-no-useless-fragment': eslint.Rule.RuleModule;
1738
+ 'jsx-one-expression-per-line': eslint.Rule.RuleModule;
1739
+ 'jsx-no-undef': eslint.Rule.RuleModule;
1740
+ 'jsx-curly-brace-presence': eslint.Rule.RuleModule;
1741
+ 'jsx-pascal-case': eslint.Rule.RuleModule;
1742
+ 'jsx-fragments': eslint.Rule.RuleModule;
1743
+ 'jsx-props-no-multi-spaces': eslint.Rule.RuleModule;
1744
+ 'jsx-props-no-spreading': eslint.Rule.RuleModule;
1745
+ 'jsx-props-no-spread-multi': eslint.Rule.RuleModule;
1746
+ 'jsx-sort-default-props': eslint.Rule.RuleModule;
1747
+ 'jsx-sort-props': eslint.Rule.RuleModule;
1748
+ 'jsx-space-before-closing': eslint.Rule.RuleModule;
1749
+ 'jsx-tag-spacing': eslint.Rule.RuleModule;
1750
+ 'jsx-uses-react': eslint.Rule.RuleModule;
1751
+ 'jsx-uses-vars': eslint.Rule.RuleModule;
1752
+ 'jsx-wrap-multilines': eslint.Rule.RuleModule;
1753
+ 'no-invalid-html-attribute': eslint.Rule.RuleModule;
1754
+ 'no-access-state-in-setstate': eslint.Rule.RuleModule;
1755
+ 'no-adjacent-inline-elements': eslint.Rule.RuleModule;
1756
+ 'no-array-index-key': eslint.Rule.RuleModule;
1757
+ 'no-arrow-function-lifecycle': eslint.Rule.RuleModule;
1758
+ 'no-children-prop': eslint.Rule.RuleModule;
1759
+ 'no-danger': eslint.Rule.RuleModule;
1760
+ 'no-danger-with-children': eslint.Rule.RuleModule;
1761
+ 'no-deprecated': eslint.Rule.RuleModule;
1762
+ 'no-did-mount-set-state': eslint.Rule.RuleModule;
1763
+ 'no-did-update-set-state': eslint.Rule.RuleModule;
1764
+ 'no-direct-mutation-state': eslint.Rule.RuleModule;
1765
+ 'no-find-dom-node': eslint.Rule.RuleModule;
1766
+ 'no-is-mounted': eslint.Rule.RuleModule;
1767
+ 'no-multi-comp': eslint.Rule.RuleModule;
1768
+ 'no-namespace': eslint.Rule.RuleModule;
1769
+ 'no-set-state': eslint.Rule.RuleModule;
1770
+ 'no-string-refs': eslint.Rule.RuleModule;
1771
+ 'no-redundant-should-component-update': eslint.Rule.RuleModule;
1772
+ 'no-render-return-value': eslint.Rule.RuleModule;
1773
+ 'no-this-in-sfc': eslint.Rule.RuleModule;
1774
+ 'no-typos': eslint.Rule.RuleModule;
1775
+ 'no-unescaped-entities': eslint.Rule.RuleModule;
1776
+ 'no-unknown-property': eslint.Rule.RuleModule;
1777
+ 'no-unsafe': eslint.Rule.RuleModule;
1778
+ 'no-unstable-nested-components': eslint.Rule.RuleModule;
1779
+ 'no-unused-class-component-methods': eslint.Rule.RuleModule;
1780
+ 'no-unused-prop-types': eslint.Rule.RuleModule;
1781
+ 'no-unused-state': eslint.Rule.RuleModule;
1782
+ 'no-object-type-as-default-prop': eslint.Rule.RuleModule;
1783
+ 'no-will-update-set-state': eslint.Rule.RuleModule;
1784
+ 'prefer-es6-class': eslint.Rule.RuleModule;
1785
+ 'prefer-exact-props': eslint.Rule.RuleModule;
1786
+ 'prefer-read-only-props': eslint.Rule.RuleModule;
1787
+ 'prefer-stateless-function': eslint.Rule.RuleModule;
1788
+ 'prop-types': eslint.Rule.RuleModule;
1789
+ 'react-in-jsx-scope': eslint.Rule.RuleModule;
1790
+ 'require-default-props': eslint.Rule.RuleModule;
1791
+ 'require-optimization': eslint.Rule.RuleModule;
1792
+ 'require-render-return': eslint.Rule.RuleModule;
1793
+ 'self-closing-comp': eslint.Rule.RuleModule;
1794
+ 'sort-comp': eslint.Rule.RuleModule;
1795
+ 'sort-default-props': eslint.Rule.RuleModule;
1796
+ 'sort-prop-types': eslint.Rule.RuleModule;
1797
+ 'state-in-constructor': eslint.Rule.RuleModule;
1798
+ 'static-property-placement': eslint.Rule.RuleModule;
1799
+ 'style-prop-object': eslint.Rule.RuleModule;
1800
+ 'void-dom-elements-no-children': eslint.Rule.RuleModule;
1801
+ };
1802
+ configs: {
1803
+ recommended: {
1804
+ plugins: ["react"];
1805
+ parserOptions: {
1806
+ ecmaFeatures: {
1807
+ jsx: boolean;
1808
+ };
1809
+ };
1810
+ rules: {
1811
+ "react/display-name": 2;
1812
+ "react/jsx-key": 2;
1813
+ "react/jsx-no-comment-textnodes": 2;
1814
+ "react/jsx-no-duplicate-props": 2;
1815
+ "react/jsx-no-target-blank": 2;
1816
+ "react/jsx-no-undef": 2;
1817
+ "react/jsx-uses-react": 2;
1818
+ "react/jsx-uses-vars": 2;
1819
+ "react/no-children-prop": 2;
1820
+ "react/no-danger-with-children": 2;
1821
+ "react/no-deprecated": 2;
1822
+ "react/no-direct-mutation-state": 2;
1823
+ "react/no-find-dom-node": 2;
1824
+ "react/no-is-mounted": 2;
1825
+ "react/no-render-return-value": 2;
1826
+ "react/no-string-refs": 2;
1827
+ "react/no-unescaped-entities": 2;
1828
+ "react/no-unknown-property": 2;
1829
+ "react/no-unsafe": 0;
1830
+ "react/prop-types": 2;
1831
+ "react/react-in-jsx-scope": 2;
1832
+ "react/require-render-return": 2;
1833
+ };
1834
+ };
1835
+ all: {
1836
+ plugins: ["react"];
1837
+ parserOptions: {
1838
+ ecmaFeatures: {
1839
+ jsx: boolean;
1840
+ };
1841
+ };
1842
+ 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">;
1843
+ };
1844
+ 'jsx-runtime': {
1845
+ plugins: ["react"];
1846
+ parserOptions: {
1847
+ ecmaFeatures: {
1848
+ jsx: boolean;
1849
+ };
1850
+ jsxPragma: any;
1851
+ };
1852
+ rules: {
1853
+ "react/react-in-jsx-scope": 0;
1854
+ "react/jsx-uses-react": 0;
1855
+ };
1856
+ };
1857
+ flat: Record<string, eslint_plugin_react.ReactFlatConfig>;
1858
+ } & {
1859
+ flat: Record<string, eslint_plugin_react.ReactFlatConfig>;
1860
+ };
1861
+ };
1862
+ "react-compiler": {
1863
+ default: typeof eslint_plugin_react_compiler;
1864
+ configs: {
1865
+ recommended: {
1866
+ plugins: {
1867
+ "react-compiler": {
1868
+ rules: {
1869
+ "react-compiler": eslint.Rule.RuleModule;
1870
+ };
1871
+ };
1872
+ };
1873
+ rules: {
1874
+ "react-compiler/react-compiler": string;
1875
+ };
1876
+ };
1877
+ };
1878
+ meta: {
1879
+ name: string;
1880
+ };
1881
+ rules: {
1882
+ 'react-compiler': eslint.Rule.RuleModule;
1883
+ };
1884
+ };
1885
+ "react-hooks": {
1886
+ default: typeof eslint_plugin_react_hooks;
1887
+ configs: {
1888
+ 'recommended-legacy': {
1889
+ plugins: string[];
1890
+ rules: {
1891
+ "react-hooks/rules-of-hooks": "error";
1892
+ "react-hooks/exhaustive-deps": "warn";
1893
+ };
1894
+ };
1895
+ recommended: {
1896
+ plugins: string[];
1897
+ rules: {
1898
+ "react-hooks/rules-of-hooks": "error";
1899
+ "react-hooks/exhaustive-deps": "warn";
1900
+ };
1901
+ };
1902
+ 'recommended-latest': {
1903
+ name: string;
1904
+ plugins: {
1905
+ readonly "react-hooks": eslint.ESLint.Plugin;
1906
+ };
1907
+ rules: {
1908
+ "react-hooks/rules-of-hooks": "error";
1909
+ "react-hooks/exhaustive-deps": "warn";
1910
+ };
1911
+ };
1912
+ };
1913
+ meta: {
1914
+ name: string;
1915
+ };
1916
+ rules: {
1917
+ 'rules-of-hooks': {
1918
+ meta: {
1919
+ type: "problem";
1920
+ docs: {
1921
+ description: string;
1922
+ recommended: true;
1923
+ url: string;
1924
+ };
1925
+ };
1926
+ create(context: eslint.Rule.RuleContext): {
1927
+ onCodePathSegmentStart: (segment: eslint.Rule.CodePathSegment) => number;
1928
+ onCodePathSegmentEnd: () => eslint.Rule.CodePathSegment | undefined;
1929
+ onCodePathStart: () => number;
1930
+ onCodePathEnd(codePath: eslint.Rule.CodePath, codePathNode: eslint.Rule.Node): void;
1931
+ CallExpression(node: estree.CallExpression & eslint.Rule.NodeParentExtension): void;
1932
+ Identifier(node: estree.Identifier & eslint.Rule.NodeParentExtension): void;
1933
+ "CallExpression:exit"(node: estree.CallExpression & eslint.Rule.NodeParentExtension): void;
1934
+ FunctionDeclaration(node: estree.FunctionDeclaration & eslint.Rule.NodeParentExtension): void;
1935
+ ArrowFunctionExpression(node: estree.ArrowFunctionExpression & eslint.Rule.NodeParentExtension): void;
1936
+ };
1937
+ };
1938
+ 'exhaustive-deps': {
1939
+ meta: {
1940
+ type: "suggestion";
1941
+ docs: {
1942
+ description: string;
1943
+ recommended: true;
1944
+ url: string;
1945
+ };
1946
+ fixable: "code";
1947
+ hasSuggestions: true;
1948
+ schema: {
1949
+ type: "object";
1950
+ additionalProperties: false;
1951
+ enableDangerousAutofixThisMayCauseInfiniteLoops: boolean;
1952
+ properties: {
1953
+ additionalHooks: {
1954
+ type: "string";
1955
+ };
1956
+ enableDangerousAutofixThisMayCauseInfiniteLoops: {
1957
+ type: "boolean";
1958
+ };
1959
+ };
1960
+ }[];
1961
+ };
1962
+ create(context: eslint.Rule.RuleContext): {
1963
+ CallExpression: (node: estree.CallExpression) => void;
1964
+ };
1965
+ };
1966
+ };
1967
+ };
1968
+ "react-refresh": {
1969
+ rules: Record<string, any>;
1970
+ configs: {
1971
+ recommended: {
1972
+ plugins: {
1973
+ "react-refresh": {
1974
+ rules: Record<string, any>;
1975
+ };
1976
+ };
1977
+ rules: Record<string, any>;
1978
+ };
1979
+ vite: {
1980
+ plugins: {
1981
+ "react-refresh": {
1982
+ rules: Record<string, any>;
1983
+ };
1984
+ };
1985
+ rules: Record<string, any>;
1986
+ };
1987
+ };
1988
+ };
1989
+ };
1990
+ rules: {
1991
+ "react-compiler/react-compiler": "error";
1992
+ "react-hooks/exhaustive-deps": "error";
1993
+ "react-hooks/rules-of-hooks": "error";
1994
+ "react-refresh/only-export-components": ["warn", {
1995
+ allowConstantExport: boolean;
1996
+ allowExportNames: string[];
1997
+ }];
1998
+ "react/boolean-prop-naming": "off";
1999
+ "react/button-has-type": "error";
2000
+ "react/checked-requires-onchange-or-readonly": "error";
2001
+ "react/default-props-match-prop-types": "error";
2002
+ "react/destructuring-assignment": "off";
2003
+ "react/forbid-component-props": "off";
2004
+ "react/forbid-dom-props": "off";
2005
+ "react/forbid-elements": "off";
2006
+ "react/forbid-foreign-prop-types": "off";
2007
+ "react/forbid-prop-types": "off";
2008
+ "react/forward-ref-uses-ref": "error";
2009
+ "react/function-component-definition": "off";
2010
+ "react/hook-use-state": "error";
2011
+ "react/iframe-missing-sandbox": "error";
2012
+ "react/jsx-boolean-value": ["error", "never"];
2013
+ "react/jsx-curly-brace-presence": "error";
2014
+ "react/jsx-filename-extension": "off";
2015
+ "react/jsx-fragments": ["error", "syntax"];
2016
+ "react/jsx-handler-names": "off";
2017
+ "react/jsx-max-depth": "off";
2018
+ "react/jsx-no-bind": "off";
2019
+ "react/jsx-no-constructed-context-values": "error";
2020
+ "react/jsx-no-leaked-render": "error";
2021
+ "react/jsx-no-literals": "off";
2022
+ "react/jsx-no-script-url": "error";
2023
+ "react/jsx-no-useless-fragment": "error";
2024
+ "react/jsx-one-expression-per-line": "off";
2025
+ "react/jsx-pascal-case": ["error", {
2026
+ allowNamespace: true;
2027
+ }];
2028
+ "react/jsx-props-no-spread-multi": "off";
2029
+ "react/jsx-props-no-spreading": "off";
2030
+ "react/jsx-sort-default-props": "off";
2031
+ "react/jsx-sort-props": "off";
2032
+ "react/no-access-state-in-setstate": "error";
2033
+ "react/no-adjacent-inline-elements": "off";
2034
+ "react/no-array-index-key": "off";
2035
+ "react/no-arrow-function-lifecycle": "error";
2036
+ "react/no-danger": "off";
2037
+ "react/no-did-mount-set-state": "error";
2038
+ "react/no-did-update-set-state": "error";
2039
+ "react/no-invalid-html-attribute": "error";
2040
+ "react/no-multi-comp": "off";
2041
+ "react/no-namespace": "error";
2042
+ "react/no-object-type-as-default-prop": "error";
2043
+ "react/no-redundant-should-component-update": "error";
2044
+ "react/no-set-state": "off";
2045
+ "react/no-this-in-sfc": "error";
2046
+ "react/no-typos": "error";
2047
+ "react/no-unstable-nested-components": "error";
2048
+ "react/no-unused-class-component-methods": "error";
2049
+ "react/no-unused-prop-types": "error";
2050
+ "react/no-unused-state": "error";
2051
+ "react/no-will-update-set-state": "error";
2052
+ "react/prefer-es6-class": "off";
2053
+ "react/prefer-exact-props": "off";
2054
+ "react/prefer-read-only-props": "off";
2055
+ "react/prefer-stateless-function": "off";
2056
+ "react/require-default-props": "off";
2057
+ "react/require-optimization": "off";
2058
+ "react/self-closing-comp": "error";
2059
+ "react/sort-comp": "off";
2060
+ "react/sort-default-props": "off";
2061
+ "react/sort-prop-types": "off";
2062
+ "react/state-in-constructor": "off";
2063
+ "react/static-property-placement": "off";
2064
+ "react/style-prop-object": "error";
2065
+ "react/void-dom-elements-no-children": "error";
2066
+ };
2067
+ settings: {
2068
+ react: {
2069
+ version: string;
2070
+ };
2071
+ };
2072
+ }[]>;
2073
+
2074
+ declare namespace __configs_react {
2075
+ export { reactConfig as default };
2076
+ }
2077
+
2078
+ declare function typescriptConfig(): Promise<(_typescript_eslint_utils_ts_eslint.FlatConfig.Config | {
2079
+ languageOptions: {
2080
+ parserOptions: {
2081
+ projectService: boolean;
2082
+ tsconfigRootDir: string;
2083
+ };
2084
+ };
2085
+ name: string;
2086
+ rules: {
2087
+ "@typescript-eslint/consistent-type-exports": ["error", {
2088
+ fixMixedExportsWithInlineTypeSpecifier: false;
2089
+ }];
2090
+ "@typescript-eslint/consistent-type-imports": ["error", {
2091
+ fixStyle: "separate-type-imports";
2092
+ }];
2093
+ "@typescript-eslint/no-deprecated": "warn";
2094
+ "@typescript-eslint/no-misused-promises": ["error", {
2095
+ checksVoidReturn: {
2096
+ attributes: false;
2097
+ };
2098
+ }];
2099
+ "@typescript-eslint/no-unused-vars": ["error", {
2100
+ args: "all";
2101
+ argsIgnorePattern: string;
2102
+ caughtErrors: "all";
2103
+ caughtErrorsIgnorePattern: string;
2104
+ destructuredArrayIgnorePattern: string;
2105
+ ignoreRestSiblings: true;
2106
+ varsIgnorePattern: string;
2107
+ }];
2108
+ "@typescript-eslint/no-use-before-define": ["error", {
2109
+ allowNamedExports: false;
2110
+ classes: false;
2111
+ functions: false;
2112
+ variables: true;
2113
+ }];
2114
+ "@typescript-eslint/restrict-template-expressions": ["error", {
2115
+ allowNumber: true;
2116
+ }];
2117
+ "no-use-before-define": "off";
2118
+ };
2119
+ files?: undefined;
2120
+ } | {
2121
+ files: string[];
2122
+ name: string;
2123
+ rules: {
2124
+ "@typescript-eslint/no-unsafe-argument": string;
2125
+ "@typescript-eslint/no-unsafe-assignment": string;
2126
+ };
2127
+ languageOptions?: undefined;
2128
+ })[]>;
2129
+
2130
+ declare namespace __configs_typescript {
2131
+ export { typescriptConfig as default };
2132
+ }
16
2133
 
17
2134
  /* eslint-disable */
18
2135
  /* prettier-ignore */
@@ -13396,149 +15513,7 @@ interface Options {
13396
15513
  *
13397
15514
  * export default defineConfig();
13398
15515
  */
13399
- declare const defineConfig: ({ astro, autoDetect, ignores, jest, nextjs, overrides, playwright, react, storybook, tanstackQuery, testingLibrary, typescript, vitest, }?: Options, ...moreOverrides: Linter.Config[] | TypedConfigItem[]) => Promise<(TypedConfigItem | Linter.Config<Linter.RulesRecord> | _typescript_eslint_utils_ts_eslint.FlatConfig.Config | {
13400
- files: string[];
13401
- languageOptions: {
13402
- globals: {
13403
- Astro: false;
13404
- Fragment: false;
13405
- __dirname: false;
13406
- __filename: false;
13407
- AbortController: false;
13408
- AbortSignal: false;
13409
- atob: false;
13410
- Blob: false;
13411
- BroadcastChannel: false;
13412
- btoa: false;
13413
- Buffer: false;
13414
- ByteLengthQueuingStrategy: false;
13415
- clearImmediate: false;
13416
- clearInterval: false;
13417
- clearTimeout: false;
13418
- CloseEvent: false;
13419
- CompressionStream: false;
13420
- console: false;
13421
- CountQueuingStrategy: false;
13422
- crypto: false;
13423
- Crypto: false;
13424
- CryptoKey: false;
13425
- CustomEvent: false;
13426
- DecompressionStream: false;
13427
- DOMException: false;
13428
- Event: false;
13429
- EventTarget: false;
13430
- exports: true;
13431
- fetch: false;
13432
- File: false;
13433
- FormData: false;
13434
- global: false;
13435
- Headers: false;
13436
- MessageChannel: false;
13437
- MessageEvent: false;
13438
- MessagePort: false;
13439
- module: false;
13440
- navigator: false;
13441
- Navigator: false;
13442
- performance: false;
13443
- Performance: false;
13444
- PerformanceEntry: false;
13445
- PerformanceMark: false;
13446
- PerformanceMeasure: false;
13447
- PerformanceObserver: false;
13448
- PerformanceObserverEntryList: false;
13449
- PerformanceResourceTiming: false;
13450
- process: false;
13451
- queueMicrotask: false;
13452
- ReadableByteStreamController: false;
13453
- ReadableStream: false;
13454
- ReadableStreamBYOBReader: false;
13455
- ReadableStreamBYOBRequest: false;
13456
- ReadableStreamDefaultController: false;
13457
- ReadableStreamDefaultReader: false;
13458
- Request: false;
13459
- require: false;
13460
- Response: false;
13461
- setImmediate: false;
13462
- setInterval: false;
13463
- setTimeout: false;
13464
- structuredClone: false;
13465
- SubtleCrypto: false;
13466
- TextDecoder: false;
13467
- TextDecoderStream: false;
13468
- TextEncoder: false;
13469
- TextEncoderStream: false;
13470
- TransformStream: false;
13471
- TransformStreamDefaultController: false;
13472
- URL: false;
13473
- URLSearchParams: false;
13474
- WebAssembly: false;
13475
- WebSocket: false;
13476
- WritableStream: false;
13477
- WritableStreamDefaultController: false;
13478
- WritableStreamDefaultWriter: false;
13479
- };
13480
- parser: {
13481
- default: typeof astro_eslint_parser;
13482
- ParseError: typeof astro_eslint_parser.ParseError;
13483
- VisitorKeys: eslint.SourceCode.VisitorKeys;
13484
- meta: typeof astro_eslint_parser.meta;
13485
- name: string;
13486
- parseForESLint: typeof astro_eslint_parser.parseForESLint;
13487
- parseTemplate: typeof astro_eslint_parser.parseTemplate;
13488
- traverseNodes: typeof astro_eslint_parser.traverseNodes;
13489
- };
13490
- parserOptions: {
13491
- extraFileExtensions: string[];
13492
- parser: _typescript_eslint_utils_ts_eslint.Parser.LooseParserModule;
13493
- };
13494
- sourceType: "module";
13495
- };
13496
- name: string;
13497
- plugins: {
13498
- astro: typeof eslint_plugin_astro;
13499
- "jsx-a11y": {
13500
- configs: {
13501
- recommended: Linter.Config<Linter.RulesRecord>;
13502
- };
13503
- };
13504
- };
13505
- processor: string;
13506
- rules: {
13507
- "astro/missing-client-only-directive-value": "error";
13508
- "astro/no-conflict-set-directives": "error";
13509
- "astro/no-deprecated-astro-canonicalurl": "error";
13510
- "astro/no-deprecated-astro-fetchcontent": "error";
13511
- "astro/no-deprecated-astro-resolve": "error";
13512
- "astro/no-deprecated-getentrybyslug": "error";
13513
- "astro/no-exports-from-components": "off";
13514
- "astro/no-unused-define-vars-in-style": "error";
13515
- "astro/valid-compile": "error";
13516
- };
13517
- settings?: undefined;
13518
- } | {
13519
- files: string[];
13520
- languageOptions: {
13521
- parserOptions: _typescript_eslint_utils_ts_eslint.ParserOptions | undefined;
13522
- globals?: undefined;
13523
- parser?: undefined;
13524
- sourceType?: undefined;
13525
- };
13526
- name: string;
13527
- rules: Partial<Record<string, _typescript_eslint_utils_ts_eslint.SharedConfig.RuleEntry>> | undefined;
13528
- plugins?: undefined;
13529
- processor?: undefined;
13530
- settings?: undefined;
13531
- } | {
13532
- name: string;
13533
- settings: {
13534
- "import-x/core-modules": string[];
13535
- };
13536
- files?: undefined;
13537
- languageOptions?: undefined;
13538
- plugins?: undefined;
13539
- processor?: undefined;
13540
- rules?: undefined;
13541
- } | {
15516
+ declare const defineConfig: ({ astro, autoDetect, ignores, jest, nextjs, overrides, playwright, react, storybook, tanstackQuery, testingLibrary, typescript, vitest, }?: Options, ...moreOverrides: Linter.Config[] | TypedConfigItem[]) => Promise<(TypedConfigItem | Linter.Config<Linter.RulesRecord> | {
13542
15517
  files: string[];
13543
15518
  languageOptions: {
13544
15519
  globals: {
@@ -14026,7 +16001,7 @@ declare const defineConfig: ({ astro, autoDetect, ignores, jest, nextjs, overrid
14026
16001
  'import-x/default': "error";
14027
16002
  'import-x/export': "error";
14028
16003
  };
14029
- } | {
16004
+ } | _typescript_eslint_utils_ts_eslint.FlatConfig.Config | {
14030
16005
  linterOptions: {
14031
16006
  reportUnusedDisableDirectives: true;
14032
16007
  };
@@ -14118,20 +16093,6 @@ declare const defineConfig: ({ astro, autoDetect, ignores, jest, nextjs, overrid
14118
16093
  processor?: string | Linter.Processor;
14119
16094
  plugins?: Record<string, eslint.ESLint.Plugin>;
14120
16095
  settings?: Record<string, unknown>;
14121
- } | {
14122
- files: string[];
14123
- name: string;
14124
- plugins: {
14125
- "@next/next": {
14126
- configs: {
14127
- "core-web-vitals": Linter.Config<Linter.RulesRecord>;
14128
- recommended: Linter.Config<Linter.RulesRecord>;
14129
- };
14130
- };
14131
- };
14132
- rules: {
14133
- [k: string]: 0 | 1 | 2 | "off" | "error" | [Linter.RuleSeverity, ...any[]] | undefined;
14134
- };
14135
16096
  } | {
14136
16097
  name: string;
14137
16098
  plugins: {
@@ -14163,25 +16124,40 @@ declare const defineConfig: ({ astro, autoDetect, ignores, jest, nextjs, overrid
14163
16124
  "perfectionist/sort-modules": "off";
14164
16125
  };
14165
16126
  } | {
14166
- files: string[];
14167
16127
  name: string;
16128
+ rules: Record<string, 0 | "off">;
16129
+ } | {
16130
+ name: string;
16131
+ plugins: {
16132
+ regexp: typeof eslint_plugin_regexp;
16133
+ };
14168
16134
  rules: {
14169
- "playwright/expect-expect": "error";
14170
- "playwright/max-nested-describe": "error";
14171
- "playwright/no-conditional-expect": "error";
14172
- "playwright/no-conditional-in-test": "error";
14173
- "playwright/no-element-handle": "error";
14174
- "playwright/no-eval": "error";
14175
- "playwright/no-force-option": "error";
14176
- "playwright/no-nested-step": "error";
14177
- "playwright/no-page-pause": "error";
14178
- "playwright/no-skipped-test": "error";
14179
- "playwright/no-slowed-test": "error";
14180
- "playwright/no-useless-await": "error";
14181
- "playwright/no-useless-not": "error";
14182
- "playwright/no-wait-for-selector": "error";
14183
- "playwright/no-wait-for-timeout": "error";
16135
+ "regexp/confusing-quantifier": "error";
16136
+ "regexp/no-empty-alternative": "error";
16137
+ "regexp/no-lazy-ends": "error";
16138
+ "regexp/no-potentially-useless-backreference": "error";
16139
+ "regexp/no-useless-flag": "error";
16140
+ "regexp/optimal-lookaround-quantifier": "error";
16141
+ };
16142
+ } | {
16143
+ name: string;
16144
+ rules: {
16145
+ "unicorn/filename-case": "off";
16146
+ "unicorn/import-style": "off";
16147
+ "unicorn/no-abusive-eslint-disable": "off";
16148
+ "unicorn/no-anonymous-default-export": "off";
16149
+ "unicorn/no-array-callback-reference": "off";
16150
+ "unicorn/no-array-reduce": "off";
16151
+ "unicorn/no-null": "off";
16152
+ "unicorn/no-process-exit": "off";
16153
+ "unicorn/no-useless-undefined": ["error", {
16154
+ checkArguments: false;
16155
+ checkArrowFunctionBody: false;
16156
+ }];
16157
+ "unicorn/prefer-node-protocol": "off";
16158
+ "unicorn/prevent-abbreviations": "off";
14184
16159
  };
16160
+ files?: Array<string | string[]>;
14185
16161
  ignores?: string[];
14186
16162
  language?: string;
14187
16163
  languageOptions?: Linter.LanguageOptions;
@@ -14190,8 +16166,55 @@ declare const defineConfig: ({ astro, autoDetect, ignores, jest, nextjs, overrid
14190
16166
  plugins?: Record<string, eslint.ESLint.Plugin>;
14191
16167
  settings?: Record<string, unknown>;
14192
16168
  } | {
16169
+ languageOptions: {
16170
+ parserOptions: {
16171
+ projectService: boolean;
16172
+ tsconfigRootDir: string;
16173
+ };
16174
+ };
14193
16175
  name: string;
14194
- rules: Record<string, 0 | "off">;
16176
+ rules: {
16177
+ "@typescript-eslint/consistent-type-exports": ["error", {
16178
+ fixMixedExportsWithInlineTypeSpecifier: false;
16179
+ }];
16180
+ "@typescript-eslint/consistent-type-imports": ["error", {
16181
+ fixStyle: "separate-type-imports";
16182
+ }];
16183
+ "@typescript-eslint/no-deprecated": "warn";
16184
+ "@typescript-eslint/no-misused-promises": ["error", {
16185
+ checksVoidReturn: {
16186
+ attributes: false;
16187
+ };
16188
+ }];
16189
+ "@typescript-eslint/no-unused-vars": ["error", {
16190
+ args: "all";
16191
+ argsIgnorePattern: string;
16192
+ caughtErrors: "all";
16193
+ caughtErrorsIgnorePattern: string;
16194
+ destructuredArrayIgnorePattern: string;
16195
+ ignoreRestSiblings: true;
16196
+ varsIgnorePattern: string;
16197
+ }];
16198
+ "@typescript-eslint/no-use-before-define": ["error", {
16199
+ allowNamedExports: false;
16200
+ classes: false;
16201
+ functions: false;
16202
+ variables: true;
16203
+ }];
16204
+ "@typescript-eslint/restrict-template-expressions": ["error", {
16205
+ allowNumber: true;
16206
+ }];
16207
+ "no-use-before-define": "off";
16208
+ };
16209
+ files?: undefined;
16210
+ } | {
16211
+ files: string[];
16212
+ name: string;
16213
+ rules: {
16214
+ "@typescript-eslint/no-unsafe-argument": string;
16215
+ "@typescript-eslint/no-unsafe-assignment": string;
16216
+ };
16217
+ languageOptions?: undefined;
14195
16218
  } | {
14196
16219
  files: string[];
14197
16220
  languageOptions: {
@@ -15716,123 +17739,290 @@ declare const defineConfig: ({ astro, autoDetect, ignores, jest, nextjs, overrid
15716
17739
  };
15717
17740
  };
15718
17741
  };
15719
- "react-refresh": {
15720
- rules: Record<string, any>;
17742
+ "react-refresh": {
17743
+ rules: Record<string, any>;
17744
+ configs: {
17745
+ recommended: {
17746
+ plugins: {
17747
+ "react-refresh": {
17748
+ rules: Record<string, any>;
17749
+ };
17750
+ };
17751
+ rules: Record<string, any>;
17752
+ };
17753
+ vite: {
17754
+ plugins: {
17755
+ "react-refresh": {
17756
+ rules: Record<string, any>;
17757
+ };
17758
+ };
17759
+ rules: Record<string, any>;
17760
+ };
17761
+ };
17762
+ };
17763
+ };
17764
+ rules: {
17765
+ "react-compiler/react-compiler": "error";
17766
+ "react-hooks/exhaustive-deps": "error";
17767
+ "react-hooks/rules-of-hooks": "error";
17768
+ "react-refresh/only-export-components": ["warn", {
17769
+ allowConstantExport: boolean;
17770
+ allowExportNames: string[];
17771
+ }];
17772
+ "react/boolean-prop-naming": "off";
17773
+ "react/button-has-type": "error";
17774
+ "react/checked-requires-onchange-or-readonly": "error";
17775
+ "react/default-props-match-prop-types": "error";
17776
+ "react/destructuring-assignment": "off";
17777
+ "react/forbid-component-props": "off";
17778
+ "react/forbid-dom-props": "off";
17779
+ "react/forbid-elements": "off";
17780
+ "react/forbid-foreign-prop-types": "off";
17781
+ "react/forbid-prop-types": "off";
17782
+ "react/forward-ref-uses-ref": "error";
17783
+ "react/function-component-definition": "off";
17784
+ "react/hook-use-state": "error";
17785
+ "react/iframe-missing-sandbox": "error";
17786
+ "react/jsx-boolean-value": ["error", "never"];
17787
+ "react/jsx-curly-brace-presence": "error";
17788
+ "react/jsx-filename-extension": "off";
17789
+ "react/jsx-fragments": ["error", "syntax"];
17790
+ "react/jsx-handler-names": "off";
17791
+ "react/jsx-max-depth": "off";
17792
+ "react/jsx-no-bind": "off";
17793
+ "react/jsx-no-constructed-context-values": "error";
17794
+ "react/jsx-no-leaked-render": "error";
17795
+ "react/jsx-no-literals": "off";
17796
+ "react/jsx-no-script-url": "error";
17797
+ "react/jsx-no-useless-fragment": "error";
17798
+ "react/jsx-one-expression-per-line": "off";
17799
+ "react/jsx-pascal-case": ["error", {
17800
+ allowNamespace: true;
17801
+ }];
17802
+ "react/jsx-props-no-spread-multi": "off";
17803
+ "react/jsx-props-no-spreading": "off";
17804
+ "react/jsx-sort-default-props": "off";
17805
+ "react/jsx-sort-props": "off";
17806
+ "react/no-access-state-in-setstate": "error";
17807
+ "react/no-adjacent-inline-elements": "off";
17808
+ "react/no-array-index-key": "off";
17809
+ "react/no-arrow-function-lifecycle": "error";
17810
+ "react/no-danger": "off";
17811
+ "react/no-did-mount-set-state": "error";
17812
+ "react/no-did-update-set-state": "error";
17813
+ "react/no-invalid-html-attribute": "error";
17814
+ "react/no-multi-comp": "off";
17815
+ "react/no-namespace": "error";
17816
+ "react/no-object-type-as-default-prop": "error";
17817
+ "react/no-redundant-should-component-update": "error";
17818
+ "react/no-set-state": "off";
17819
+ "react/no-this-in-sfc": "error";
17820
+ "react/no-typos": "error";
17821
+ "react/no-unstable-nested-components": "error";
17822
+ "react/no-unused-class-component-methods": "error";
17823
+ "react/no-unused-prop-types": "error";
17824
+ "react/no-unused-state": "error";
17825
+ "react/no-will-update-set-state": "error";
17826
+ "react/prefer-es6-class": "off";
17827
+ "react/prefer-exact-props": "off";
17828
+ "react/prefer-read-only-props": "off";
17829
+ "react/prefer-stateless-function": "off";
17830
+ "react/require-default-props": "off";
17831
+ "react/require-optimization": "off";
17832
+ "react/self-closing-comp": "error";
17833
+ "react/sort-comp": "off";
17834
+ "react/sort-default-props": "off";
17835
+ "react/sort-prop-types": "off";
17836
+ "react/state-in-constructor": "off";
17837
+ "react/static-property-placement": "off";
17838
+ "react/style-prop-object": "error";
17839
+ "react/void-dom-elements-no-children": "error";
17840
+ };
17841
+ settings: {
17842
+ react: {
17843
+ version: string;
17844
+ };
17845
+ };
17846
+ } | {
17847
+ files: string[];
17848
+ name: string;
17849
+ plugins: {
17850
+ "@tanstack/query": eslint.ESLint.Plugin;
17851
+ };
17852
+ rules: {
17853
+ "@tanstack/query/exhaustive-deps": "error";
17854
+ "@tanstack/query/no-rest-destructuring": "warn";
17855
+ "@tanstack/query/stable-query-client": "error";
17856
+ };
17857
+ } | {
17858
+ files: string[];
17859
+ languageOptions: {
17860
+ globals: {
17861
+ Astro: false;
17862
+ Fragment: false;
17863
+ __dirname: false;
17864
+ __filename: false;
17865
+ AbortController: false;
17866
+ AbortSignal: false;
17867
+ atob: false;
17868
+ Blob: false;
17869
+ BroadcastChannel: false;
17870
+ btoa: false;
17871
+ Buffer: false;
17872
+ ByteLengthQueuingStrategy: false;
17873
+ clearImmediate: false;
17874
+ clearInterval: false;
17875
+ clearTimeout: false;
17876
+ CloseEvent: false;
17877
+ CompressionStream: false;
17878
+ console: false;
17879
+ CountQueuingStrategy: false;
17880
+ crypto: false;
17881
+ Crypto: false;
17882
+ CryptoKey: false;
17883
+ CustomEvent: false;
17884
+ DecompressionStream: false;
17885
+ DOMException: false;
17886
+ Event: false;
17887
+ EventTarget: false;
17888
+ exports: true;
17889
+ fetch: false;
17890
+ File: false;
17891
+ FormData: false;
17892
+ global: false;
17893
+ Headers: false;
17894
+ MessageChannel: false;
17895
+ MessageEvent: false;
17896
+ MessagePort: false;
17897
+ module: false;
17898
+ navigator: false;
17899
+ Navigator: false;
17900
+ performance: false;
17901
+ Performance: false;
17902
+ PerformanceEntry: false;
17903
+ PerformanceMark: false;
17904
+ PerformanceMeasure: false;
17905
+ PerformanceObserver: false;
17906
+ PerformanceObserverEntryList: false;
17907
+ PerformanceResourceTiming: false;
17908
+ process: false;
17909
+ queueMicrotask: false;
17910
+ ReadableByteStreamController: false;
17911
+ ReadableStream: false;
17912
+ ReadableStreamBYOBReader: false;
17913
+ ReadableStreamBYOBRequest: false;
17914
+ ReadableStreamDefaultController: false;
17915
+ ReadableStreamDefaultReader: false;
17916
+ Request: false;
17917
+ require: false;
17918
+ Response: false;
17919
+ setImmediate: false;
17920
+ setInterval: false;
17921
+ setTimeout: false;
17922
+ structuredClone: false;
17923
+ SubtleCrypto: false;
17924
+ TextDecoder: false;
17925
+ TextDecoderStream: false;
17926
+ TextEncoder: false;
17927
+ TextEncoderStream: false;
17928
+ TransformStream: false;
17929
+ TransformStreamDefaultController: false;
17930
+ URL: false;
17931
+ URLSearchParams: false;
17932
+ WebAssembly: false;
17933
+ WebSocket: false;
17934
+ WritableStream: false;
17935
+ WritableStreamDefaultController: false;
17936
+ WritableStreamDefaultWriter: false;
17937
+ };
17938
+ parser: {
17939
+ default: typeof astro_eslint_parser;
17940
+ ParseError: typeof astro_eslint_parser.ParseError;
17941
+ VisitorKeys: eslint.SourceCode.VisitorKeys;
17942
+ meta: typeof astro_eslint_parser.meta;
17943
+ name: string;
17944
+ parseForESLint: typeof astro_eslint_parser.parseForESLint;
17945
+ parseTemplate: typeof astro_eslint_parser.parseTemplate;
17946
+ traverseNodes: typeof astro_eslint_parser.traverseNodes;
17947
+ };
17948
+ parserOptions: {
17949
+ extraFileExtensions: string[];
17950
+ parser: _typescript_eslint_utils_ts_eslint.Parser.LooseParserModule;
17951
+ };
17952
+ sourceType: "module";
17953
+ };
17954
+ name: string;
17955
+ plugins: {
17956
+ astro: typeof eslint_plugin_astro;
17957
+ "jsx-a11y": {
15721
17958
  configs: {
15722
- recommended: {
15723
- plugins: {
15724
- "react-refresh": {
15725
- rules: Record<string, any>;
15726
- };
15727
- };
15728
- rules: Record<string, any>;
15729
- };
15730
- vite: {
15731
- plugins: {
15732
- "react-refresh": {
15733
- rules: Record<string, any>;
15734
- };
15735
- };
15736
- rules: Record<string, any>;
15737
- };
17959
+ recommended: Linter.Config<Linter.RulesRecord>;
15738
17960
  };
15739
17961
  };
15740
17962
  };
17963
+ processor: string;
15741
17964
  rules: {
15742
- "react-compiler/react-compiler": "error";
15743
- "react-hooks/exhaustive-deps": "error";
15744
- "react-hooks/rules-of-hooks": "error";
15745
- "react-refresh/only-export-components": ["warn", {
15746
- allowConstantExport: boolean;
15747
- allowExportNames: string[];
15748
- }];
15749
- "react/boolean-prop-naming": "off";
15750
- "react/button-has-type": "error";
15751
- "react/checked-requires-onchange-or-readonly": "error";
15752
- "react/default-props-match-prop-types": "error";
15753
- "react/destructuring-assignment": "off";
15754
- "react/forbid-component-props": "off";
15755
- "react/forbid-dom-props": "off";
15756
- "react/forbid-elements": "off";
15757
- "react/forbid-foreign-prop-types": "off";
15758
- "react/forbid-prop-types": "off";
15759
- "react/forward-ref-uses-ref": "error";
15760
- "react/function-component-definition": "off";
15761
- "react/hook-use-state": "error";
15762
- "react/iframe-missing-sandbox": "error";
15763
- "react/jsx-boolean-value": ["error", "never"];
15764
- "react/jsx-curly-brace-presence": "error";
15765
- "react/jsx-filename-extension": "off";
15766
- "react/jsx-fragments": ["error", "syntax"];
15767
- "react/jsx-handler-names": "off";
15768
- "react/jsx-max-depth": "off";
15769
- "react/jsx-no-bind": "off";
15770
- "react/jsx-no-constructed-context-values": "error";
15771
- "react/jsx-no-leaked-render": "error";
15772
- "react/jsx-no-literals": "off";
15773
- "react/jsx-no-script-url": "error";
15774
- "react/jsx-no-useless-fragment": "error";
15775
- "react/jsx-one-expression-per-line": "off";
15776
- "react/jsx-pascal-case": ["error", {
15777
- allowNamespace: true;
15778
- }];
15779
- "react/jsx-props-no-spread-multi": "off";
15780
- "react/jsx-props-no-spreading": "off";
15781
- "react/jsx-sort-default-props": "off";
15782
- "react/jsx-sort-props": "off";
15783
- "react/no-access-state-in-setstate": "error";
15784
- "react/no-adjacent-inline-elements": "off";
15785
- "react/no-array-index-key": "off";
15786
- "react/no-arrow-function-lifecycle": "error";
15787
- "react/no-danger": "off";
15788
- "react/no-did-mount-set-state": "error";
15789
- "react/no-did-update-set-state": "error";
15790
- "react/no-invalid-html-attribute": "error";
15791
- "react/no-multi-comp": "off";
15792
- "react/no-namespace": "error";
15793
- "react/no-object-type-as-default-prop": "error";
15794
- "react/no-redundant-should-component-update": "error";
15795
- "react/no-set-state": "off";
15796
- "react/no-this-in-sfc": "error";
15797
- "react/no-typos": "error";
15798
- "react/no-unstable-nested-components": "error";
15799
- "react/no-unused-class-component-methods": "error";
15800
- "react/no-unused-prop-types": "error";
15801
- "react/no-unused-state": "error";
15802
- "react/no-will-update-set-state": "error";
15803
- "react/prefer-es6-class": "off";
15804
- "react/prefer-exact-props": "off";
15805
- "react/prefer-read-only-props": "off";
15806
- "react/prefer-stateless-function": "off";
15807
- "react/require-default-props": "off";
15808
- "react/require-optimization": "off";
15809
- "react/self-closing-comp": "error";
15810
- "react/sort-comp": "off";
15811
- "react/sort-default-props": "off";
15812
- "react/sort-prop-types": "off";
15813
- "react/state-in-constructor": "off";
15814
- "react/static-property-placement": "off";
15815
- "react/style-prop-object": "error";
15816
- "react/void-dom-elements-no-children": "error";
17965
+ "astro/missing-client-only-directive-value": "error";
17966
+ "astro/no-conflict-set-directives": "error";
17967
+ "astro/no-deprecated-astro-canonicalurl": "error";
17968
+ "astro/no-deprecated-astro-fetchcontent": "error";
17969
+ "astro/no-deprecated-astro-resolve": "error";
17970
+ "astro/no-deprecated-getentrybyslug": "error";
17971
+ "astro/no-exports-from-components": "off";
17972
+ "astro/no-unused-define-vars-in-style": "error";
17973
+ "astro/valid-compile": "error";
15817
17974
  };
15818
- settings: {
15819
- react: {
15820
- version: string;
15821
- };
17975
+ settings?: undefined;
17976
+ } | {
17977
+ files: string[];
17978
+ languageOptions: {
17979
+ parserOptions: _typescript_eslint_utils_ts_eslint.ParserOptions | undefined;
17980
+ globals?: undefined;
17981
+ parser?: undefined;
17982
+ sourceType?: undefined;
15822
17983
  };
17984
+ name: string;
17985
+ rules: Partial<Record<string, _typescript_eslint_utils_ts_eslint.SharedConfig.RuleEntry>> | undefined;
17986
+ plugins?: undefined;
17987
+ processor?: undefined;
17988
+ settings?: undefined;
15823
17989
  } | {
15824
17990
  name: string;
15825
- plugins: {
15826
- regexp: typeof eslint_plugin_regexp;
17991
+ settings: {
17992
+ "import-x/core-modules": string[];
15827
17993
  };
17994
+ files?: undefined;
17995
+ languageOptions?: undefined;
17996
+ plugins?: undefined;
17997
+ processor?: undefined;
17998
+ rules?: undefined;
17999
+ } | {
18000
+ files: string[];
18001
+ name: string;
15828
18002
  rules: {
15829
- "regexp/confusing-quantifier": "error";
15830
- "regexp/no-empty-alternative": "error";
15831
- "regexp/no-lazy-ends": "error";
15832
- "regexp/no-potentially-useless-backreference": "error";
15833
- "regexp/no-useless-flag": "error";
15834
- "regexp/optimal-lookaround-quantifier": "error";
18003
+ "playwright/expect-expect": "error";
18004
+ "playwright/max-nested-describe": "error";
18005
+ "playwright/no-conditional-expect": "error";
18006
+ "playwright/no-conditional-in-test": "error";
18007
+ "playwright/no-element-handle": "error";
18008
+ "playwright/no-eval": "error";
18009
+ "playwright/no-force-option": "error";
18010
+ "playwright/no-nested-step": "error";
18011
+ "playwright/no-page-pause": "error";
18012
+ "playwright/no-skipped-test": "error";
18013
+ "playwright/no-slowed-test": "error";
18014
+ "playwright/no-useless-await": "error";
18015
+ "playwright/no-useless-not": "error";
18016
+ "playwright/no-wait-for-selector": "error";
18017
+ "playwright/no-wait-for-timeout": "error";
15835
18018
  };
18019
+ ignores?: string[];
18020
+ language?: string;
18021
+ languageOptions?: Linter.LanguageOptions;
18022
+ linterOptions?: Linter.LinterOptions;
18023
+ processor?: string | Linter.Processor;
18024
+ plugins?: Record<string, eslint.ESLint.Plugin>;
18025
+ settings?: Record<string, unknown>;
15836
18026
  } | {
15837
18027
  name: string;
15838
18028
  plugins: {
@@ -15857,89 +18047,16 @@ declare const defineConfig: ({ astro, autoDetect, ignores, jest, nextjs, overrid
15857
18047
  files: string[];
15858
18048
  name: string;
15859
18049
  plugins: {
15860
- "@tanstack/query": eslint.ESLint.Plugin;
15861
- };
15862
- rules: {
15863
- "@tanstack/query/exhaustive-deps": "error";
15864
- "@tanstack/query/no-rest-destructuring": "warn";
15865
- "@tanstack/query/stable-query-client": "error";
15866
- };
15867
- } | {
15868
- languageOptions: {
15869
- parserOptions: {
15870
- projectService: boolean;
15871
- tsconfigRootDir: string;
15872
- };
15873
- };
15874
- name: string;
15875
- rules: {
15876
- "@typescript-eslint/consistent-type-exports": ["error", {
15877
- fixMixedExportsWithInlineTypeSpecifier: false;
15878
- }];
15879
- "@typescript-eslint/consistent-type-imports": ["error", {
15880
- fixStyle: "separate-type-imports";
15881
- }];
15882
- "@typescript-eslint/no-deprecated": "warn";
15883
- "@typescript-eslint/no-misused-promises": ["error", {
15884
- checksVoidReturn: {
15885
- attributes: false;
18050
+ "@next/next": {
18051
+ configs: {
18052
+ "core-web-vitals": Linter.Config<Linter.RulesRecord>;
18053
+ recommended: Linter.Config<Linter.RulesRecord>;
15886
18054
  };
15887
- }];
15888
- "@typescript-eslint/no-unused-vars": ["error", {
15889
- args: "all";
15890
- argsIgnorePattern: string;
15891
- caughtErrors: "all";
15892
- caughtErrorsIgnorePattern: string;
15893
- destructuredArrayIgnorePattern: string;
15894
- ignoreRestSiblings: true;
15895
- varsIgnorePattern: string;
15896
- }];
15897
- "@typescript-eslint/no-use-before-define": ["error", {
15898
- allowNamedExports: false;
15899
- classes: false;
15900
- functions: false;
15901
- variables: true;
15902
- }];
15903
- "@typescript-eslint/restrict-template-expressions": ["error", {
15904
- allowNumber: true;
15905
- }];
15906
- "no-use-before-define": "off";
15907
- };
15908
- files?: undefined;
15909
- } | {
15910
- files: string[];
15911
- name: string;
15912
- rules: {
15913
- "@typescript-eslint/no-unsafe-argument": string;
15914
- "@typescript-eslint/no-unsafe-assignment": string;
18055
+ };
15915
18056
  };
15916
- languageOptions?: undefined;
15917
- } | {
15918
- name: string;
15919
18057
  rules: {
15920
- "unicorn/filename-case": "off";
15921
- "unicorn/import-style": "off";
15922
- "unicorn/no-abusive-eslint-disable": "off";
15923
- "unicorn/no-anonymous-default-export": "off";
15924
- "unicorn/no-array-callback-reference": "off";
15925
- "unicorn/no-array-reduce": "off";
15926
- "unicorn/no-null": "off";
15927
- "unicorn/no-process-exit": "off";
15928
- "unicorn/no-useless-undefined": ["error", {
15929
- checkArguments: false;
15930
- checkArrowFunctionBody: false;
15931
- }];
15932
- "unicorn/prefer-node-protocol": "off";
15933
- "unicorn/prevent-abbreviations": "off";
18058
+ [k: string]: 0 | 1 | 2 | "off" | "error" | [Linter.RuleSeverity, ...any[]] | undefined;
15934
18059
  };
15935
- files?: Array<string | string[]>;
15936
- ignores?: string[];
15937
- language?: string;
15938
- languageOptions?: Linter.LanguageOptions;
15939
- linterOptions?: Linter.LinterOptions;
15940
- processor?: string | Linter.Processor;
15941
- plugins?: Record<string, eslint.ESLint.Plugin>;
15942
- settings?: Record<string, unknown>;
15943
- })[]>;
18060
+ } | typeof __configs_typescript | typeof __configs_react | typeof __configs_tanstack_query | typeof __configs_astro | typeof __configs_jest | typeof __configs_vitest | typeof __configs_testing_library | typeof __configs_playwright | typeof __configs_storybook | typeof __configs_nextjs)[]>;
15944
18061
 
15945
- export { type Options, type Rules, type TypedConfigItem, defineConfig as default, defineConfig };
18062
+ export { type Options, type Rules, type TypedConfigItem, defineConfig };