@lincy/eslint-config 5.3.0 → 5.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -203,7 +203,7 @@ interface RuleOptions {
203
203
  */
204
204
  'default-case'?: Linter.RuleEntry<DefaultCase>
205
205
  /**
206
- * Enforce default clauses in switch statements to be last
206
+ * Enforce `default` clauses in switch statements to be last
207
207
  * @see https://eslint.org/docs/latest/rules/default-case-last
208
208
  */
209
209
  'default-case-last'?: Linter.RuleEntry<[]>
@@ -280,7 +280,7 @@ interface RuleOptions {
280
280
  */
281
281
  'eslint-comments/require-description'?: Linter.RuleEntry<EslintCommentsRequireDescription>
282
282
  /**
283
- * Enforce "for" loop update clause moving the counter in the right direction
283
+ * Enforce `for` loop update clause moving the counter in the right direction
284
284
  * @see https://eslint.org/docs/latest/rules/for-direction
285
285
  */
286
286
  'for-direction'?: Linter.RuleEntry<[]>
@@ -387,233 +387,233 @@ interface RuleOptions {
387
387
  'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
388
388
  /**
389
389
  * Enforce or ban the use of inline type-only markers for named imports.
390
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/consistent-type-specifier-style.md
390
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/consistent-type-specifier-style.md
391
391
  */
392
392
  'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
393
393
  /**
394
394
  * Ensure a default export is present, given a default import.
395
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/default.md
395
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/default.md
396
396
  */
397
397
  'import/default'?: Linter.RuleEntry<[]>
398
398
  /**
399
399
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
400
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/dynamic-import-chunkname.md
400
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/dynamic-import-chunkname.md
401
401
  */
402
402
  'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
403
403
  /**
404
404
  * Forbid any invalid exports, i.e. re-export of the same name.
405
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/export.md
405
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/export.md
406
406
  */
407
407
  'import/export'?: Linter.RuleEntry<[]>
408
408
  /**
409
409
  * Ensure all exports appear after other statements.
410
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/exports-last.md
410
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/exports-last.md
411
411
  */
412
412
  'import/exports-last'?: Linter.RuleEntry<[]>
413
413
  /**
414
414
  * Ensure consistent use of file extension within the import path.
415
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/extensions.md
415
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/extensions.md
416
416
  */
417
417
  'import/extensions'?: Linter.RuleEntry<ImportExtensions>
418
418
  /**
419
419
  * Ensure all imports appear before other statements.
420
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/first.md
420
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/first.md
421
421
  */
422
422
  'import/first'?: Linter.RuleEntry<ImportFirst>
423
423
  /**
424
424
  * Prefer named exports to be grouped together in a single export declaration.
425
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/group-exports.md
425
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/group-exports.md
426
426
  */
427
427
  'import/group-exports'?: Linter.RuleEntry<[]>
428
428
  /**
429
429
  * Replaced by `import-x/first`.
430
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/imports-first.md
430
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/imports-first.md
431
431
  * @deprecated
432
432
  */
433
433
  'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
434
434
  /**
435
435
  * Enforce the maximum number of dependencies a module can have.
436
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/max-dependencies.md
436
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/max-dependencies.md
437
437
  */
438
438
  'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
439
439
  /**
440
440
  * Ensure named imports correspond to a named export in the remote file.
441
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/named.md
441
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/named.md
442
442
  */
443
443
  'import/named'?: Linter.RuleEntry<ImportNamed>
444
444
  /**
445
445
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
446
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/namespace.md
446
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/namespace.md
447
447
  */
448
448
  'import/namespace'?: Linter.RuleEntry<ImportNamespace>
449
449
  /**
450
450
  * Enforce a newline after import statements.
451
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/newline-after-import.md
451
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/newline-after-import.md
452
452
  */
453
453
  'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
454
454
  /**
455
455
  * Forbid import of modules using absolute paths.
456
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-absolute-path.md
456
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-absolute-path.md
457
457
  */
458
458
  'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
459
459
  /**
460
460
  * Forbid AMD `require` and `define` calls.
461
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-amd.md
461
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-amd.md
462
462
  */
463
463
  'import/no-amd'?: Linter.RuleEntry<[]>
464
464
  /**
465
465
  * Forbid anonymous values as default exports.
466
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-anonymous-default-export.md
466
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-anonymous-default-export.md
467
467
  */
468
468
  'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
469
469
  /**
470
470
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
471
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-commonjs.md
471
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-commonjs.md
472
472
  */
473
473
  'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
474
474
  /**
475
475
  * Forbid a module from importing a module with a dependency path back to itself.
476
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-cycle.md
476
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-cycle.md
477
477
  */
478
478
  'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
479
479
  /**
480
480
  * Forbid default exports.
481
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-default-export.md
481
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-default-export.md
482
482
  */
483
483
  'import/no-default-export'?: Linter.RuleEntry<[]>
484
484
  /**
485
485
  * Forbid imported names marked with `@deprecated` documentation tag.
486
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-deprecated.md
486
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-deprecated.md
487
487
  */
488
488
  'import/no-deprecated'?: Linter.RuleEntry<[]>
489
489
  /**
490
490
  * Forbid repeated import of the same module in multiple places.
491
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-duplicates.md
491
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-duplicates.md
492
492
  */
493
493
  'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
494
494
  /**
495
495
  * Forbid `require()` calls with expressions.
496
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-dynamic-require.md
496
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-dynamic-require.md
497
497
  */
498
498
  'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
499
499
  /**
500
500
  * Forbid empty named import blocks.
501
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-empty-named-blocks.md
501
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-empty-named-blocks.md
502
502
  */
503
503
  'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
504
504
  /**
505
505
  * Forbid the use of extraneous packages.
506
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-extraneous-dependencies.md
506
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-extraneous-dependencies.md
507
507
  */
508
508
  'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
509
509
  /**
510
510
  * Forbid import statements with CommonJS module.exports.
511
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-import-module-exports.md
511
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-import-module-exports.md
512
512
  */
513
513
  'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
514
514
  /**
515
515
  * Forbid importing the submodules of other modules.
516
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-internal-modules.md
516
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-internal-modules.md
517
517
  */
518
518
  'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
519
519
  /**
520
520
  * Forbid the use of mutable exports with `var` or `let`.
521
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-mutable-exports.md
521
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-mutable-exports.md
522
522
  */
523
523
  'import/no-mutable-exports'?: Linter.RuleEntry<[]>
524
524
  /**
525
525
  * Forbid use of exported name as identifier of default export.
526
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-named-as-default.md
526
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-named-as-default.md
527
527
  */
528
528
  'import/no-named-as-default'?: Linter.RuleEntry<[]>
529
529
  /**
530
530
  * Forbid use of exported name as property of default export.
531
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-named-as-default-member.md
531
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-named-as-default-member.md
532
532
  */
533
533
  'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
534
534
  /**
535
535
  * Forbid named default exports.
536
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-named-default.md
536
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-named-default.md
537
537
  */
538
538
  'import/no-named-default'?: Linter.RuleEntry<[]>
539
539
  /**
540
540
  * Forbid named exports.
541
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-named-export.md
541
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-named-export.md
542
542
  */
543
543
  'import/no-named-export'?: Linter.RuleEntry<[]>
544
544
  /**
545
545
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
546
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-namespace.md
546
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-namespace.md
547
547
  */
548
548
  'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
549
549
  /**
550
550
  * Forbid Node.js builtin modules.
551
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-nodejs-modules.md
551
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-nodejs-modules.md
552
552
  */
553
553
  'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
554
554
  /**
555
555
  * Forbid importing packages through relative paths.
556
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-relative-packages.md
556
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-relative-packages.md
557
557
  */
558
558
  'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
559
559
  /**
560
560
  * Forbid importing modules from parent directories.
561
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-relative-parent-imports.md
561
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-relative-parent-imports.md
562
562
  */
563
563
  'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
564
564
  /**
565
565
  * Forbid importing a default export by a different name.
566
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-rename-default.md
566
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-rename-default.md
567
567
  */
568
568
  'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
569
569
  /**
570
570
  * Enforce which files can be imported in a given folder.
571
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-restricted-paths.md
571
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-restricted-paths.md
572
572
  */
573
573
  'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
574
574
  /**
575
575
  * Forbid a module from importing itself.
576
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-self-import.md
576
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-self-import.md
577
577
  */
578
578
  'import/no-self-import'?: Linter.RuleEntry<[]>
579
579
  /**
580
580
  * Forbid unassigned imports.
581
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-unassigned-import.md
581
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-unassigned-import.md
582
582
  */
583
583
  'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
584
584
  /**
585
585
  * Ensure imports point to a file/module that can be resolved.
586
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-unresolved.md
586
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-unresolved.md
587
587
  */
588
588
  'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
589
589
  /**
590
590
  * Forbid modules without exports, or exports without matching import in another module.
591
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-unused-modules.md
591
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-unused-modules.md
592
592
  */
593
593
  'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
594
594
  /**
595
595
  * Forbid unnecessary path segments in import and require statements.
596
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-useless-path-segments.md
596
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-useless-path-segments.md
597
597
  */
598
598
  'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
599
599
  /**
600
600
  * Forbid webpack loader syntax in imports.
601
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-webpack-loader-syntax.md
601
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-webpack-loader-syntax.md
602
602
  */
603
603
  'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
604
604
  /**
605
605
  * Enforce a convention in module import order.
606
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/order.md
606
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/order.md
607
607
  */
608
608
  'import/order'?: Linter.RuleEntry<ImportOrder>
609
609
  /**
610
610
  * Prefer a default export if module exports a single name or multiple names.
611
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/prefer-default-export.md
611
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/prefer-default-export.md
612
612
  */
613
613
  'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
614
614
  /**
615
615
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
616
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/unambiguous.md
616
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/unambiguous.md
617
617
  */
618
618
  'import/unambiguous'?: Linter.RuleEntry<[]>
619
619
  /**
@@ -1360,7 +1360,7 @@ interface RuleOptions {
1360
1360
  */
1361
1361
  'no-class-assign'?: Linter.RuleEntry<[]>
1362
1362
  /**
1363
- * Disallow comparing against -0
1363
+ * Disallow comparing against `-0`
1364
1364
  * @see https://eslint.org/docs/latest/rules/no-compare-neg-zero
1365
1365
  */
1366
1366
  'no-compare-neg-zero'?: Linter.RuleEntry<[]>
@@ -1769,7 +1769,7 @@ interface RuleOptions {
1769
1769
  */
1770
1770
  'no-octal-escape'?: Linter.RuleEntry<[]>
1771
1771
  /**
1772
- * Disallow reassigning `function` parameters
1772
+ * Disallow reassigning function parameters
1773
1773
  * @see https://eslint.org/docs/latest/rules/no-param-reassign
1774
1774
  */
1775
1775
  'no-param-reassign'?: Linter.RuleEntry<NoParamReassign>
@@ -1864,7 +1864,7 @@ interface RuleOptions {
1864
1864
  */
1865
1865
  'no-return-await'?: Linter.RuleEntry<[]>
1866
1866
  /**
1867
- * Disallow `javascript:` urls
1867
+ * Disallow `javascript:` URLs
1868
1868
  * @see https://eslint.org/docs/latest/rules/no-script-url
1869
1869
  */
1870
1870
  'no-script-url'?: Linter.RuleEntry<[]>
@@ -2509,7 +2509,7 @@ interface RuleOptions {
2509
2509
  */
2510
2510
  'prefer-object-has-own'?: Linter.RuleEntry<[]>
2511
2511
  /**
2512
- * Disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead
2512
+ * Disallow using `Object.assign` with an object literal as the first argument and prefer the use of object spread instead
2513
2513
  * @see https://eslint.org/docs/latest/rules/prefer-object-spread
2514
2514
  */
2515
2515
  'prefer-object-spread'?: Linter.RuleEntry<[]>
@@ -2797,6 +2797,11 @@ interface RuleOptions {
2797
2797
  * @see https://eslint-react.xyz/docs/rules/no-component-will-update
2798
2798
  */
2799
2799
  'react/no-component-will-update'?: Linter.RuleEntry<[]>
2800
+ /**
2801
+ * disallow the use of '<Context.Provider>'
2802
+ * @see https://eslint-react.xyz/docs/rules/no-context-provider
2803
+ */
2804
+ 'react/no-context-provider'?: Linter.RuleEntry<[]>
2800
2805
  /**
2801
2806
  * disallow using 'createRef' in function components
2802
2807
  * @see https://eslint-react.xyz/docs/rules/no-create-ref
@@ -2817,6 +2822,11 @@ interface RuleOptions {
2817
2822
  * @see https://eslint-react.xyz/docs/rules/no-duplicate-key
2818
2823
  */
2819
2824
  'react/no-duplicate-key'?: Linter.RuleEntry<[]>
2825
+ /**
2826
+ * disallow the use of 'forwardRef'
2827
+ * @see https://eslint-react.xyz/docs/rules/no-forward-ref
2828
+ */
2829
+ 'react/no-forward-ref'?: Linter.RuleEntry<[]>
2820
2830
  /**
2821
2831
  * disallow implicit 'key' props
2822
2832
  * @see https://eslint-react.xyz/docs/rules/no-implicit-key
@@ -3358,7 +3368,7 @@ interface RuleOptions {
3358
3368
  */
3359
3369
  'require-await'?: Linter.RuleEntry<[]>
3360
3370
  /**
3361
- * Enforce the use of `u` or `v` flag on RegExp
3371
+ * Enforce the use of `u` or `v` flag on regular expressions
3362
3372
  * @see https://eslint.org/docs/latest/rules/require-unicode-regexp
3363
3373
  */
3364
3374
  'require-unicode-regexp'?: Linter.RuleEntry<RequireUnicodeRegexp>
@@ -4796,6 +4806,11 @@ interface RuleOptions {
4796
4806
  * @see https://typescript-eslint.io/rules/no-unsafe-return
4797
4807
  */
4798
4808
  'ts/no-unsafe-return'?: Linter.RuleEntry<[]>
4809
+ /**
4810
+ * Disallow type assertions that narrow a type
4811
+ * @see https://typescript-eslint.io/rules/no-unsafe-type-assertion
4812
+ */
4813
+ 'ts/no-unsafe-type-assertion'?: Linter.RuleEntry<[]>
4799
4814
  /**
4800
4815
  * Require unary negation to take a number
4801
4816
  * @see https://typescript-eslint.io/rules/no-unsafe-unary-minus
@@ -4953,6 +4968,11 @@ interface RuleOptions {
4953
4968
  * @see https://typescript-eslint.io/rules/promise-function-async
4954
4969
  */
4955
4970
  'ts/promise-function-async'?: Linter.RuleEntry<TsPromiseFunctionAsync>
4971
+ /**
4972
+ * Enforce that `get()` types should be assignable to their equivalent `set()` type
4973
+ * @see https://typescript-eslint.io/rules/related-getter-setter-pairs
4974
+ */
4975
+ 'ts/related-getter-setter-pairs'?: Linter.RuleEntry<[]>
4956
4976
  /**
4957
4977
  * Require `Array#sort` and `Array#toSorted` calls to always provide a `compareFunction`
4958
4978
  * @see https://typescript-eslint.io/rules/require-array-sort-compare
@@ -6219,7 +6239,7 @@ interface RuleOptions {
6219
6239
  * enforce `inheritAttrs` to be set to `false` when using `v-bind="$attrs"`
6220
6240
  * @see https://eslint.vuejs.org/rules/no-duplicate-attr-inheritance.html
6221
6241
  */
6222
- 'vue/no-duplicate-attr-inheritance'?: Linter.RuleEntry<[]>
6242
+ 'vue/no-duplicate-attr-inheritance'?: Linter.RuleEntry<VueNoDuplicateAttrInheritance>
6223
6243
  /**
6224
6244
  * disallow duplication of attributes
6225
6245
  * @see https://eslint.vuejs.org/rules/no-duplicate-attributes.html
@@ -6664,7 +6684,7 @@ interface RuleOptions {
6664
6684
  */
6665
6685
  'vue/prefer-true-attribute-shorthand'?: Linter.RuleEntry<VuePreferTrueAttributeShorthand>
6666
6686
  /**
6667
- * require using `useTemplateRef` instead of `ref` for template refs
6687
+ * require using `useTemplateRef` instead of `ref`/`shallowRef` for template refs
6668
6688
  * @see https://eslint.vuejs.org/rules/prefer-use-template-ref.html
6669
6689
  */
6670
6690
  'vue/prefer-use-template-ref'?: Linter.RuleEntry<[]>
@@ -6778,6 +6798,11 @@ interface RuleOptions {
6778
6798
  * @see https://eslint.vuejs.org/rules/require-valid-default-prop.html
6779
6799
  */
6780
6800
  'vue/require-valid-default-prop'?: Linter.RuleEntry<[]>
6801
+ /**
6802
+ * enforce using only specific component names
6803
+ * @see https://eslint.vuejs.org/rules/restricted-component-names.html
6804
+ */
6805
+ 'vue/restricted-component-names'?: Linter.RuleEntry<VueRestrictedComponentNames>
6781
6806
  /**
6782
6807
  * enforce that a return statement is present in computed property
6783
6808
  * @see https://eslint.vuejs.org/rules/return-in-computed-property.html
@@ -6804,6 +6829,11 @@ interface RuleOptions {
6804
6829
  * @see https://eslint.vuejs.org/rules/singleline-html-element-content-newline.html
6805
6830
  */
6806
6831
  'vue/singleline-html-element-content-newline'?: Linter.RuleEntry<VueSinglelineHtmlElementContentNewline>
6832
+ /**
6833
+ * enforce specific casing for slot names
6834
+ * @see https://eslint.vuejs.org/rules/slot-name-casing.html
6835
+ */
6836
+ 'vue/slot-name-casing'?: Linter.RuleEntry<VueSlotNameCasing>
6807
6837
  /**
6808
6838
  * enforce sort-keys in a manner that is compatible with order-in-components
6809
6839
  * @see https://eslint.vuejs.org/rules/sort-keys.html
@@ -7861,6 +7891,7 @@ type JsdocInformativeDocs = []|[{
7861
7891
  }]
7862
7892
  // ----- jsdoc/lines-before-block -----
7863
7893
  type JsdocLinesBeforeBlock = []|[{
7894
+ checkBlockStarts?: boolean
7864
7895
  excludedTags?: string[]
7865
7896
  ignoreSameLine?: boolean
7866
7897
  lines?: number
@@ -9422,6 +9453,9 @@ type NodeNoExtraneousImport = []|[{
9422
9453
  replace: [string, string]
9423
9454
  })[]])
9424
9455
  resolvePaths?: string[]
9456
+ resolverConfig?: {
9457
+ [k: string]: unknown | undefined
9458
+ }
9425
9459
  }]
9426
9460
  // ----- node/no-extraneous-require -----
9427
9461
  type NodeNoExtraneousRequire = []|[{
@@ -9443,6 +9477,9 @@ type NodeNoExtraneousRequire = []|[{
9443
9477
  replace: [string, string]
9444
9478
  })[]])
9445
9479
  resolvePaths?: string[]
9480
+ resolverConfig?: {
9481
+ [k: string]: unknown | undefined
9482
+ }
9446
9483
  tryExtensions?: string[]
9447
9484
  }]
9448
9485
  // ----- node/no-hide-core-modules -----
@@ -9455,6 +9492,9 @@ type NodeNoHideCoreModules = []|[{
9455
9492
  type NodeNoMissingImport = []|[{
9456
9493
  allowModules?: string[]
9457
9494
  resolvePaths?: string[]
9495
+ resolverConfig?: {
9496
+ [k: string]: unknown | undefined
9497
+ }
9458
9498
  tryExtensions?: string[]
9459
9499
  ignoreTypeImport?: boolean
9460
9500
  tsconfigPath?: string
@@ -9465,6 +9505,9 @@ type NodeNoMissingRequire = []|[{
9465
9505
  allowModules?: string[]
9466
9506
  tryExtensions?: string[]
9467
9507
  resolvePaths?: string[]
9508
+ resolverConfig?: {
9509
+ [k: string]: unknown | undefined
9510
+ }
9468
9511
  typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
9469
9512
  tsconfigPath?: string
9470
9513
  }]
@@ -9532,6 +9575,9 @@ type NodeNoUnpublishedImport = []|[{
9532
9575
  replace: [string, string]
9533
9576
  })[]])
9534
9577
  resolvePaths?: string[]
9578
+ resolverConfig?: {
9579
+ [k: string]: unknown | undefined
9580
+ }
9535
9581
  ignoreTypeImport?: boolean
9536
9582
  ignorePrivate?: boolean
9537
9583
  }]
@@ -9555,6 +9601,9 @@ type NodeNoUnpublishedRequire = []|[{
9555
9601
  replace: [string, string]
9556
9602
  })[]])
9557
9603
  resolvePaths?: string[]
9604
+ resolverConfig?: {
9605
+ [k: string]: unknown | undefined
9606
+ }
9558
9607
  tryExtensions?: string[]
9559
9608
  ignorePrivate?: boolean
9560
9609
  }]
@@ -9572,7 +9621,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
9572
9621
  type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
9573
9622
  version?: string
9574
9623
  allowExperimental?: boolean
9575
- ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
9624
+ ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
9576
9625
  }]
9577
9626
  // ----- node/prefer-global/buffer -----
9578
9627
  type NodePreferGlobalBuffer = []|[("always" | "never")]
@@ -9725,15 +9774,21 @@ type PerfectionistSortArrayIncludes = []|[{
9725
9774
 
9726
9775
  ignoreCase?: boolean
9727
9776
 
9777
+ alphabet?: string
9778
+
9728
9779
  locales?: (string | string[])
9729
9780
 
9730
9781
  order?: ("asc" | "desc")
9731
9782
 
9732
- type?: ("alphabetical" | "natural" | "line-length")
9783
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
9733
9784
  }]
9734
9785
  // ----- perfectionist/sort-classes -----
9735
9786
  type PerfectionistSortClasses = []|[{
9736
9787
 
9788
+ ignoreCallbackDependenciesPatterns?: string[]
9789
+
9790
+ partitionByComment?: (string[] | boolean | string)
9791
+
9737
9792
  customGroups?: ({
9738
9793
 
9739
9794
  groupName?: string
@@ -9743,12 +9798,12 @@ type PerfectionistSortClasses = []|[{
9743
9798
  order?: ("desc" | "asc")
9744
9799
  anyOf?: {
9745
9800
 
9746
- modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
9747
-
9748
9801
  elementValuePattern?: string
9749
9802
 
9750
9803
  decoratorNamePattern?: string
9751
9804
 
9805
+ modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
9806
+
9752
9807
  selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
9753
9808
 
9754
9809
  elementNamePattern?: string
@@ -9761,21 +9816,17 @@ type PerfectionistSortClasses = []|[{
9761
9816
 
9762
9817
  order?: ("desc" | "asc")
9763
9818
 
9764
- modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
9765
-
9766
9819
  elementValuePattern?: string
9767
9820
 
9768
9821
  decoratorNamePattern?: string
9769
9822
 
9823
+ modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
9824
+
9770
9825
  selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
9771
9826
 
9772
9827
  elementNamePattern?: string
9773
9828
  })[]
9774
9829
 
9775
- ignoreCallbackDependenciesPatterns?: string[]
9776
-
9777
- partitionByComment?: (string[] | boolean | string)
9778
-
9779
9830
  partitionByNewLine?: boolean
9780
9831
 
9781
9832
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -9784,13 +9835,15 @@ type PerfectionistSortClasses = []|[{
9784
9835
 
9785
9836
  ignoreCase?: boolean
9786
9837
 
9838
+ alphabet?: string
9839
+
9787
9840
  locales?: (string | string[])
9788
9841
 
9789
9842
  groups?: (string | string[])[]
9790
9843
 
9791
9844
  order?: ("asc" | "desc")
9792
9845
 
9793
- type?: ("alphabetical" | "natural" | "line-length")
9846
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
9794
9847
  }]
9795
9848
  // ----- perfectionist/sort-decorators -----
9796
9849
  type PerfectionistSortDecorators = []|[{
@@ -9815,13 +9868,15 @@ type PerfectionistSortDecorators = []|[{
9815
9868
 
9816
9869
  ignoreCase?: boolean
9817
9870
 
9871
+ alphabet?: string
9872
+
9818
9873
  locales?: (string | string[])
9819
9874
 
9820
9875
  groups?: (string | string[])[]
9821
9876
 
9822
9877
  order?: ("asc" | "desc")
9823
9878
 
9824
- type?: ("alphabetical" | "natural" | "line-length")
9879
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
9825
9880
  }]
9826
9881
  // ----- perfectionist/sort-enums -----
9827
9882
  type PerfectionistSortEnums = []|[{
@@ -9838,11 +9893,13 @@ type PerfectionistSortEnums = []|[{
9838
9893
 
9839
9894
  ignoreCase?: boolean
9840
9895
 
9896
+ alphabet?: string
9897
+
9841
9898
  locales?: (string | string[])
9842
9899
 
9843
9900
  order?: ("asc" | "desc")
9844
9901
 
9845
- type?: ("alphabetical" | "natural" | "line-length")
9902
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
9846
9903
  }]
9847
9904
  // ----- perfectionist/sort-exports -----
9848
9905
  type PerfectionistSortExports = []|[{
@@ -9857,11 +9914,13 @@ type PerfectionistSortExports = []|[{
9857
9914
 
9858
9915
  ignoreCase?: boolean
9859
9916
 
9917
+ alphabet?: string
9918
+
9860
9919
  locales?: (string | string[])
9861
9920
 
9862
9921
  order?: ("asc" | "desc")
9863
9922
 
9864
- type?: ("alphabetical" | "natural" | "line-length")
9923
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
9865
9924
  }]
9866
9925
  // ----- perfectionist/sort-heritage-clauses -----
9867
9926
  type PerfectionistSortHeritageClauses = []|[{
@@ -9874,13 +9933,15 @@ type PerfectionistSortHeritageClauses = []|[{
9874
9933
 
9875
9934
  ignoreCase?: boolean
9876
9935
 
9936
+ alphabet?: string
9937
+
9877
9938
  locales?: (string | string[])
9878
9939
 
9879
9940
  groups?: (string | string[])[]
9880
9941
 
9881
9942
  order?: ("asc" | "desc")
9882
9943
 
9883
- type?: ("alphabetical" | "natural" | "line-length")
9944
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
9884
9945
  }]
9885
9946
  // ----- perfectionist/sort-imports -----
9886
9947
  type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
@@ -9917,13 +9978,15 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
9917
9978
 
9918
9979
  ignoreCase?: boolean
9919
9980
 
9981
+ alphabet?: string
9982
+
9920
9983
  locales?: (string | string[])
9921
9984
 
9922
9985
  groups?: (string | string[])[]
9923
9986
 
9924
9987
  order?: ("asc" | "desc")
9925
9988
 
9926
- type?: ("alphabetical" | "natural" | "line-length")
9989
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
9927
9990
  })
9928
9991
  type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
9929
9992
  [k: string]: unknown | undefined
@@ -9938,8 +10001,39 @@ type PerfectionistSortInterfaces = []|[{
9938
10001
  ignorePattern?: string[]
9939
10002
 
9940
10003
  partitionByComment?: (string[] | boolean | string)
10004
+ customGroups?: ({
10005
+ [k: string]: (string | string[]) | undefined
10006
+ } | ({
10007
+
10008
+ groupName?: string
10009
+
10010
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
10011
+
10012
+ order?: ("desc" | "asc")
10013
+ anyOf?: {
10014
+
10015
+ modifiers?: ("optional" | "required" | "multiline")[]
10016
+
10017
+ selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
10018
+
10019
+ elementNamePattern?: string
10020
+ }[]
10021
+ } | {
10022
+
10023
+ groupName?: string
10024
+
10025
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
10026
+
10027
+ order?: ("desc" | "asc")
10028
+
10029
+ modifiers?: ("optional" | "required" | "multiline")[]
10030
+
10031
+ selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
10032
+
10033
+ elementNamePattern?: string
10034
+ })[])
9941
10035
 
9942
- groupKind?: ("mixed" | "optional-first" | "required-first")
10036
+ groupKind?: ("mixed" | "required-first" | "optional-first")
9943
10037
 
9944
10038
  partitionByNewLine?: boolean
9945
10039
 
@@ -9947,19 +10041,17 @@ type PerfectionistSortInterfaces = []|[{
9947
10041
 
9948
10042
  newlinesBetween?: ("ignore" | "always" | "never")
9949
10043
 
9950
- customGroups?: {
9951
- [k: string]: (string | string[]) | undefined
9952
- }
9953
-
9954
10044
  ignoreCase?: boolean
9955
10045
 
10046
+ alphabet?: string
10047
+
9956
10048
  locales?: (string | string[])
9957
10049
 
9958
10050
  groups?: (string | string[])[]
9959
10051
 
9960
10052
  order?: ("asc" | "desc")
9961
10053
 
9962
- type?: ("alphabetical" | "natural" | "line-length")
10054
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
9963
10055
  }]
9964
10056
  // ----- perfectionist/sort-intersection-types -----
9965
10057
  type PerfectionistSortIntersectionTypes = []|[{
@@ -9974,13 +10066,15 @@ type PerfectionistSortIntersectionTypes = []|[{
9974
10066
 
9975
10067
  ignoreCase?: boolean
9976
10068
 
10069
+ alphabet?: string
10070
+
9977
10071
  locales?: (string | string[])
9978
10072
 
9979
10073
  groups?: (string | string[])[]
9980
10074
 
9981
10075
  order?: ("asc" | "desc")
9982
10076
 
9983
- type?: ("alphabetical" | "natural" | "line-length")
10077
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
9984
10078
  }]
9985
10079
  // ----- perfectionist/sort-jsx-props -----
9986
10080
  type PerfectionistSortJsxProps = []|[{
@@ -9995,13 +10089,15 @@ type PerfectionistSortJsxProps = []|[{
9995
10089
 
9996
10090
  ignoreCase?: boolean
9997
10091
 
10092
+ alphabet?: string
10093
+
9998
10094
  locales?: (string | string[])
9999
10095
 
10000
10096
  groups?: (string | string[])[]
10001
10097
 
10002
10098
  order?: ("asc" | "desc")
10003
10099
 
10004
- type?: ("alphabetical" | "natural" | "line-length")
10100
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10005
10101
  }]
10006
10102
  // ----- perfectionist/sort-maps -----
10007
10103
  type PerfectionistSortMaps = []|[{
@@ -10014,15 +10110,19 @@ type PerfectionistSortMaps = []|[{
10014
10110
 
10015
10111
  ignoreCase?: boolean
10016
10112
 
10113
+ alphabet?: string
10114
+
10017
10115
  locales?: (string | string[])
10018
10116
 
10019
10117
  order?: ("asc" | "desc")
10020
10118
 
10021
- type?: ("alphabetical" | "natural" | "line-length")
10119
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10022
10120
  }]
10023
10121
  // ----- perfectionist/sort-modules -----
10024
10122
  type PerfectionistSortModules = []|[{
10025
10123
 
10124
+ partitionByComment?: (string[] | boolean | string)
10125
+
10026
10126
  customGroups?: ({
10027
10127
 
10028
10128
  groupName?: string
@@ -10032,12 +10132,10 @@ type PerfectionistSortModules = []|[{
10032
10132
  order?: ("desc" | "asc")
10033
10133
  anyOf?: {
10034
10134
 
10035
- modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
10036
-
10037
- elementValuePattern?: string
10038
-
10039
10135
  decoratorNamePattern?: string
10040
10136
 
10137
+ modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
10138
+
10041
10139
  selector?: ("enum" | "function" | "interface" | "type" | "class")
10042
10140
 
10043
10141
  elementNamePattern?: string
@@ -10050,19 +10148,15 @@ type PerfectionistSortModules = []|[{
10050
10148
 
10051
10149
  order?: ("desc" | "asc")
10052
10150
 
10053
- modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
10054
-
10055
- elementValuePattern?: string
10056
-
10057
10151
  decoratorNamePattern?: string
10058
10152
 
10153
+ modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
10154
+
10059
10155
  selector?: ("enum" | "function" | "interface" | "type" | "class")
10060
10156
 
10061
10157
  elementNamePattern?: string
10062
10158
  })[]
10063
10159
 
10064
- partitionByComment?: (string[] | boolean | string)
10065
-
10066
10160
  partitionByNewLine?: boolean
10067
10161
 
10068
10162
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -10071,13 +10165,15 @@ type PerfectionistSortModules = []|[{
10071
10165
 
10072
10166
  ignoreCase?: boolean
10073
10167
 
10168
+ alphabet?: string
10169
+
10074
10170
  locales?: (string | string[])
10075
10171
 
10076
10172
  groups?: (string | string[])[]
10077
10173
 
10078
10174
  order?: ("asc" | "desc")
10079
10175
 
10080
- type?: ("alphabetical" | "natural" | "line-length")
10176
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10081
10177
  }]
10082
10178
  // ----- perfectionist/sort-named-exports -----
10083
10179
  type PerfectionistSortNamedExports = []|[{
@@ -10092,11 +10188,13 @@ type PerfectionistSortNamedExports = []|[{
10092
10188
 
10093
10189
  ignoreCase?: boolean
10094
10190
 
10191
+ alphabet?: string
10192
+
10095
10193
  locales?: (string | string[])
10096
10194
 
10097
10195
  order?: ("asc" | "desc")
10098
10196
 
10099
- type?: ("alphabetical" | "natural" | "line-length")
10197
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10100
10198
  }]
10101
10199
  // ----- perfectionist/sort-named-imports -----
10102
10200
  type PerfectionistSortNamedImports = []|[{
@@ -10113,16 +10211,51 @@ type PerfectionistSortNamedImports = []|[{
10113
10211
 
10114
10212
  ignoreCase?: boolean
10115
10213
 
10214
+ alphabet?: string
10215
+
10116
10216
  locales?: (string | string[])
10117
10217
 
10118
10218
  order?: ("asc" | "desc")
10119
10219
 
10120
- type?: ("alphabetical" | "natural" | "line-length")
10220
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10121
10221
  }]
10122
10222
  // ----- perfectionist/sort-object-types -----
10123
10223
  type PerfectionistSortObjectTypes = []|[{
10124
10224
 
10225
+ ignorePattern?: string[]
10226
+
10125
10227
  partitionByComment?: (string[] | boolean | string)
10228
+ customGroups?: ({
10229
+ [k: string]: (string | string[]) | undefined
10230
+ } | ({
10231
+
10232
+ groupName?: string
10233
+
10234
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
10235
+
10236
+ order?: ("desc" | "asc")
10237
+ anyOf?: {
10238
+
10239
+ modifiers?: ("optional" | "required" | "multiline")[]
10240
+
10241
+ selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
10242
+
10243
+ elementNamePattern?: string
10244
+ }[]
10245
+ } | {
10246
+
10247
+ groupName?: string
10248
+
10249
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
10250
+
10251
+ order?: ("desc" | "asc")
10252
+
10253
+ modifiers?: ("optional" | "required" | "multiline")[]
10254
+
10255
+ selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
10256
+
10257
+ elementNamePattern?: string
10258
+ })[])
10126
10259
 
10127
10260
  groupKind?: ("mixed" | "required-first" | "optional-first")
10128
10261
 
@@ -10132,22 +10265,25 @@ type PerfectionistSortObjectTypes = []|[{
10132
10265
 
10133
10266
  newlinesBetween?: ("ignore" | "always" | "never")
10134
10267
 
10135
- customGroups?: {
10136
- [k: string]: (string | string[]) | undefined
10137
- }
10138
-
10139
10268
  ignoreCase?: boolean
10140
10269
 
10270
+ alphabet?: string
10271
+
10141
10272
  locales?: (string | string[])
10142
10273
 
10143
10274
  groups?: (string | string[])[]
10144
10275
 
10145
10276
  order?: ("asc" | "desc")
10146
10277
 
10147
- type?: ("alphabetical" | "natural" | "line-length")
10278
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10148
10279
  }]
10149
10280
  // ----- perfectionist/sort-objects -----
10150
- type PerfectionistSortObjects = []|[{
10281
+ type PerfectionistSortObjects = {
10282
+
10283
+ destructuredObjects?: (boolean | {
10284
+
10285
+ groups?: boolean
10286
+ })
10151
10287
 
10152
10288
  ignorePattern?: string[]
10153
10289
 
@@ -10155,9 +10291,14 @@ type PerfectionistSortObjects = []|[{
10155
10291
 
10156
10292
  destructureOnly?: boolean
10157
10293
 
10294
+ objectDeclarations?: boolean
10295
+
10158
10296
  styledComponents?: boolean
10159
10297
 
10160
10298
  partitionByNewLine?: boolean
10299
+ useConfigurationIf?: {
10300
+ allNamesMatchPattern?: string
10301
+ }
10161
10302
 
10162
10303
  specialCharacters?: ("remove" | "trim" | "keep")
10163
10304
 
@@ -10169,14 +10310,16 @@ type PerfectionistSortObjects = []|[{
10169
10310
 
10170
10311
  ignoreCase?: boolean
10171
10312
 
10313
+ alphabet?: string
10314
+
10172
10315
  locales?: (string | string[])
10173
10316
 
10174
10317
  groups?: (string | string[])[]
10175
10318
 
10176
10319
  order?: ("asc" | "desc")
10177
10320
 
10178
- type?: ("alphabetical" | "natural" | "line-length")
10179
- }]
10321
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10322
+ }[]
10180
10323
  // ----- perfectionist/sort-sets -----
10181
10324
  type PerfectionistSortSets = []|[{
10182
10325
 
@@ -10190,11 +10333,13 @@ type PerfectionistSortSets = []|[{
10190
10333
 
10191
10334
  ignoreCase?: boolean
10192
10335
 
10336
+ alphabet?: string
10337
+
10193
10338
  locales?: (string | string[])
10194
10339
 
10195
10340
  order?: ("asc" | "desc")
10196
10341
 
10197
- type?: ("alphabetical" | "natural" | "line-length")
10342
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10198
10343
  }]
10199
10344
  // ----- perfectionist/sort-switch-case -----
10200
10345
  type PerfectionistSortSwitchCase = []|[{
@@ -10203,11 +10348,13 @@ type PerfectionistSortSwitchCase = []|[{
10203
10348
 
10204
10349
  ignoreCase?: boolean
10205
10350
 
10351
+ alphabet?: string
10352
+
10206
10353
  locales?: (string | string[])
10207
10354
 
10208
10355
  order?: ("asc" | "desc")
10209
10356
 
10210
- type?: ("alphabetical" | "natural" | "line-length")
10357
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10211
10358
  }]
10212
10359
  // ----- perfectionist/sort-union-types -----
10213
10360
  type PerfectionistSortUnionTypes = []|[{
@@ -10222,13 +10369,15 @@ type PerfectionistSortUnionTypes = []|[{
10222
10369
 
10223
10370
  ignoreCase?: boolean
10224
10371
 
10372
+ alphabet?: string
10373
+
10225
10374
  locales?: (string | string[])
10226
10375
 
10227
10376
  groups?: (string | string[])[]
10228
10377
 
10229
10378
  order?: ("asc" | "desc")
10230
10379
 
10231
- type?: ("alphabetical" | "natural" | "line-length")
10380
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10232
10381
  }]
10233
10382
  // ----- perfectionist/sort-variable-declarations -----
10234
10383
  type PerfectionistSortVariableDeclarations = []|[{
@@ -10241,11 +10390,13 @@ type PerfectionistSortVariableDeclarations = []|[{
10241
10390
 
10242
10391
  ignoreCase?: boolean
10243
10392
 
10393
+ alphabet?: string
10394
+
10244
10395
  locales?: (string | string[])
10245
10396
 
10246
10397
  order?: ("asc" | "desc")
10247
10398
 
10248
- type?: ("alphabetical" | "natural" | "line-length")
10399
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10249
10400
  }]
10250
10401
  // ----- prefer-arrow-callback -----
10251
10402
  type PreferArrowCallback = []|[{
@@ -10342,9 +10493,10 @@ type ReactNamingConventionFilenameExtension = []|[(("always" | "as-needed") | {
10342
10493
  })]
10343
10494
  // ----- react-refresh/only-export-components -----
10344
10495
  type ReactRefreshOnlyExportComponents = []|[{
10496
+ allowExportNames?: string[]
10345
10497
  allowConstantExport?: boolean
10498
+ customHOCs?: string[]
10346
10499
  checkJS?: boolean
10347
- allowExportNames?: string[]
10348
10500
  }]
10349
10501
  // ----- react/no-useless-fragment -----
10350
10502
  type ReactNoUselessFragment = []|[{
@@ -10508,6 +10660,7 @@ type SortKeys = []|[("asc" | "desc")]|[("asc" | "desc"), {
10508
10660
  natural?: boolean
10509
10661
  minKeys?: number
10510
10662
  allowLineSeparatedGroups?: boolean
10663
+ ignoreComputedKeys?: boolean
10511
10664
  }]
10512
10665
  // ----- sort-vars -----
10513
10666
  type SortVars = []|[{
@@ -10600,6 +10753,8 @@ type StyleCommaDangle = []|[(_StyleCommaDangleValue | {
10600
10753
  imports?: _StyleCommaDangleValueWithIgnore
10601
10754
  exports?: _StyleCommaDangleValueWithIgnore
10602
10755
  functions?: _StyleCommaDangleValueWithIgnore
10756
+ importAttributes?: _StyleCommaDangleValueWithIgnore
10757
+ dynamicImports?: _StyleCommaDangleValueWithIgnore
10603
10758
  enums?: _StyleCommaDangleValueWithIgnore
10604
10759
  generics?: _StyleCommaDangleValueWithIgnore
10605
10760
  tuples?: _StyleCommaDangleValueWithIgnore
@@ -10749,12 +10904,20 @@ type StyleEolLast = []|[("always" | "never" | "unix" | "windows")]
10749
10904
  // ----- style/func-call-spacing -----
10750
10905
  type StyleFuncCallSpacing = ([]|["never"] | []|["always"]|["always", {
10751
10906
  allowNewlines?: boolean
10907
+ optionalChain?: {
10908
+ before?: boolean
10909
+ after?: boolean
10910
+ }
10752
10911
  }])
10753
10912
  // ----- style/function-call-argument-newline -----
10754
10913
  type StyleFunctionCallArgumentNewline = []|[("always" | "never" | "consistent")]
10755
10914
  // ----- style/function-call-spacing -----
10756
10915
  type StyleFunctionCallSpacing = ([]|["never"] | []|["always"]|["always", {
10757
10916
  allowNewlines?: boolean
10917
+ optionalChain?: {
10918
+ before?: boolean
10919
+ after?: boolean
10920
+ }
10758
10921
  }])
10759
10922
  // ----- style/function-paren-newline -----
10760
10923
  type StyleFunctionParenNewline = []|[(("always" | "never" | "consistent" | "multiline" | "multiline-arguments") | {
@@ -12422,6 +12585,8 @@ type TsNoConfusingVoidExpression = []|[{
12422
12585
  ignoreArrowShorthand?: boolean
12423
12586
 
12424
12587
  ignoreVoidOperator?: boolean
12588
+
12589
+ ignoreVoidReturningFunctions?: boolean
12425
12590
  }]
12426
12591
  // ----- ts/no-duplicate-type-constituents -----
12427
12592
  type TsNoDuplicateTypeConstituents = []|[{
@@ -12858,6 +13023,10 @@ type TsPreferOptionalChain = []|[{
12858
13023
  type TsPreferPromiseRejectErrors = []|[{
12859
13024
 
12860
13025
  allowEmptyReject?: boolean
13026
+
13027
+ allowThrowingAny?: boolean
13028
+
13029
+ allowThrowingUnknown?: boolean
12861
13030
  }]
12862
13031
  // ----- ts/prefer-readonly -----
12863
13032
  type TsPreferReadonly = []|[{
@@ -13330,6 +13499,7 @@ type VueAttributeHyphenation = []|[("always" | "never")]|[("always" | "never"),
13330
13499
  } & {
13331
13500
  [k: string]: unknown | undefined
13332
13501
  })[]
13502
+ ignoreTags?: string[]
13333
13503
  }]
13334
13504
  // ----- vue/attributes-order -----
13335
13505
  type VueAttributesOrder = []|[{
@@ -13382,6 +13552,8 @@ type VueCommaDangle = []|[(_VueCommaDangleValue | {
13382
13552
  imports?: _VueCommaDangleValueWithIgnore
13383
13553
  exports?: _VueCommaDangleValueWithIgnore
13384
13554
  functions?: _VueCommaDangleValueWithIgnore
13555
+ importAttributes?: _VueCommaDangleValueWithIgnore
13556
+ dynamicImports?: _VueCommaDangleValueWithIgnore
13385
13557
  enums?: _VueCommaDangleValueWithIgnore
13386
13558
  generics?: _VueCommaDangleValueWithIgnore
13387
13559
  tuples?: _VueCommaDangleValueWithIgnore
@@ -13458,6 +13630,10 @@ type VueFirstAttributeLinebreak = []|[{
13458
13630
  // ----- vue/func-call-spacing -----
13459
13631
  type VueFuncCallSpacing = ([]|["never"] | []|["always"]|["always", {
13460
13632
  allowNewlines?: boolean
13633
+ optionalChain?: {
13634
+ before?: boolean
13635
+ after?: boolean
13636
+ }
13461
13637
  }])
13462
13638
  // ----- vue/html-button-has-type -----
13463
13639
  type VueHtmlButtonHasType = []|[{
@@ -14040,6 +14216,10 @@ type VueNoDeprecatedSlotAttribute = []|[{
14040
14216
  type VueNoDupeKeys = []|[{
14041
14217
  groups?: unknown[]
14042
14218
  }]
14219
+ // ----- vue/no-duplicate-attr-inheritance -----
14220
+ type VueNoDuplicateAttrInheritance = []|[{
14221
+ checkMultiRootNodes?: boolean
14222
+ }]
14043
14223
  // ----- vue/no-duplicate-attributes -----
14044
14224
  type VueNoDuplicateAttributes = []|[{
14045
14225
  allowCoexistClass?: boolean
@@ -14275,6 +14455,7 @@ type VueNoUselessVBind = []|[{
14275
14455
  // ----- vue/no-v-text-v-html-on-component -----
14276
14456
  type VueNoVTextVHtmlOnComponent = []|[{
14277
14457
  allow?: string[]
14458
+ ignoreElementNamespaces?: boolean
14278
14459
  }]
14279
14460
  // ----- vue/object-curly-newline -----
14280
14461
  type VueObjectCurlyNewline = []|[((("always" | "never") | {
@@ -14395,6 +14576,10 @@ type VueRequirePropComment = []|[{
14395
14576
  type VueRequireToggleInsideTransition = []|[{
14396
14577
  additionalDirectives?: string[]
14397
14578
  }]
14579
+ // ----- vue/restricted-component-names -----
14580
+ type VueRestrictedComponentNames = []|[{
14581
+ allow?: string[]
14582
+ }]
14398
14583
  // ----- vue/return-in-computed-property -----
14399
14584
  type VueReturnInComputedProperty = []|[{
14400
14585
  treatUndefinedAsUnspecified?: boolean
@@ -14416,6 +14601,8 @@ type VueSinglelineHtmlElementContentNewline = []|[{
14416
14601
  ignores?: string[]
14417
14602
  externalIgnores?: string[]
14418
14603
  }]
14604
+ // ----- vue/slot-name-casing -----
14605
+ type VueSlotNameCasing = []|[("camelCase" | "kebab-case" | "singleword")]
14419
14606
  // ----- vue/sort-keys -----
14420
14607
  type VueSortKeys = []|[("asc" | "desc")]|[("asc" | "desc"), {
14421
14608
  caseSensitive?: boolean
@@ -14459,6 +14646,7 @@ type VueVOnEventHyphenation = []|[("always" | "never")]|[("always" | "never"), {
14459
14646
  } & {
14460
14647
  [k: string]: unknown | undefined
14461
14648
  })[]
14649
+ ignoreTags?: string[]
14462
14650
  }]
14463
14651
  // ----- vue/v-on-function-call -----
14464
14652
  type VueVOnFunctionCall = []|[("always" | "never")]|[("always" | "never"), {