@kirklin/eslint-config 2.8.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -413,7 +413,7 @@ interface RuleOptions {
413
413
  */
414
414
  'default-case'?: Linter.RuleEntry<DefaultCase>
415
415
  /**
416
- * Enforce default clauses in switch statements to be last
416
+ * Enforce `default` clauses in `switch` statements to be last
417
417
  * @see https://eslint.org/docs/latest/rules/default-case-last
418
418
  */
419
419
  'default-case-last'?: Linter.RuleEntry<[]>
@@ -490,7 +490,7 @@ interface RuleOptions {
490
490
  */
491
491
  'eslint-comments/require-description'?: Linter.RuleEntry<EslintCommentsRequireDescription>
492
492
  /**
493
- * Enforce "for" loop update clause moving the counter in the right direction
493
+ * Enforce `for` loop update clause moving the counter in the right direction
494
494
  * @see https://eslint.org/docs/latest/rules/for-direction
495
495
  */
496
496
  'for-direction'?: Linter.RuleEntry<[]>
@@ -597,233 +597,233 @@ interface RuleOptions {
597
597
  'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
598
598
  /**
599
599
  * Enforce or ban the use of inline type-only markers for named imports.
600
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/consistent-type-specifier-style.md
600
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/consistent-type-specifier-style.md
601
601
  */
602
602
  'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
603
603
  /**
604
604
  * Ensure a default export is present, given a default import.
605
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/default.md
605
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/default.md
606
606
  */
607
607
  'import/default'?: Linter.RuleEntry<[]>
608
608
  /**
609
609
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
610
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/dynamic-import-chunkname.md
610
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/dynamic-import-chunkname.md
611
611
  */
612
612
  'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
613
613
  /**
614
614
  * Forbid any invalid exports, i.e. re-export of the same name.
615
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/export.md
615
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/export.md
616
616
  */
617
617
  'import/export'?: Linter.RuleEntry<[]>
618
618
  /**
619
619
  * Ensure all exports appear after other statements.
620
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/exports-last.md
620
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/exports-last.md
621
621
  */
622
622
  'import/exports-last'?: Linter.RuleEntry<[]>
623
623
  /**
624
624
  * Ensure consistent use of file extension within the import path.
625
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/extensions.md
625
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/extensions.md
626
626
  */
627
627
  'import/extensions'?: Linter.RuleEntry<ImportExtensions>
628
628
  /**
629
629
  * Ensure all imports appear before other statements.
630
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/first.md
630
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/first.md
631
631
  */
632
632
  'import/first'?: Linter.RuleEntry<ImportFirst>
633
633
  /**
634
634
  * Prefer named exports to be grouped together in a single export declaration.
635
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/group-exports.md
635
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/group-exports.md
636
636
  */
637
637
  'import/group-exports'?: Linter.RuleEntry<[]>
638
638
  /**
639
639
  * Replaced by `import-x/first`.
640
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/imports-first.md
640
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/imports-first.md
641
641
  * @deprecated
642
642
  */
643
643
  'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
644
644
  /**
645
645
  * Enforce the maximum number of dependencies a module can have.
646
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/max-dependencies.md
646
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/max-dependencies.md
647
647
  */
648
648
  'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
649
649
  /**
650
650
  * Ensure named imports correspond to a named export in the remote file.
651
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/named.md
651
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/named.md
652
652
  */
653
653
  'import/named'?: Linter.RuleEntry<ImportNamed>
654
654
  /**
655
655
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
656
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/namespace.md
656
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/namespace.md
657
657
  */
658
658
  'import/namespace'?: Linter.RuleEntry<ImportNamespace>
659
659
  /**
660
660
  * Enforce a newline after import statements.
661
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/newline-after-import.md
661
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/newline-after-import.md
662
662
  */
663
663
  'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
664
664
  /**
665
665
  * Forbid import of modules using absolute paths.
666
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-absolute-path.md
666
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-absolute-path.md
667
667
  */
668
668
  'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
669
669
  /**
670
670
  * Forbid AMD `require` and `define` calls.
671
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-amd.md
671
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-amd.md
672
672
  */
673
673
  'import/no-amd'?: Linter.RuleEntry<[]>
674
674
  /**
675
675
  * Forbid anonymous values as default exports.
676
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-anonymous-default-export.md
676
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-anonymous-default-export.md
677
677
  */
678
678
  'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
679
679
  /**
680
680
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
681
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-commonjs.md
681
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-commonjs.md
682
682
  */
683
683
  'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
684
684
  /**
685
685
  * Forbid a module from importing a module with a dependency path back to itself.
686
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-cycle.md
686
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-cycle.md
687
687
  */
688
688
  'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
689
689
  /**
690
690
  * Forbid default exports.
691
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-default-export.md
691
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-default-export.md
692
692
  */
693
693
  'import/no-default-export'?: Linter.RuleEntry<[]>
694
694
  /**
695
695
  * Forbid imported names marked with `@deprecated` documentation tag.
696
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-deprecated.md
696
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-deprecated.md
697
697
  */
698
698
  'import/no-deprecated'?: Linter.RuleEntry<[]>
699
699
  /**
700
700
  * Forbid repeated import of the same module in multiple places.
701
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-duplicates.md
701
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-duplicates.md
702
702
  */
703
703
  'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
704
704
  /**
705
705
  * Forbid `require()` calls with expressions.
706
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-dynamic-require.md
706
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-dynamic-require.md
707
707
  */
708
708
  'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
709
709
  /**
710
710
  * Forbid empty named import blocks.
711
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-empty-named-blocks.md
711
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-empty-named-blocks.md
712
712
  */
713
713
  'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
714
714
  /**
715
715
  * Forbid the use of extraneous packages.
716
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-extraneous-dependencies.md
716
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-extraneous-dependencies.md
717
717
  */
718
718
  'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
719
719
  /**
720
720
  * Forbid import statements with CommonJS module.exports.
721
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-import-module-exports.md
721
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-import-module-exports.md
722
722
  */
723
723
  'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
724
724
  /**
725
725
  * Forbid importing the submodules of other modules.
726
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-internal-modules.md
726
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-internal-modules.md
727
727
  */
728
728
  'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
729
729
  /**
730
730
  * Forbid the use of mutable exports with `var` or `let`.
731
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-mutable-exports.md
731
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-mutable-exports.md
732
732
  */
733
733
  'import/no-mutable-exports'?: Linter.RuleEntry<[]>
734
734
  /**
735
735
  * Forbid use of exported name as identifier of default export.
736
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-named-as-default.md
736
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-as-default.md
737
737
  */
738
738
  'import/no-named-as-default'?: Linter.RuleEntry<[]>
739
739
  /**
740
740
  * Forbid use of exported name as property of default export.
741
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-named-as-default-member.md
741
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-as-default-member.md
742
742
  */
743
743
  'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
744
744
  /**
745
745
  * Forbid named default exports.
746
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-named-default.md
746
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-default.md
747
747
  */
748
748
  'import/no-named-default'?: Linter.RuleEntry<[]>
749
749
  /**
750
750
  * Forbid named exports.
751
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-named-export.md
751
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-export.md
752
752
  */
753
753
  'import/no-named-export'?: Linter.RuleEntry<[]>
754
754
  /**
755
755
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
756
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-namespace.md
756
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-namespace.md
757
757
  */
758
758
  'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
759
759
  /**
760
760
  * Forbid Node.js builtin modules.
761
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-nodejs-modules.md
761
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-nodejs-modules.md
762
762
  */
763
763
  'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
764
764
  /**
765
765
  * Forbid importing packages through relative paths.
766
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-relative-packages.md
766
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-relative-packages.md
767
767
  */
768
768
  'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
769
769
  /**
770
770
  * Forbid importing modules from parent directories.
771
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-relative-parent-imports.md
771
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-relative-parent-imports.md
772
772
  */
773
773
  'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
774
774
  /**
775
775
  * Forbid importing a default export by a different name.
776
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-rename-default.md
776
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-rename-default.md
777
777
  */
778
778
  'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
779
779
  /**
780
780
  * Enforce which files can be imported in a given folder.
781
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-restricted-paths.md
781
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-restricted-paths.md
782
782
  */
783
783
  'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
784
784
  /**
785
785
  * Forbid a module from importing itself.
786
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-self-import.md
786
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-self-import.md
787
787
  */
788
788
  'import/no-self-import'?: Linter.RuleEntry<[]>
789
789
  /**
790
790
  * Forbid unassigned imports.
791
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-unassigned-import.md
791
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unassigned-import.md
792
792
  */
793
793
  'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
794
794
  /**
795
795
  * Ensure imports point to a file/module that can be resolved.
796
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-unresolved.md
796
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unresolved.md
797
797
  */
798
798
  'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
799
799
  /**
800
800
  * Forbid modules without exports, or exports without matching import in another module.
801
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-unused-modules.md
801
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unused-modules.md
802
802
  */
803
803
  'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
804
804
  /**
805
805
  * Forbid unnecessary path segments in import and require statements.
806
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-useless-path-segments.md
806
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-useless-path-segments.md
807
807
  */
808
808
  'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
809
809
  /**
810
810
  * Forbid webpack loader syntax in imports.
811
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-webpack-loader-syntax.md
811
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-webpack-loader-syntax.md
812
812
  */
813
813
  'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
814
814
  /**
815
815
  * Enforce a convention in module import order.
816
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/order.md
816
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/order.md
817
817
  */
818
818
  'import/order'?: Linter.RuleEntry<ImportOrder>
819
819
  /**
820
820
  * Prefer a default export if module exports a single name or multiple names.
821
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/prefer-default-export.md
821
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/prefer-default-export.md
822
822
  */
823
823
  'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
824
824
  /**
825
825
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
826
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/unambiguous.md
826
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/unambiguous.md
827
827
  */
828
828
  'import/unambiguous'?: Linter.RuleEntry<[]>
829
829
  /**
@@ -1452,31 +1452,31 @@ interface RuleOptions {
1452
1452
  */
1453
1453
  'logical-assignment-operators'?: Linter.RuleEntry<LogicalAssignmentOperators>
1454
1454
  /**
1455
- * Require languages for fenced code blocks.
1455
+ * Require languages for fenced code blocks
1456
1456
  */
1457
1457
  'markdown/fenced-code-language'?: Linter.RuleEntry<MarkdownFencedCodeLanguage>
1458
1458
  /**
1459
- * Enforce heading levels increment by one.
1459
+ * Enforce heading levels increment by one
1460
1460
  */
1461
1461
  'markdown/heading-increment'?: Linter.RuleEntry<[]>
1462
1462
  /**
1463
- * Disallow duplicate headings in the same document.
1463
+ * Disallow duplicate headings in the same document
1464
1464
  */
1465
1465
  'markdown/no-duplicate-headings'?: Linter.RuleEntry<[]>
1466
1466
  /**
1467
- * Disallow empty links.
1467
+ * Disallow empty links
1468
1468
  */
1469
1469
  'markdown/no-empty-links'?: Linter.RuleEntry<[]>
1470
1470
  /**
1471
- * Disallow HTML tags.
1471
+ * Disallow HTML tags
1472
1472
  */
1473
1473
  'markdown/no-html'?: Linter.RuleEntry<MarkdownNoHtml>
1474
1474
  /**
1475
- * Disallow invalid label references.
1475
+ * Disallow invalid label references
1476
1476
  */
1477
1477
  'markdown/no-invalid-label-refs'?: Linter.RuleEntry<[]>
1478
1478
  /**
1479
- * Disallow missing label references.
1479
+ * Disallow missing label references
1480
1480
  */
1481
1481
  'markdown/no-missing-label-refs'?: Linter.RuleEntry<[]>
1482
1482
  /**
@@ -1620,7 +1620,7 @@ interface RuleOptions {
1620
1620
  */
1621
1621
  'no-class-assign'?: Linter.RuleEntry<[]>
1622
1622
  /**
1623
- * Disallow comparing against -0
1623
+ * Disallow comparing against `-0`
1624
1624
  * @see https://eslint.org/docs/latest/rules/no-compare-neg-zero
1625
1625
  */
1626
1626
  'no-compare-neg-zero'?: Linter.RuleEntry<[]>
@@ -2029,7 +2029,7 @@ interface RuleOptions {
2029
2029
  */
2030
2030
  'no-octal-escape'?: Linter.RuleEntry<[]>
2031
2031
  /**
2032
- * Disallow reassigning `function` parameters
2032
+ * Disallow reassigning function parameters
2033
2033
  * @see https://eslint.org/docs/latest/rules/no-param-reassign
2034
2034
  */
2035
2035
  'no-param-reassign'?: Linter.RuleEntry<NoParamReassign>
@@ -2124,7 +2124,7 @@ interface RuleOptions {
2124
2124
  */
2125
2125
  'no-return-await'?: Linter.RuleEntry<[]>
2126
2126
  /**
2127
- * Disallow `javascript:` urls
2127
+ * Disallow `javascript:` URLs
2128
2128
  * @see https://eslint.org/docs/latest/rules/no-script-url
2129
2129
  */
2130
2130
  'no-script-url'?: Linter.RuleEntry<[]>
@@ -2769,7 +2769,7 @@ interface RuleOptions {
2769
2769
  */
2770
2770
  'prefer-object-has-own'?: Linter.RuleEntry<[]>
2771
2771
  /**
2772
- * Disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead
2772
+ * Disallow using `Object.assign` with an object literal as the first argument and prefer the use of object spread instead
2773
2773
  * @see https://eslint.org/docs/latest/rules/prefer-object-spread
2774
2774
  */
2775
2775
  'prefer-object-spread'?: Linter.RuleEntry<[]>
@@ -2822,8 +2822,8 @@ interface RuleOptions {
2822
2822
  */
2823
2823
  'radix'?: Linter.RuleEntry<Radix>
2824
2824
  /**
2825
- * disallow passing 'children' to void DOM elements
2826
- * @see https://eslint-react.xyz/docs/rules/dom-no-children-in-void-dom-elements
2825
+ * disallow void elements (AKA self-closing elements) from having children
2826
+ * @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
2827
2827
  */
2828
2828
  'react-dom/no-children-in-void-dom-elements'?: Linter.RuleEntry<[]>
2829
2829
  /**
@@ -2882,10 +2882,20 @@ interface RuleOptions {
2882
2882
  */
2883
2883
  'react-dom/no-unsafe-target-blank'?: Linter.RuleEntry<[]>
2884
2884
  /**
2885
- * enforce custom hooks to use at least one other hook inside
2886
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-redundant-custom-hook
2885
+ * disallow void elements (AKA self-closing elements) from having children
2886
+ * @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
2887
+ */
2888
+ 'react-dom/no-void-elements-with-children'?: Linter.RuleEntry<[]>
2889
+ /**
2890
+ * enforce custom Hooks to use at least one other hook inside
2891
+ * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-useless-custom-hooks
2887
2892
  */
2888
2893
  'react-hooks-extra/ensure-custom-hooks-using-other-hooks'?: Linter.RuleEntry<[]>
2894
+ /**
2895
+ * disallow unnecessary usage of 'useCallback'
2896
+ * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-callback
2897
+ */
2898
+ 'react-hooks-extra/ensure-use-callback-has-non-empty-deps'?: Linter.RuleEntry<[]>
2889
2899
  /**
2890
2900
  * disallow unnecessary usage of 'useMemo'
2891
2901
  * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
@@ -2902,8 +2912,8 @@ interface RuleOptions {
2902
2912
  */
2903
2913
  'react-hooks-extra/no-direct-set-state-in-use-layout-effect'?: Linter.RuleEntry<[]>
2904
2914
  /**
2905
- * enforce custom hooks to use at least one other hook inside
2906
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-redundant-custom-hook
2915
+ * enforce custom Hooks to use at least one other hook inside
2916
+ * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-useless-custom-hooks
2907
2917
  */
2908
2918
  'react-hooks-extra/no-redundant-custom-hook'?: Linter.RuleEntry<[]>
2909
2919
  /**
@@ -2916,6 +2926,11 @@ interface RuleOptions {
2916
2926
  * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
2917
2927
  */
2918
2928
  'react-hooks-extra/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>
2929
+ /**
2930
+ * enforce custom Hooks to use at least one other hook inside
2931
+ * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-useless-custom-hooks
2932
+ */
2933
+ 'react-hooks-extra/no-useless-custom-hooks'?: Linter.RuleEntry<[]>
2919
2934
  /**
2920
2935
  * disallow function calls in 'useState' that aren't wrapped in an initializer function
2921
2936
  * @see https://eslint-react.xyz/docs/rules/hooks-extra-prefer-use-state-lazy-initialization
@@ -2952,6 +2967,26 @@ interface RuleOptions {
2952
2967
  */
2953
2968
  'react-naming-convention/use-state'?: Linter.RuleEntry<[]>
2954
2969
  'react-refresh/only-export-components'?: Linter.RuleEntry<ReactRefreshOnlyExportComponents>
2970
+ /**
2971
+ * enforce that every 'addEventListener' in a component or custom Hook has a corresponding 'removeEventListener'.
2972
+ * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-event-listener
2973
+ */
2974
+ 'react-web-api/no-leaked-event-listener'?: Linter.RuleEntry<[]>
2975
+ /**
2976
+ * enforce that every 'setInterval' in a component or custom Hook has a corresponding 'clearInterval'.
2977
+ * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-interval
2978
+ */
2979
+ 'react-web-api/no-leaked-interval'?: Linter.RuleEntry<[]>
2980
+ /**
2981
+ * enforce cleanup of 'ResizeObserver' instances in components and custom Hooks.
2982
+ * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-resize-observer
2983
+ */
2984
+ 'react-web-api/no-leaked-resize-observer'?: Linter.RuleEntry<[]>
2985
+ /**
2986
+ * enforce that every 'setTimeout' in a component or custom Hook has a corresponding 'clearTimeout'.
2987
+ * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-timeout
2988
+ */
2989
+ 'react-web-api/no-leaked-timeout'?: Linter.RuleEntry<[]>
2955
2990
  /**
2956
2991
  * disallow using shorthand boolean attributes
2957
2992
  * @see https://eslint-react.xyz/docs/rules/avoid-shorthand-boolean
@@ -2969,12 +3004,12 @@ interface RuleOptions {
2969
3004
  'react/ensure-forward-ref-using-ref'?: Linter.RuleEntry<[]>
2970
3005
  /**
2971
3006
  * disallow duplicate props
2972
- * @see https://eslint-react.xyz/docs/rules/jsx-no-duplicate-props
3007
+ * @see https://eslint-react.xyz/docs/rules/no-duplicate-jsx-props
2973
3008
  */
2974
3009
  'react/jsx-no-duplicate-props'?: Linter.RuleEntry<[]>
2975
3010
  /**
2976
- * a helper rule to mark variables as used
2977
- * @see https://eslint-react.xyz/docs/rules/jsx-uses-vars
3011
+ * helpes `eslint/no-unused-vars` to correctly mark JSX variables as used.
3012
+ * @see https://eslint-react.xyz/docs/rules/use-jsx-vars
2978
3013
  */
2979
3014
  'react/jsx-uses-vars'?: Linter.RuleEntry<[]>
2980
3015
  /**
@@ -3057,6 +3092,11 @@ interface RuleOptions {
3057
3092
  * @see https://eslint-react.xyz/docs/rules/no-component-will-update
3058
3093
  */
3059
3094
  'react/no-component-will-update'?: Linter.RuleEntry<[]>
3095
+ /**
3096
+ * disallow the use of '<Context.Provider>'
3097
+ * @see https://eslint-react.xyz/docs/rules/no-context-provider
3098
+ */
3099
+ 'react/no-context-provider'?: Linter.RuleEntry<[]>
3060
3100
  /**
3061
3101
  * disallow using 'createRef' in function components
3062
3102
  * @see https://eslint-react.xyz/docs/rules/no-create-ref
@@ -3072,11 +3112,21 @@ interface RuleOptions {
3072
3112
  * @see https://eslint-react.xyz/docs/rules/no-direct-mutation-state
3073
3113
  */
3074
3114
  'react/no-direct-mutation-state'?: Linter.RuleEntry<[]>
3115
+ /**
3116
+ * disallow duplicate props
3117
+ * @see https://eslint-react.xyz/docs/rules/no-duplicate-jsx-props
3118
+ */
3119
+ 'react/no-duplicate-jsx-props'?: Linter.RuleEntry<[]>
3075
3120
  /**
3076
3121
  * disallow duplicate keys when rendering list
3077
3122
  * @see https://eslint-react.xyz/docs/rules/no-duplicate-key
3078
3123
  */
3079
3124
  'react/no-duplicate-key'?: Linter.RuleEntry<[]>
3125
+ /**
3126
+ * disallow the use of 'forwardRef'
3127
+ * @see https://eslint-react.xyz/docs/rules/no-forward-ref
3128
+ */
3129
+ 'react/no-forward-ref'?: Linter.RuleEntry<[]>
3080
3130
  /**
3081
3131
  * disallow implicit 'key' props
3082
3132
  * @see https://eslint-react.xyz/docs/rules/no-implicit-key
@@ -3167,6 +3217,11 @@ interface RuleOptions {
3167
3217
  * @see https://eslint-react.xyz/docs/rules/no-unused-state
3168
3218
  */
3169
3219
  'react/no-unused-state'?: Linter.RuleEntry<[]>
3220
+ /**
3221
+ * disallow the use of 'useContext'
3222
+ * @see https://eslint-react.xyz/docs/rules/no-use-context
3223
+ */
3224
+ 'react/no-use-context'?: Linter.RuleEntry<[]>
3170
3225
  /**
3171
3226
  * disallow unnecessary fragments
3172
3227
  * @see https://eslint-react.xyz/docs/rules/no-useless-fragment
@@ -3197,6 +3252,11 @@ interface RuleOptions {
3197
3252
  * @see https://eslint-react.xyz/docs/rules/prefer-shorthand-fragment
3198
3253
  */
3199
3254
  'react/prefer-shorthand-fragment'?: Linter.RuleEntry<[]>
3255
+ /**
3256
+ * helpes `eslint/no-unused-vars` to correctly mark JSX variables as used.
3257
+ * @see https://eslint-react.xyz/docs/rules/use-jsx-vars
3258
+ */
3259
+ 'react/use-jsx-vars'?: Linter.RuleEntry<[]>
3200
3260
  /**
3201
3261
  * disallow confusing quantifiers
3202
3262
  * @see https://ota-meshi.github.io/eslint-plugin-regexp/rules/confusing-quantifier.html
@@ -3618,7 +3678,7 @@ interface RuleOptions {
3618
3678
  */
3619
3679
  'require-await'?: Linter.RuleEntry<[]>
3620
3680
  /**
3621
- * Enforce the use of `u` or `v` flag on RegExp
3681
+ * Enforce the use of `u` or `v` flag on regular expressions
3622
3682
  * @see https://eslint.org/docs/latest/rules/require-unicode-regexp
3623
3683
  */
3624
3684
  'require-unicode-regexp'?: Linter.RuleEntry<RequireUnicodeRegexp>
@@ -3753,7 +3813,7 @@ interface RuleOptions {
3753
3813
  */
3754
3814
  'solid/style-prop'?: Linter.RuleEntry<SolidStyleProp>
3755
3815
  /**
3756
- * Enforce sorted import declarations within modules
3816
+ * Enforce sorted `import` declarations within modules
3757
3817
  * @see https://eslint.org/docs/latest/rules/sort-imports
3758
3818
  */
3759
3819
  'sort-imports'?: Linter.RuleEntry<SortImports>
@@ -4805,7 +4865,7 @@ interface RuleOptions {
4805
4865
  */
4806
4866
  'test/padding-around-expect-groups'?: Linter.RuleEntry<[]>
4807
4867
  /**
4808
- * Enforce padding around afterAll blocks
4868
+ * Enforce padding around `test` blocks
4809
4869
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-test-blocks.md
4810
4870
  */
4811
4871
  'test/padding-around-test-blocks'?: Linter.RuleEntry<[]>
@@ -4869,6 +4929,11 @@ interface RuleOptions {
4869
4929
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-spy-on.md
4870
4930
  */
4871
4931
  'test/prefer-spy-on'?: Linter.RuleEntry<[]>
4932
+ /**
4933
+ * enforce using `toBe(true)` and `toBe(false)` over matchers that coerce types to boolean
4934
+ * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-strict-boolean-matchers.md
4935
+ */
4936
+ 'test/prefer-strict-boolean-matchers'?: Linter.RuleEntry<[]>
4872
4937
  /**
4873
4938
  * enforce strict equal over equal
4874
4939
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-strict-equal.md
@@ -4910,7 +4975,7 @@ interface RuleOptions {
4910
4975
  */
4911
4976
  'test/prefer-todo'?: Linter.RuleEntry<[]>
4912
4977
  /**
4913
- * Prefer `vi.mocked()` over `fn as Mock`
4978
+ * require `vi.mocked()` over `fn as Mock`
4914
4979
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-vi-mocked.md
4915
4980
  */
4916
4981
  'test/prefer-vi-mocked'?: Linter.RuleEntry<[]>
@@ -4945,7 +5010,7 @@ interface RuleOptions {
4945
5010
  */
4946
5011
  'test/valid-expect'?: Linter.RuleEntry<TestValidExpect>
4947
5012
  /**
4948
- * Require promises that have expectations in their chain to be valid
5013
+ * require promises that have expectations in their chain to be valid
4949
5014
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-expect-in-promise.md
4950
5015
  */
4951
5016
  'test/valid-expect-in-promise'?: Linter.RuleEntry<[]>
@@ -5214,7 +5279,7 @@ interface RuleOptions {
5214
5279
  * Disallow using code marked as `@deprecated`
5215
5280
  * @see https://typescript-eslint.io/rules/no-deprecated
5216
5281
  */
5217
- 'ts/no-deprecated'?: Linter.RuleEntry<[]>
5282
+ 'ts/no-deprecated'?: Linter.RuleEntry<TsNoDeprecated>
5218
5283
  /**
5219
5284
  * Disallow duplicate class members
5220
5285
  * @see https://typescript-eslint.io/rules/no-dupe-class-members
@@ -5332,6 +5397,11 @@ interface RuleOptions {
5332
5397
  * @see https://typescript-eslint.io/rules/no-misused-promises
5333
5398
  */
5334
5399
  'ts/no-misused-promises'?: Linter.RuleEntry<TsNoMisusedPromises>
5400
+ /**
5401
+ * Disallow using the spread operator when it might cause unexpected behavior
5402
+ * @see https://typescript-eslint.io/rules/no-misused-spread
5403
+ */
5404
+ 'ts/no-misused-spread'?: Linter.RuleEntry<TsNoMisusedSpread>
5335
5405
  /**
5336
5406
  * Disallow enums from having both number and string members
5337
5407
  * @see https://typescript-eslint.io/rules/no-mixed-enums
@@ -5530,7 +5600,7 @@ interface RuleOptions {
5530
5600
  */
5531
5601
  'ts/no-wrapper-object-types'?: Linter.RuleEntry<[]>
5532
5602
  /**
5533
- * Enforce non-null assertions over explicit type casts
5603
+ * Enforce non-null assertions over explicit type assertions
5534
5604
  * @see https://typescript-eslint.io/rules/non-nullable-type-assertion-style
5535
5605
  */
5536
5606
  'ts/non-nullable-type-assertion-style'?: Linter.RuleEntry<[]>
@@ -5615,7 +5685,7 @@ interface RuleOptions {
5615
5685
  */
5616
5686
  'ts/prefer-readonly-parameter-types'?: Linter.RuleEntry<TsPreferReadonlyParameterTypes>
5617
5687
  /**
5618
- * Enforce using type parameter when calling `Array#reduce` instead of casting
5688
+ * Enforce using type parameter when calling `Array#reduce` instead of using a type assertion
5619
5689
  * @see https://typescript-eslint.io/rules/prefer-reduce-type-parameter
5620
5690
  */
5621
5691
  'ts/prefer-reduce-type-parameter'?: Linter.RuleEntry<[]>
@@ -6916,7 +6986,7 @@ interface RuleOptions {
6916
6986
  * enforce `inheritAttrs` to be set to `false` when using `v-bind="$attrs"`
6917
6987
  * @see https://eslint.vuejs.org/rules/no-duplicate-attr-inheritance.html
6918
6988
  */
6919
- 'vue/no-duplicate-attr-inheritance'?: Linter.RuleEntry<[]>
6989
+ 'vue/no-duplicate-attr-inheritance'?: Linter.RuleEntry<VueNoDuplicateAttrInheritance>
6920
6990
  /**
6921
6991
  * disallow duplication of attributes
6922
6992
  * @see https://eslint.vuejs.org/rules/no-duplicate-attributes.html
@@ -7361,7 +7431,7 @@ interface RuleOptions {
7361
7431
  */
7362
7432
  'vue/prefer-true-attribute-shorthand'?: Linter.RuleEntry<VuePreferTrueAttributeShorthand>
7363
7433
  /**
7364
- * require using `useTemplateRef` instead of `ref` for template refs
7434
+ * require using `useTemplateRef` instead of `ref`/`shallowRef` for template refs
7365
7435
  * @see https://eslint.vuejs.org/rules/prefer-use-template-ref.html
7366
7436
  */
7367
7437
  'vue/prefer-use-template-ref'?: Linter.RuleEntry<[]>
@@ -7475,6 +7545,11 @@ interface RuleOptions {
7475
7545
  * @see https://eslint.vuejs.org/rules/require-valid-default-prop.html
7476
7546
  */
7477
7547
  'vue/require-valid-default-prop'?: Linter.RuleEntry<[]>
7548
+ /**
7549
+ * enforce using only specific component names
7550
+ * @see https://eslint.vuejs.org/rules/restricted-component-names.html
7551
+ */
7552
+ 'vue/restricted-component-names'?: Linter.RuleEntry<VueRestrictedComponentNames>
7478
7553
  /**
7479
7554
  * enforce that a return statement is present in computed property
7480
7555
  * @see https://eslint.vuejs.org/rules/return-in-computed-property.html
@@ -7501,6 +7576,11 @@ interface RuleOptions {
7501
7576
  * @see https://eslint.vuejs.org/rules/singleline-html-element-content-newline.html
7502
7577
  */
7503
7578
  'vue/singleline-html-element-content-newline'?: Linter.RuleEntry<VueSinglelineHtmlElementContentNewline>
7579
+ /**
7580
+ * enforce specific casing for slot names
7581
+ * @see https://eslint.vuejs.org/rules/slot-name-casing.html
7582
+ */
7583
+ 'vue/slot-name-casing'?: Linter.RuleEntry<VueSlotNameCasing>
7504
7584
  /**
7505
7585
  * enforce sort-keys in a manner that is compatible with order-in-components
7506
7586
  * @see https://eslint.vuejs.org/rules/sort-keys.html
@@ -10137,6 +10217,9 @@ type NodeNoExtraneousImport = []|[{
10137
10217
  replace: [string, string]
10138
10218
  })[]])
10139
10219
  resolvePaths?: string[]
10220
+ resolverConfig?: {
10221
+ [k: string]: unknown | undefined
10222
+ }
10140
10223
  }]
10141
10224
  // ----- node/no-extraneous-require -----
10142
10225
  type NodeNoExtraneousRequire = []|[{
@@ -10158,6 +10241,9 @@ type NodeNoExtraneousRequire = []|[{
10158
10241
  replace: [string, string]
10159
10242
  })[]])
10160
10243
  resolvePaths?: string[]
10244
+ resolverConfig?: {
10245
+ [k: string]: unknown | undefined
10246
+ }
10161
10247
  tryExtensions?: string[]
10162
10248
  }]
10163
10249
  // ----- node/no-hide-core-modules -----
@@ -10170,6 +10256,9 @@ type NodeNoHideCoreModules = []|[{
10170
10256
  type NodeNoMissingImport = []|[{
10171
10257
  allowModules?: string[]
10172
10258
  resolvePaths?: string[]
10259
+ resolverConfig?: {
10260
+ [k: string]: unknown | undefined
10261
+ }
10173
10262
  tryExtensions?: string[]
10174
10263
  ignoreTypeImport?: boolean
10175
10264
  tsconfigPath?: string
@@ -10180,6 +10269,9 @@ type NodeNoMissingRequire = []|[{
10180
10269
  allowModules?: string[]
10181
10270
  tryExtensions?: string[]
10182
10271
  resolvePaths?: string[]
10272
+ resolverConfig?: {
10273
+ [k: string]: unknown | undefined
10274
+ }
10183
10275
  typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
10184
10276
  tsconfigPath?: string
10185
10277
  }]
@@ -10247,6 +10339,9 @@ type NodeNoUnpublishedImport = []|[{
10247
10339
  replace: [string, string]
10248
10340
  })[]])
10249
10341
  resolvePaths?: string[]
10342
+ resolverConfig?: {
10343
+ [k: string]: unknown | undefined
10344
+ }
10250
10345
  ignoreTypeImport?: boolean
10251
10346
  ignorePrivate?: boolean
10252
10347
  }]
@@ -10270,6 +10365,9 @@ type NodeNoUnpublishedRequire = []|[{
10270
10365
  replace: [string, string]
10271
10366
  })[]])
10272
10367
  resolvePaths?: string[]
10368
+ resolverConfig?: {
10369
+ [k: string]: unknown | undefined
10370
+ }
10273
10371
  tryExtensions?: string[]
10274
10372
  ignorePrivate?: boolean
10275
10373
  }]
@@ -10287,7 +10385,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
10287
10385
  type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
10288
10386
  version?: string
10289
10387
  allowExperimental?: boolean
10290
- 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")[]
10388
+ 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")[]
10291
10389
  }]
10292
10390
  // ----- node/prefer-global/buffer -----
10293
10391
  type NodePreferGlobalBuffer = []|[("always" | "never")]
@@ -10428,26 +10526,85 @@ type PaddingLineBetweenStatements = {
10428
10526
  next: _PaddingLineBetweenStatementsStatementType
10429
10527
  }[]
10430
10528
  // ----- perfectionist/sort-array-includes -----
10431
- type PerfectionistSortArrayIncludes = []|[{
10529
+ type PerfectionistSortArrayIncludes = {
10530
+
10531
+ specialCharacters?: ("remove" | "trim" | "keep")
10532
+
10533
+ ignoreCase?: boolean
10534
+
10535
+ alphabet?: string
10432
10536
 
10433
- partitionByComment?: (string[] | boolean | string)
10537
+ locales?: (string | string[])
10538
+
10539
+ order?: ("asc" | "desc")
10434
10540
 
10435
10541
  groupKind?: ("mixed" | "literals-first" | "spreads-first")
10436
10542
 
10543
+ customGroups?: ({
10544
+
10545
+ groupName?: string
10546
+
10547
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
10548
+
10549
+ order?: ("desc" | "asc")
10550
+
10551
+ newlinesInside?: ("always" | "never")
10552
+ anyOf?: {
10553
+
10554
+ selector?: ("literal" | "spread")
10555
+
10556
+ elementNamePattern?: string
10557
+ }[]
10558
+ } | {
10559
+
10560
+ groupName?: string
10561
+
10562
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
10563
+
10564
+ order?: ("desc" | "asc")
10565
+
10566
+ newlinesInside?: ("always" | "never")
10567
+
10568
+ selector?: ("literal" | "spread")
10569
+
10570
+ elementNamePattern?: string
10571
+ })[]
10572
+ useConfigurationIf?: {
10573
+ allNamesMatchPattern?: string
10574
+ }
10575
+
10576
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
10577
+
10578
+ partitionByComment?: (string[] | boolean | string | {
10579
+ block?: (string[] | boolean | string)
10580
+ line?: (string[] | boolean | string)
10581
+ [k: string]: unknown | undefined
10582
+ })
10583
+
10437
10584
  partitionByNewLine?: boolean
10438
10585
 
10586
+ newlinesBetween?: ("ignore" | "always" | "never")
10587
+
10588
+ groups?: (string | string[] | {
10589
+
10590
+ newlinesBetween?: ("ignore" | "always" | "never")
10591
+ [k: string]: unknown | undefined
10592
+ })[]
10593
+ }[]
10594
+ // ----- perfectionist/sort-classes -----
10595
+ type PerfectionistSortClasses = []|[{
10596
+
10439
10597
  specialCharacters?: ("remove" | "trim" | "keep")
10440
10598
 
10441
10599
  ignoreCase?: boolean
10442
10600
 
10601
+ alphabet?: string
10602
+
10443
10603
  locales?: (string | string[])
10444
10604
 
10445
10605
  order?: ("asc" | "desc")
10446
10606
 
10447
- type?: ("alphabetical" | "natural" | "line-length")
10448
- }]
10449
- // ----- perfectionist/sort-classes -----
10450
- type PerfectionistSortClasses = []|[{
10607
+ ignoreCallbackDependenciesPatterns?: string[]
10451
10608
 
10452
10609
  customGroups?: ({
10453
10610
 
@@ -10456,16 +10613,18 @@ type PerfectionistSortClasses = []|[{
10456
10613
  type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
10457
10614
 
10458
10615
  order?: ("desc" | "asc")
10616
+
10617
+ newlinesInside?: ("always" | "never")
10459
10618
  anyOf?: {
10460
10619
 
10461
- modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
10462
-
10463
- elementValuePattern?: string
10464
-
10465
10620
  decoratorNamePattern?: string
10466
10621
 
10622
+ modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
10623
+
10467
10624
  selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
10468
10625
 
10626
+ elementValuePattern?: string
10627
+
10469
10628
  elementNamePattern?: string
10470
10629
  }[]
10471
10630
  } | {
@@ -10476,41 +10635,49 @@ type PerfectionistSortClasses = []|[{
10476
10635
 
10477
10636
  order?: ("desc" | "asc")
10478
10637
 
10479
- modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
10480
-
10481
- elementValuePattern?: string
10638
+ newlinesInside?: ("always" | "never")
10482
10639
 
10483
10640
  decoratorNamePattern?: string
10484
10641
 
10642
+ modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
10643
+
10485
10644
  selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
10486
10645
 
10646
+ elementValuePattern?: string
10647
+
10487
10648
  elementNamePattern?: string
10488
10649
  })[]
10489
10650
 
10490
- ignoreCallbackDependenciesPatterns?: string[]
10491
-
10492
- partitionByComment?: (string[] | boolean | string)
10651
+ partitionByComment?: (string[] | boolean | string | {
10652
+ block?: (string[] | boolean | string)
10653
+ line?: (string[] | boolean | string)
10654
+ [k: string]: unknown | undefined
10655
+ })
10493
10656
 
10494
10657
  partitionByNewLine?: boolean
10495
10658
 
10496
- specialCharacters?: ("remove" | "trim" | "keep")
10497
-
10498
10659
  newlinesBetween?: ("ignore" | "always" | "never")
10499
10660
 
10500
- ignoreCase?: boolean
10501
-
10502
- locales?: (string | string[])
10503
-
10504
- groups?: (string | string[])[]
10505
-
10506
- order?: ("asc" | "desc")
10661
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10507
10662
 
10508
- type?: ("alphabetical" | "natural" | "line-length")
10663
+ groups?: (string | string[] | {
10664
+
10665
+ newlinesBetween?: ("ignore" | "always" | "never")
10666
+ [k: string]: unknown | undefined
10667
+ })[]
10509
10668
  }]
10510
10669
  // ----- perfectionist/sort-decorators -----
10511
10670
  type PerfectionistSortDecorators = []|[{
10512
10671
 
10513
- partitionByComment?: (string[] | boolean | string)
10672
+ specialCharacters?: ("remove" | "trim" | "keep")
10673
+
10674
+ ignoreCase?: boolean
10675
+
10676
+ alphabet?: string
10677
+
10678
+ locales?: (string | string[])
10679
+
10680
+ order?: ("asc" | "desc")
10514
10681
 
10515
10682
  sortOnParameters?: boolean
10516
10683
 
@@ -10522,85 +10689,154 @@ type PerfectionistSortDecorators = []|[{
10522
10689
 
10523
10690
  sortOnClasses?: boolean
10524
10691
 
10525
- specialCharacters?: ("remove" | "trim" | "keep")
10692
+ partitionByComment?: (string[] | boolean | string | {
10693
+ block?: (string[] | boolean | string)
10694
+ line?: (string[] | boolean | string)
10695
+ [k: string]: unknown | undefined
10696
+ })
10526
10697
 
10527
10698
  customGroups?: {
10528
10699
  [k: string]: (string | string[]) | undefined
10529
10700
  }
10530
10701
 
10531
- ignoreCase?: boolean
10532
-
10533
- locales?: (string | string[])
10534
-
10535
- groups?: (string | string[])[]
10536
-
10537
- order?: ("asc" | "desc")
10702
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10538
10703
 
10539
- type?: ("alphabetical" | "natural" | "line-length")
10704
+ groups?: (string | string[] | {
10705
+
10706
+ newlinesBetween?: ("ignore" | "always" | "never")
10707
+ [k: string]: unknown | undefined
10708
+ })[]
10540
10709
  }]
10541
10710
  // ----- perfectionist/sort-enums -----
10542
10711
  type PerfectionistSortEnums = []|[{
10543
10712
 
10544
- partitionByComment?: (string[] | boolean | string)
10545
-
10546
- forceNumericSort?: boolean
10547
-
10548
- sortByValue?: boolean
10549
-
10550
- partitionByNewLine?: boolean
10551
-
10552
10713
  specialCharacters?: ("remove" | "trim" | "keep")
10553
10714
 
10554
10715
  ignoreCase?: boolean
10555
10716
 
10717
+ alphabet?: string
10718
+
10556
10719
  locales?: (string | string[])
10557
10720
 
10558
10721
  order?: ("asc" | "desc")
10559
10722
 
10560
- type?: ("alphabetical" | "natural" | "line-length")
10561
- }]
10562
- // ----- perfectionist/sort-exports -----
10563
- type PerfectionistSortExports = []|[{
10723
+ forceNumericSort?: boolean
10724
+ customGroups?: ({
10725
+ [k: string]: (string | string[]) | undefined
10726
+ } | ({
10727
+
10728
+ groupName?: string
10729
+
10730
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
10731
+
10732
+ order?: ("desc" | "asc")
10733
+
10734
+ newlinesInside?: ("always" | "never")
10735
+ anyOf?: {
10736
+
10737
+ elementValuePattern?: string
10738
+
10739
+ elementNamePattern?: string
10740
+ }[]
10741
+ } | {
10742
+
10743
+ groupName?: string
10744
+
10745
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
10746
+
10747
+ order?: ("desc" | "asc")
10748
+
10749
+ newlinesInside?: ("always" | "never")
10750
+
10751
+ elementValuePattern?: string
10752
+
10753
+ elementNamePattern?: string
10754
+ })[])
10564
10755
 
10565
- partitionByComment?: (string[] | boolean | string)
10756
+ sortByValue?: boolean
10566
10757
 
10567
- groupKind?: ("mixed" | "values-first" | "types-first")
10758
+ partitionByComment?: (string[] | boolean | string | {
10759
+ block?: (string[] | boolean | string)
10760
+ line?: (string[] | boolean | string)
10761
+ [k: string]: unknown | undefined
10762
+ })
10568
10763
 
10569
10764
  partitionByNewLine?: boolean
10570
10765
 
10766
+ newlinesBetween?: ("ignore" | "always" | "never")
10767
+
10768
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10769
+
10770
+ groups?: (string | string[] | {
10771
+
10772
+ newlinesBetween?: ("ignore" | "always" | "never")
10773
+ [k: string]: unknown | undefined
10774
+ })[]
10775
+ }]
10776
+ // ----- perfectionist/sort-exports -----
10777
+ type PerfectionistSortExports = []|[{
10778
+
10571
10779
  specialCharacters?: ("remove" | "trim" | "keep")
10572
10780
 
10573
10781
  ignoreCase?: boolean
10574
10782
 
10783
+ alphabet?: string
10784
+
10575
10785
  locales?: (string | string[])
10576
10786
 
10577
10787
  order?: ("asc" | "desc")
10578
10788
 
10579
- type?: ("alphabetical" | "natural" | "line-length")
10789
+ groupKind?: ("mixed" | "values-first" | "types-first")
10790
+
10791
+ partitionByComment?: (string[] | boolean | string | {
10792
+ block?: (string[] | boolean | string)
10793
+ line?: (string[] | boolean | string)
10794
+ [k: string]: unknown | undefined
10795
+ })
10796
+
10797
+ partitionByNewLine?: boolean
10798
+
10799
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10580
10800
  }]
10581
10801
  // ----- perfectionist/sort-heritage-clauses -----
10582
10802
  type PerfectionistSortHeritageClauses = []|[{
10583
10803
 
10584
10804
  specialCharacters?: ("remove" | "trim" | "keep")
10585
10805
 
10586
- customGroups?: {
10587
- [k: string]: (string | string[]) | undefined
10588
- }
10589
-
10590
10806
  ignoreCase?: boolean
10591
10807
 
10592
- locales?: (string | string[])
10808
+ alphabet?: string
10593
10809
 
10594
- groups?: (string | string[])[]
10810
+ locales?: (string | string[])
10595
10811
 
10596
10812
  order?: ("asc" | "desc")
10597
10813
 
10598
- type?: ("alphabetical" | "natural" | "line-length")
10814
+ customGroups?: {
10815
+ [k: string]: (string | string[]) | undefined
10816
+ }
10817
+
10818
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10819
+
10820
+ groups?: (string | string[] | {
10821
+
10822
+ newlinesBetween?: ("ignore" | "always" | "never")
10823
+ [k: string]: unknown | undefined
10824
+ })[]
10599
10825
  }]
10600
10826
  // ----- perfectionist/sort-imports -----
10601
10827
  type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
10602
10828
  type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
10603
10829
 
10830
+ specialCharacters?: ("remove" | "trim" | "keep")
10831
+
10832
+ ignoreCase?: boolean
10833
+
10834
+ alphabet?: string
10835
+
10836
+ locales?: (string | string[])
10837
+
10838
+ order?: ("asc" | "desc")
10839
+
10604
10840
  customGroups?: {
10605
10841
 
10606
10842
  value?: {
@@ -10612,8 +10848,6 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
10612
10848
  }
10613
10849
  }
10614
10850
 
10615
- partitionByComment?: (string[] | boolean | string)
10616
-
10617
10851
  internalPattern?: string[]
10618
10852
 
10619
10853
  maxLineLength?: number
@@ -10624,21 +10858,23 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
10624
10858
 
10625
10859
  tsconfigRootDir?: string
10626
10860
 
10627
- partitionByNewLine?: boolean
10861
+ partitionByComment?: (string[] | boolean | string | {
10862
+ block?: (string[] | boolean | string)
10863
+ line?: (string[] | boolean | string)
10864
+ [k: string]: unknown | undefined
10865
+ })
10628
10866
 
10629
- specialCharacters?: ("remove" | "trim" | "keep")
10867
+ partitionByNewLine?: boolean
10630
10868
 
10631
10869
  newlinesBetween?: ("ignore" | "always" | "never")
10632
10870
 
10633
- ignoreCase?: boolean
10634
-
10635
- locales?: (string | string[])
10636
-
10637
- groups?: (string | string[])[]
10638
-
10639
- order?: ("asc" | "desc")
10871
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10640
10872
 
10641
- type?: ("alphabetical" | "natural" | "line-length")
10873
+ groups?: (string | string[] | {
10874
+
10875
+ newlinesBetween?: ("ignore" | "always" | "never")
10876
+ [k: string]: unknown | undefined
10877
+ })[]
10642
10878
  })
10643
10879
  type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
10644
10880
  [k: string]: unknown | undefined
@@ -10648,96 +10884,214 @@ interface _PerfectionistSortImports_IsLineLength {
10648
10884
  [k: string]: unknown | undefined
10649
10885
  }
10650
10886
  // ----- perfectionist/sort-interfaces -----
10651
- type PerfectionistSortInterfaces = []|[{
10887
+ type PerfectionistSortInterfaces = {
10652
10888
 
10653
- ignorePattern?: string[]
10889
+ specialCharacters?: ("remove" | "trim" | "keep")
10654
10890
 
10655
- partitionByComment?: (string[] | boolean | string)
10891
+ ignoreCase?: boolean
10656
10892
 
10657
- groupKind?: ("mixed" | "optional-first" | "required-first")
10893
+ alphabet?: string
10658
10894
 
10659
- partitionByNewLine?: boolean
10895
+ locales?: (string | string[])
10660
10896
 
10661
- specialCharacters?: ("remove" | "trim" | "keep")
10662
-
10663
- newlinesBetween?: ("ignore" | "always" | "never")
10897
+ order?: ("asc" | "desc")
10664
10898
 
10665
- customGroups?: {
10666
- [k: string]: (string | string[]) | undefined
10899
+ ignorePattern?: string[]
10900
+ useConfigurationIf?: {
10901
+ allNamesMatchPattern?: string
10902
+ declarationMatchesPattern?: string
10667
10903
  }
10904
+ customGroups?: ({
10905
+ [k: string]: (string | string[]) | undefined
10906
+ } | ({
10907
+
10908
+ groupName?: string
10909
+
10910
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
10911
+
10912
+ order?: ("desc" | "asc")
10913
+
10914
+ newlinesInside?: ("always" | "never")
10915
+ anyOf?: {
10916
+
10917
+ modifiers?: ("optional" | "required" | "multiline")[]
10918
+
10919
+ selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
10920
+
10921
+ elementNamePattern?: string
10922
+ }[]
10923
+ } | {
10924
+
10925
+ groupName?: string
10926
+
10927
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
10928
+
10929
+ order?: ("desc" | "asc")
10930
+
10931
+ newlinesInside?: ("always" | "never")
10932
+
10933
+ modifiers?: ("optional" | "required" | "multiline")[]
10934
+
10935
+ selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
10936
+
10937
+ elementNamePattern?: string
10938
+ })[])
10668
10939
 
10669
- ignoreCase?: boolean
10940
+ groupKind?: ("mixed" | "required-first" | "optional-first")
10670
10941
 
10671
- locales?: (string | string[])
10942
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
10943
+
10944
+ partitionByComment?: (string[] | boolean | string | {
10945
+ block?: (string[] | boolean | string)
10946
+ line?: (string[] | boolean | string)
10947
+ [k: string]: unknown | undefined
10948
+ })
10672
10949
 
10673
- groups?: (string | string[])[]
10950
+ partitionByNewLine?: boolean
10674
10951
 
10675
- order?: ("asc" | "desc")
10952
+ newlinesBetween?: ("ignore" | "always" | "never")
10676
10953
 
10677
- type?: ("alphabetical" | "natural" | "line-length")
10678
- }]
10954
+ groups?: (string | string[] | {
10955
+
10956
+ newlinesBetween?: ("ignore" | "always" | "never")
10957
+ [k: string]: unknown | undefined
10958
+ })[]
10959
+ }[]
10679
10960
  // ----- perfectionist/sort-intersection-types -----
10680
10961
  type PerfectionistSortIntersectionTypes = []|[{
10681
10962
 
10682
- partitionByComment?: (string[] | boolean | string)
10683
-
10684
- partitionByNewLine?: boolean
10685
-
10686
10963
  specialCharacters?: ("remove" | "trim" | "keep")
10687
10964
 
10688
- newlinesBetween?: ("ignore" | "always" | "never")
10689
-
10690
10965
  ignoreCase?: boolean
10691
10966
 
10692
- locales?: (string | string[])
10967
+ alphabet?: string
10693
10968
 
10694
- groups?: (string | string[])[]
10969
+ locales?: (string | string[])
10695
10970
 
10696
10971
  order?: ("asc" | "desc")
10697
10972
 
10698
- type?: ("alphabetical" | "natural" | "line-length")
10973
+ partitionByComment?: (string[] | boolean | string | {
10974
+ block?: (string[] | boolean | string)
10975
+ line?: (string[] | boolean | string)
10976
+ [k: string]: unknown | undefined
10977
+ })
10978
+
10979
+ partitionByNewLine?: boolean
10980
+
10981
+ newlinesBetween?: ("ignore" | "always" | "never")
10982
+
10983
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10984
+
10985
+ groups?: (string | string[] | {
10986
+
10987
+ newlinesBetween?: ("ignore" | "always" | "never")
10988
+ [k: string]: unknown | undefined
10989
+ })[]
10699
10990
  }]
10700
10991
  // ----- perfectionist/sort-jsx-props -----
10701
10992
  type PerfectionistSortJsxProps = []|[{
10702
10993
 
10994
+ specialCharacters?: ("remove" | "trim" | "keep")
10995
+
10996
+ ignoreCase?: boolean
10997
+
10998
+ alphabet?: string
10999
+
11000
+ locales?: (string | string[])
11001
+
11002
+ order?: ("asc" | "desc")
11003
+
10703
11004
  ignorePattern?: string[]
10704
11005
 
10705
- specialCharacters?: ("remove" | "trim" | "keep")
11006
+ partitionByNewLine?: boolean
11007
+
11008
+ newlinesBetween?: ("ignore" | "always" | "never")
10706
11009
 
10707
11010
  customGroups?: {
10708
11011
  [k: string]: (string | string[]) | undefined
10709
11012
  }
10710
11013
 
11014
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
11015
+
11016
+ groups?: (string | string[] | {
11017
+
11018
+ newlinesBetween?: ("ignore" | "always" | "never")
11019
+ [k: string]: unknown | undefined
11020
+ })[]
11021
+ }]
11022
+ // ----- perfectionist/sort-maps -----
11023
+ type PerfectionistSortMaps = {
11024
+
11025
+ specialCharacters?: ("remove" | "trim" | "keep")
11026
+
10711
11027
  ignoreCase?: boolean
10712
11028
 
10713
- locales?: (string | string[])
11029
+ alphabet?: string
10714
11030
 
10715
- groups?: (string | string[])[]
11031
+ locales?: (string | string[])
10716
11032
 
10717
11033
  order?: ("asc" | "desc")
10718
11034
 
10719
- type?: ("alphabetical" | "natural" | "line-length")
10720
- }]
10721
- // ----- perfectionist/sort-maps -----
10722
- type PerfectionistSortMaps = []|[{
11035
+ customGroups?: ({
11036
+
11037
+ groupName?: string
11038
+
11039
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
11040
+
11041
+ order?: ("desc" | "asc")
11042
+
11043
+ newlinesInside?: ("always" | "never")
11044
+ anyOf?: {
11045
+
11046
+ elementNamePattern?: string
11047
+ }[]
11048
+ } | {
11049
+
11050
+ groupName?: string
11051
+
11052
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
11053
+
11054
+ order?: ("desc" | "asc")
11055
+
11056
+ newlinesInside?: ("always" | "never")
11057
+
11058
+ elementNamePattern?: string
11059
+ })[]
11060
+ useConfigurationIf?: {
11061
+ allNamesMatchPattern?: string
11062
+ }
10723
11063
 
10724
- partitionByComment?: (string[] | boolean | string)
11064
+ partitionByComment?: (string[] | boolean | string | {
11065
+ block?: (string[] | boolean | string)
11066
+ line?: (string[] | boolean | string)
11067
+ [k: string]: unknown | undefined
11068
+ })
10725
11069
 
10726
11070
  partitionByNewLine?: boolean
10727
11071
 
11072
+ newlinesBetween?: ("ignore" | "always" | "never")
11073
+
11074
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
11075
+
11076
+ groups?: (string | string[] | {
11077
+
11078
+ newlinesBetween?: ("ignore" | "always" | "never")
11079
+ [k: string]: unknown | undefined
11080
+ })[]
11081
+ }[]
11082
+ // ----- perfectionist/sort-modules -----
11083
+ type PerfectionistSortModules = []|[{
11084
+
10728
11085
  specialCharacters?: ("remove" | "trim" | "keep")
10729
11086
 
10730
11087
  ignoreCase?: boolean
10731
11088
 
11089
+ alphabet?: string
11090
+
10732
11091
  locales?: (string | string[])
10733
11092
 
10734
11093
  order?: ("asc" | "desc")
10735
11094
 
10736
- type?: ("alphabetical" | "natural" | "line-length")
10737
- }]
10738
- // ----- perfectionist/sort-modules -----
10739
- type PerfectionistSortModules = []|[{
10740
-
10741
11095
  customGroups?: ({
10742
11096
 
10743
11097
  groupName?: string
@@ -10745,14 +11099,14 @@ type PerfectionistSortModules = []|[{
10745
11099
  type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
10746
11100
 
10747
11101
  order?: ("desc" | "asc")
11102
+
11103
+ newlinesInside?: ("always" | "never")
10748
11104
  anyOf?: {
10749
11105
 
10750
- modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
10751
-
10752
- elementValuePattern?: string
10753
-
10754
11106
  decoratorNamePattern?: string
10755
11107
 
11108
+ modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
11109
+
10756
11110
  selector?: ("enum" | "function" | "interface" | "type" | "class")
10757
11111
 
10758
11112
  elementNamePattern?: string
@@ -10765,113 +11119,225 @@ type PerfectionistSortModules = []|[{
10765
11119
 
10766
11120
  order?: ("desc" | "asc")
10767
11121
 
10768
- modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
10769
-
10770
- elementValuePattern?: string
11122
+ newlinesInside?: ("always" | "never")
10771
11123
 
10772
11124
  decoratorNamePattern?: string
10773
11125
 
11126
+ modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
11127
+
10774
11128
  selector?: ("enum" | "function" | "interface" | "type" | "class")
10775
11129
 
10776
11130
  elementNamePattern?: string
10777
11131
  })[]
10778
11132
 
10779
- partitionByComment?: (string[] | boolean | string)
11133
+ partitionByComment?: (string[] | boolean | string | {
11134
+ block?: (string[] | boolean | string)
11135
+ line?: (string[] | boolean | string)
11136
+ [k: string]: unknown | undefined
11137
+ })
10780
11138
 
10781
11139
  partitionByNewLine?: boolean
10782
11140
 
10783
- specialCharacters?: ("remove" | "trim" | "keep")
10784
-
10785
11141
  newlinesBetween?: ("ignore" | "always" | "never")
10786
11142
 
11143
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
11144
+
11145
+ groups?: (string | string[] | {
11146
+
11147
+ newlinesBetween?: ("ignore" | "always" | "never")
11148
+ [k: string]: unknown | undefined
11149
+ })[]
11150
+ }]
11151
+ // ----- perfectionist/sort-named-exports -----
11152
+ type PerfectionistSortNamedExports = []|[{
11153
+
11154
+ specialCharacters?: ("remove" | "trim" | "keep")
11155
+
10787
11156
  ignoreCase?: boolean
10788
11157
 
10789
- locales?: (string | string[])
11158
+ alphabet?: string
10790
11159
 
10791
- groups?: (string | string[])[]
11160
+ locales?: (string | string[])
10792
11161
 
10793
11162
  order?: ("asc" | "desc")
10794
11163
 
10795
- type?: ("alphabetical" | "natural" | "line-length")
10796
- }]
10797
- // ----- perfectionist/sort-named-exports -----
10798
- type PerfectionistSortNamedExports = []|[{
11164
+ groupKind?: ("mixed" | "values-first" | "types-first")
10799
11165
 
10800
- partitionByComment?: (string[] | boolean | string)
11166
+ ignoreAlias?: boolean
10801
11167
 
10802
- groupKind?: ("mixed" | "values-first" | "types-first")
11168
+ partitionByComment?: (string[] | boolean | string | {
11169
+ block?: (string[] | boolean | string)
11170
+ line?: (string[] | boolean | string)
11171
+ [k: string]: unknown | undefined
11172
+ })
10803
11173
 
10804
11174
  partitionByNewLine?: boolean
10805
11175
 
11176
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
11177
+ }]
11178
+ // ----- perfectionist/sort-named-imports -----
11179
+ type PerfectionistSortNamedImports = []|[{
11180
+
10806
11181
  specialCharacters?: ("remove" | "trim" | "keep")
10807
11182
 
10808
11183
  ignoreCase?: boolean
10809
11184
 
11185
+ alphabet?: string
11186
+
10810
11187
  locales?: (string | string[])
10811
11188
 
10812
11189
  order?: ("asc" | "desc")
10813
11190
 
10814
- type?: ("alphabetical" | "natural" | "line-length")
10815
- }]
10816
- // ----- perfectionist/sort-named-imports -----
10817
- type PerfectionistSortNamedImports = []|[{
10818
-
10819
- partitionByComment?: (string[] | boolean | string)
10820
-
10821
11191
  groupKind?: ("mixed" | "values-first" | "types-first")
10822
11192
 
10823
11193
  ignoreAlias?: boolean
10824
11194
 
11195
+ partitionByComment?: (string[] | boolean | string | {
11196
+ block?: (string[] | boolean | string)
11197
+ line?: (string[] | boolean | string)
11198
+ [k: string]: unknown | undefined
11199
+ })
11200
+
10825
11201
  partitionByNewLine?: boolean
10826
11202
 
11203
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
11204
+ }]
11205
+ // ----- perfectionist/sort-object-types -----
11206
+ type PerfectionistSortObjectTypes = {
11207
+
10827
11208
  specialCharacters?: ("remove" | "trim" | "keep")
10828
11209
 
10829
11210
  ignoreCase?: boolean
10830
11211
 
11212
+ alphabet?: string
11213
+
10831
11214
  locales?: (string | string[])
10832
11215
 
10833
11216
  order?: ("asc" | "desc")
10834
11217
 
10835
- type?: ("alphabetical" | "natural" | "line-length")
10836
- }]
10837
- // ----- perfectionist/sort-object-types -----
10838
- type PerfectionistSortObjectTypes = []|[{
10839
-
10840
- partitionByComment?: (string[] | boolean | string)
11218
+ ignorePattern?: string[]
11219
+ useConfigurationIf?: {
11220
+ allNamesMatchPattern?: string
11221
+ declarationMatchesPattern?: string
11222
+ }
11223
+ customGroups?: ({
11224
+ [k: string]: (string | string[]) | undefined
11225
+ } | ({
11226
+
11227
+ groupName?: string
11228
+
11229
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
11230
+
11231
+ order?: ("desc" | "asc")
11232
+
11233
+ newlinesInside?: ("always" | "never")
11234
+ anyOf?: {
11235
+
11236
+ modifiers?: ("optional" | "required" | "multiline")[]
11237
+
11238
+ selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
11239
+
11240
+ elementNamePattern?: string
11241
+ }[]
11242
+ } | {
11243
+
11244
+ groupName?: string
11245
+
11246
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
11247
+
11248
+ order?: ("desc" | "asc")
11249
+
11250
+ newlinesInside?: ("always" | "never")
11251
+
11252
+ modifiers?: ("optional" | "required" | "multiline")[]
11253
+
11254
+ selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
11255
+
11256
+ elementNamePattern?: string
11257
+ })[])
10841
11258
 
10842
11259
  groupKind?: ("mixed" | "required-first" | "optional-first")
10843
11260
 
10844
- partitionByNewLine?: boolean
11261
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
10845
11262
 
10846
- specialCharacters?: ("remove" | "trim" | "keep")
11263
+ partitionByComment?: (string[] | boolean | string | {
11264
+ block?: (string[] | boolean | string)
11265
+ line?: (string[] | boolean | string)
11266
+ [k: string]: unknown | undefined
11267
+ })
11268
+
11269
+ partitionByNewLine?: boolean
10847
11270
 
10848
11271
  newlinesBetween?: ("ignore" | "always" | "never")
10849
11272
 
10850
- customGroups?: {
10851
- [k: string]: (string | string[]) | undefined
10852
- }
11273
+ groups?: (string | string[] | {
11274
+
11275
+ newlinesBetween?: ("ignore" | "always" | "never")
11276
+ [k: string]: unknown | undefined
11277
+ })[]
11278
+ }[]
11279
+ // ----- perfectionist/sort-objects -----
11280
+ type PerfectionistSortObjects = {
11281
+
11282
+ specialCharacters?: ("remove" | "trim" | "keep")
10853
11283
 
10854
11284
  ignoreCase?: boolean
10855
11285
 
10856
- locales?: (string | string[])
11286
+ alphabet?: string
10857
11287
 
10858
- groups?: (string | string[])[]
11288
+ locales?: (string | string[])
10859
11289
 
10860
11290
  order?: ("asc" | "desc")
10861
11291
 
10862
- type?: ("alphabetical" | "natural" | "line-length")
10863
- }]
10864
- // ----- perfectionist/sort-objects -----
10865
- type PerfectionistSortObjects = []|[{
10866
-
10867
11292
  destructuredObjects?: (boolean | {
10868
11293
 
10869
11294
  groups?: boolean
10870
11295
  })
10871
11296
 
10872
11297
  ignorePattern?: string[]
10873
-
10874
- partitionByComment?: (string[] | boolean | string)
11298
+ useConfigurationIf?: {
11299
+ allNamesMatchPattern?: string
11300
+ callingFunctionNamePattern?: string
11301
+ }
11302
+ customGroups?: ({
11303
+ [k: string]: (string | string[]) | undefined
11304
+ } | ({
11305
+
11306
+ groupName?: string
11307
+
11308
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
11309
+
11310
+ order?: ("desc" | "asc")
11311
+
11312
+ newlinesInside?: ("always" | "never")
11313
+ anyOf?: {
11314
+
11315
+ modifiers?: ("optional" | "required" | "multiline")[]
11316
+
11317
+ selector?: ("member" | "method" | "multiline" | "property")
11318
+
11319
+ elementValuePattern?: string
11320
+
11321
+ elementNamePattern?: string
11322
+ }[]
11323
+ } | {
11324
+
11325
+ groupName?: string
11326
+
11327
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
11328
+
11329
+ order?: ("desc" | "asc")
11330
+
11331
+ newlinesInside?: ("always" | "never")
11332
+
11333
+ modifiers?: ("optional" | "required" | "multiline")[]
11334
+
11335
+ selector?: ("member" | "method" | "multiline" | "property")
11336
+
11337
+ elementValuePattern?: string
11338
+
11339
+ elementNamePattern?: string
11340
+ })[])
10875
11341
 
10876
11342
  destructureOnly?: boolean
10877
11343
 
@@ -10879,45 +11345,90 @@ type PerfectionistSortObjects = []|[{
10879
11345
 
10880
11346
  styledComponents?: boolean
10881
11347
 
10882
- partitionByNewLine?: boolean
11348
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
10883
11349
 
10884
- specialCharacters?: ("remove" | "trim" | "keep")
11350
+ partitionByComment?: (string[] | boolean | string | {
11351
+ block?: (string[] | boolean | string)
11352
+ line?: (string[] | boolean | string)
11353
+ [k: string]: unknown | undefined
11354
+ })
11355
+
11356
+ partitionByNewLine?: boolean
10885
11357
 
10886
11358
  newlinesBetween?: ("ignore" | "always" | "never")
10887
11359
 
10888
- customGroups?: {
10889
- [k: string]: (string | string[]) | undefined
10890
- }
11360
+ groups?: (string | string[] | {
11361
+
11362
+ newlinesBetween?: ("ignore" | "always" | "never")
11363
+ [k: string]: unknown | undefined
11364
+ })[]
11365
+ }[]
11366
+ // ----- perfectionist/sort-sets -----
11367
+ type PerfectionistSortSets = {
11368
+
11369
+ specialCharacters?: ("remove" | "trim" | "keep")
10891
11370
 
10892
11371
  ignoreCase?: boolean
10893
11372
 
10894
- locales?: (string | string[])
11373
+ alphabet?: string
10895
11374
 
10896
- groups?: (string | string[])[]
11375
+ locales?: (string | string[])
10897
11376
 
10898
11377
  order?: ("asc" | "desc")
10899
11378
 
10900
- type?: ("alphabetical" | "natural" | "line-length")
10901
- }]
10902
- // ----- perfectionist/sort-sets -----
10903
- type PerfectionistSortSets = []|[{
10904
-
10905
- partitionByComment?: (string[] | boolean | string)
10906
-
10907
11379
  groupKind?: ("mixed" | "literals-first" | "spreads-first")
10908
11380
 
10909
- partitionByNewLine?: boolean
11381
+ customGroups?: ({
11382
+
11383
+ groupName?: string
11384
+
11385
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
11386
+
11387
+ order?: ("desc" | "asc")
11388
+
11389
+ newlinesInside?: ("always" | "never")
11390
+ anyOf?: {
11391
+
11392
+ selector?: ("literal" | "spread")
11393
+
11394
+ elementNamePattern?: string
11395
+ }[]
11396
+ } | {
11397
+
11398
+ groupName?: string
11399
+
11400
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
11401
+
11402
+ order?: ("desc" | "asc")
11403
+
11404
+ newlinesInside?: ("always" | "never")
11405
+
11406
+ selector?: ("literal" | "spread")
11407
+
11408
+ elementNamePattern?: string
11409
+ })[]
11410
+ useConfigurationIf?: {
11411
+ allNamesMatchPattern?: string
11412
+ }
10910
11413
 
10911
- specialCharacters?: ("remove" | "trim" | "keep")
11414
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
10912
11415
 
10913
- ignoreCase?: boolean
11416
+ partitionByComment?: (string[] | boolean | string | {
11417
+ block?: (string[] | boolean | string)
11418
+ line?: (string[] | boolean | string)
11419
+ [k: string]: unknown | undefined
11420
+ })
10914
11421
 
10915
- locales?: (string | string[])
11422
+ partitionByNewLine?: boolean
10916
11423
 
10917
- order?: ("asc" | "desc")
11424
+ newlinesBetween?: ("ignore" | "always" | "never")
10918
11425
 
10919
- type?: ("alphabetical" | "natural" | "line-length")
10920
- }]
11426
+ groups?: (string | string[] | {
11427
+
11428
+ newlinesBetween?: ("ignore" | "always" | "never")
11429
+ [k: string]: unknown | undefined
11430
+ })[]
11431
+ }[]
10921
11432
  // ----- perfectionist/sort-switch-case -----
10922
11433
  type PerfectionistSortSwitchCase = []|[{
10923
11434
 
@@ -10925,49 +11436,67 @@ type PerfectionistSortSwitchCase = []|[{
10925
11436
 
10926
11437
  ignoreCase?: boolean
10927
11438
 
11439
+ alphabet?: string
11440
+
10928
11441
  locales?: (string | string[])
10929
11442
 
10930
11443
  order?: ("asc" | "desc")
10931
11444
 
10932
- type?: ("alphabetical" | "natural" | "line-length")
11445
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10933
11446
  }]
10934
11447
  // ----- perfectionist/sort-union-types -----
10935
11448
  type PerfectionistSortUnionTypes = []|[{
10936
11449
 
10937
- partitionByComment?: (string[] | boolean | string)
10938
-
10939
- partitionByNewLine?: boolean
10940
-
10941
11450
  specialCharacters?: ("remove" | "trim" | "keep")
10942
11451
 
10943
- newlinesBetween?: ("ignore" | "always" | "never")
10944
-
10945
11452
  ignoreCase?: boolean
10946
11453
 
10947
- locales?: (string | string[])
11454
+ alphabet?: string
10948
11455
 
10949
- groups?: (string | string[])[]
11456
+ locales?: (string | string[])
10950
11457
 
10951
11458
  order?: ("asc" | "desc")
10952
11459
 
10953
- type?: ("alphabetical" | "natural" | "line-length")
11460
+ partitionByComment?: (string[] | boolean | string | {
11461
+ block?: (string[] | boolean | string)
11462
+ line?: (string[] | boolean | string)
11463
+ [k: string]: unknown | undefined
11464
+ })
11465
+
11466
+ partitionByNewLine?: boolean
11467
+
11468
+ newlinesBetween?: ("ignore" | "always" | "never")
11469
+
11470
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
11471
+
11472
+ groups?: (string | string[] | {
11473
+
11474
+ newlinesBetween?: ("ignore" | "always" | "never")
11475
+ [k: string]: unknown | undefined
11476
+ })[]
10954
11477
  }]
10955
11478
  // ----- perfectionist/sort-variable-declarations -----
10956
11479
  type PerfectionistSortVariableDeclarations = []|[{
10957
11480
 
10958
- partitionByComment?: (string[] | boolean | string)
10959
-
10960
- partitionByNewLine?: boolean
10961
-
10962
11481
  specialCharacters?: ("remove" | "trim" | "keep")
10963
11482
 
10964
11483
  ignoreCase?: boolean
10965
11484
 
11485
+ alphabet?: string
11486
+
10966
11487
  locales?: (string | string[])
10967
11488
 
10968
11489
  order?: ("asc" | "desc")
10969
11490
 
10970
- type?: ("alphabetical" | "natural" | "line-length")
11491
+ partitionByComment?: (string[] | boolean | string | {
11492
+ block?: (string[] | boolean | string)
11493
+ line?: (string[] | boolean | string)
11494
+ [k: string]: unknown | undefined
11495
+ })
11496
+
11497
+ partitionByNewLine?: boolean
11498
+
11499
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
10971
11500
  }]
10972
11501
  // ----- prefer-arrow-callback -----
10973
11502
  type PreferArrowCallback = []|[{
@@ -11064,9 +11593,10 @@ type ReactNamingConventionFilenameExtension = []|[(("always" | "as-needed") | {
11064
11593
  })]
11065
11594
  // ----- react-refresh/only-export-components -----
11066
11595
  type ReactRefreshOnlyExportComponents = []|[{
11596
+ allowExportNames?: string[]
11067
11597
  allowConstantExport?: boolean
11598
+ customHOCs?: string[]
11068
11599
  checkJS?: boolean
11069
- allowExportNames?: string[]
11070
11600
  }]
11071
11601
  // ----- react/no-useless-fragment -----
11072
11602
  type ReactNoUselessFragment = []|[{
@@ -11286,6 +11816,7 @@ type SortKeys = []|[("asc" | "desc")]|[("asc" | "desc"), {
11286
11816
  natural?: boolean
11287
11817
  minKeys?: number
11288
11818
  allowLineSeparatedGroups?: boolean
11819
+ ignoreComputedKeys?: boolean
11289
11820
  }]
11290
11821
  // ----- sort-vars -----
11291
11822
  type SortVars = []|[{
@@ -11596,6 +12127,7 @@ type StyleIndent = []|[("tab" | number)]|[("tab" | number), {
11596
12127
  ImportDeclaration?: (number | ("first" | "off"))
11597
12128
  flatTernaryExpressions?: boolean
11598
12129
  offsetTernaryExpressions?: boolean
12130
+ offsetTernaryExpressionsOffsetCallExpressions?: boolean
11599
12131
  ignoredNodes?: string[]
11600
12132
  ignoreComments?: boolean
11601
12133
  tabLength?: number
@@ -11739,6 +12271,7 @@ type StyleKeySpacing = []|[({
11739
12271
  mode?: ("strict" | "minimum")
11740
12272
  beforeColon?: boolean
11741
12273
  afterColon?: boolean
12274
+ ignoredNodes?: ("ObjectExpression" | "ObjectPattern" | "ImportDeclaration" | "ExportNamedDeclaration" | "ExportAllDeclaration" | "TSTypeLiteral" | "TSInterfaceBody" | "ClassBody")[]
11742
12275
  } | {
11743
12276
  singleLine?: {
11744
12277
  mode?: ("strict" | "minimum")
@@ -12254,6 +12787,7 @@ type StyleNoExtraParens = ([]|["functions"] | []|["all"]|["all", {
12254
12787
  enforceForNewInMemberExpressions?: boolean
12255
12788
  enforceForFunctionPrototypeMethods?: boolean
12256
12789
  allowParensAfterCommentPattern?: string
12790
+ nestedConditionalExpressions?: boolean
12257
12791
  }])
12258
12792
  // ----- style/no-mixed-operators -----
12259
12793
  type StyleNoMixedOperators = []|[{
@@ -12351,14 +12885,14 @@ type StyleOperatorLinebreak = []|[(("after" | "before" | "none") | null)]|[(("af
12351
12885
  }
12352
12886
  }]
12353
12887
  // ----- style/padded-blocks -----
12354
- type StylePaddedBlocks = []|[(("always" | "never") | {
12355
- blocks?: ("always" | "never")
12356
- switches?: ("always" | "never")
12357
- classes?: ("always" | "never")
12358
- })]|[(("always" | "never") | {
12359
- blocks?: ("always" | "never")
12360
- switches?: ("always" | "never")
12361
- classes?: ("always" | "never")
12888
+ type StylePaddedBlocks = []|[(("always" | "never" | "start" | "end") | {
12889
+ blocks?: ("always" | "never" | "start" | "end")
12890
+ switches?: ("always" | "never" | "start" | "end")
12891
+ classes?: ("always" | "never" | "start" | "end")
12892
+ })]|[(("always" | "never" | "start" | "end") | {
12893
+ blocks?: ("always" | "never" | "start" | "end")
12894
+ switches?: ("always" | "never" | "start" | "end")
12895
+ classes?: ("always" | "never" | "start" | "end")
12362
12896
  }), {
12363
12897
  allowSingleLineBlocks?: boolean
12364
12898
  }]
@@ -12379,7 +12913,7 @@ type StyleQuoteProps = ([]|[("always" | "as-needed" | "consistent" | "consistent
12379
12913
  // ----- style/quotes -----
12380
12914
  type StyleQuotes = []|[("single" | "double" | "backtick")]|[("single" | "double" | "backtick"), ("avoid-escape" | {
12381
12915
  avoidEscape?: boolean
12382
- allowTemplateLiterals?: boolean
12916
+ allowTemplateLiterals?: (boolean | ("never" | "avoidEscape" | "always"))
12383
12917
  ignoreStringLiterals?: boolean
12384
12918
  })]
12385
12919
  // ----- style/rest-spread-spacing -----
@@ -12700,8 +13234,7 @@ type TestNoRestrictedViMethods = []|[{
12700
13234
  }]
12701
13235
  // ----- test/no-standalone-expect -----
12702
13236
  type TestNoStandaloneExpect = []|[{
12703
- additionaltestblockfunctions?: string[]
12704
- [k: string]: unknown | undefined
13237
+ additionalTestBlockFunctions?: string[]
12705
13238
  }]
12706
13239
  // ----- test/prefer-expect-assertions -----
12707
13240
  type TestPreferExpectAssertions = []|[{
@@ -12917,7 +13450,9 @@ type TsConsistentTypeAssertions = []|[({
12917
13450
  assertionStyle: "never"
12918
13451
  } | {
12919
13452
 
12920
- assertionStyle: ("as" | "angle-bracket")
13453
+ arrayLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never")
13454
+
13455
+ assertionStyle?: ("as" | "angle-bracket")
12921
13456
 
12922
13457
  objectLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never")
12923
13458
  })]
@@ -13373,6 +13908,22 @@ type TsNoConfusingVoidExpression = []|[{
13373
13908
 
13374
13909
  ignoreVoidReturningFunctions?: boolean
13375
13910
  }]
13911
+ // ----- ts/no-deprecated -----
13912
+ type TsNoDeprecated = []|[{
13913
+
13914
+ allow?: (string | {
13915
+ from: "file"
13916
+ name: (string | [string, ...(string)[]])
13917
+ path?: string
13918
+ } | {
13919
+ from: "lib"
13920
+ name: (string | [string, ...(string)[]])
13921
+ } | {
13922
+ from: "package"
13923
+ name: (string | [string, ...(string)[]])
13924
+ package: string
13925
+ })[]
13926
+ }]
13376
13927
  // ----- ts/no-duplicate-type-constituents -----
13377
13928
  type TsNoDuplicateTypeConstituents = []|[{
13378
13929
 
@@ -13514,6 +14065,22 @@ type TsNoMisusedPromises = []|[{
13514
14065
  variables?: boolean
13515
14066
  })
13516
14067
  }]
14068
+ // ----- ts/no-misused-spread -----
14069
+ type TsNoMisusedSpread = []|[{
14070
+
14071
+ allow?: (string | {
14072
+ from: "file"
14073
+ name: (string | [string, ...(string)[]])
14074
+ path?: string
14075
+ } | {
14076
+ from: "lib"
14077
+ name: (string | [string, ...(string)[]])
14078
+ } | {
14079
+ from: "package"
14080
+ name: (string | [string, ...(string)[]])
14081
+ package: string
14082
+ })[]
14083
+ }]
13517
14084
  // ----- ts/no-namespace -----
13518
14085
  type TsNoNamespace = []|[{
13519
14086
 
@@ -13589,7 +14156,7 @@ type TsNoShadow = []|[{
13589
14156
 
13590
14157
  builtinGlobals?: boolean
13591
14158
 
13592
- hoist?: ("all" | "functions" | "never")
14159
+ hoist?: ("all" | "functions" | "functions-and-types" | "never" | "types")
13593
14160
 
13594
14161
  ignoreFunctionTypeParameterNameValueShadow?: boolean
13595
14162
 
@@ -13629,6 +14196,8 @@ type TsNoUnnecessaryBooleanLiteralCompare = []|[{
13629
14196
  allowComparingNullableBooleansToFalse?: boolean
13630
14197
 
13631
14198
  allowComparingNullableBooleansToTrue?: boolean
14199
+
14200
+ allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
13632
14201
  }]
13633
14202
  // ----- ts/no-unnecessary-condition -----
13634
14203
  type TsNoUnnecessaryCondition = []|[{
@@ -13808,6 +14377,10 @@ type TsPreferOptionalChain = []|[{
13808
14377
  type TsPreferPromiseRejectErrors = []|[{
13809
14378
 
13810
14379
  allowEmptyReject?: boolean
14380
+
14381
+ allowThrowingAny?: boolean
14382
+
14383
+ allowThrowingUnknown?: boolean
13811
14384
  }]
13812
14385
  // ----- ts/prefer-readonly -----
13813
14386
  type TsPreferReadonly = []|[{
@@ -13947,6 +14520,8 @@ type TsSwitchExhaustivenessCheck = []|[{
13947
14520
 
13948
14521
  considerDefaultExhaustiveForUnions?: boolean
13949
14522
 
14523
+ defaultCaseCommentPattern?: string
14524
+
13950
14525
  requireDefaultForNonUnion?: boolean
13951
14526
  }]
13952
14527
  // ----- ts/triple-slash-reference -----
@@ -14280,6 +14855,7 @@ type VueAttributeHyphenation = []|[("always" | "never")]|[("always" | "never"),
14280
14855
  } & {
14281
14856
  [k: string]: unknown | undefined
14282
14857
  })[]
14858
+ ignoreTags?: string[]
14283
14859
  }]
14284
14860
  // ----- vue/attributes-order -----
14285
14861
  type VueAttributesOrder = []|[{
@@ -14495,6 +15071,7 @@ type VueKeySpacing = []|[({
14495
15071
  mode?: ("strict" | "minimum")
14496
15072
  beforeColon?: boolean
14497
15073
  afterColon?: boolean
15074
+ ignoredNodes?: ("ObjectExpression" | "ObjectPattern" | "ImportDeclaration" | "ExportNamedDeclaration" | "ExportAllDeclaration" | "TSTypeLiteral" | "TSInterfaceBody" | "ClassBody")[]
14498
15075
  } | {
14499
15076
  singleLine?: {
14500
15077
  mode?: ("strict" | "minimum")
@@ -14996,6 +15573,10 @@ type VueNoDeprecatedSlotAttribute = []|[{
14996
15573
  type VueNoDupeKeys = []|[{
14997
15574
  groups?: unknown[]
14998
15575
  }]
15576
+ // ----- vue/no-duplicate-attr-inheritance -----
15577
+ type VueNoDuplicateAttrInheritance = []|[{
15578
+ checkMultiRootNodes?: boolean
15579
+ }]
14999
15580
  // ----- vue/no-duplicate-attributes -----
15000
15581
  type VueNoDuplicateAttributes = []|[{
15001
15582
  allowCoexistClass?: boolean
@@ -15017,6 +15598,7 @@ type VueNoExtraParens = ([]|["functions"] | []|["all"]|["all", {
15017
15598
  enforceForNewInMemberExpressions?: boolean
15018
15599
  enforceForFunctionPrototypeMethods?: boolean
15019
15600
  allowParensAfterCommentPattern?: string
15601
+ nestedConditionalExpressions?: boolean
15020
15602
  }])
15021
15603
  // ----- vue/no-irregular-whitespace -----
15022
15604
  type VueNoIrregularWhitespace = []|[{
@@ -15231,6 +15813,7 @@ type VueNoUselessVBind = []|[{
15231
15813
  // ----- vue/no-v-text-v-html-on-component -----
15232
15814
  type VueNoVTextVHtmlOnComponent = []|[{
15233
15815
  allow?: string[]
15816
+ ignoreElementNamespaces?: boolean
15234
15817
  }]
15235
15818
  // ----- vue/object-curly-newline -----
15236
15819
  type VueObjectCurlyNewline = []|[((("always" | "never") | {
@@ -15351,6 +15934,10 @@ type VueRequirePropComment = []|[{
15351
15934
  type VueRequireToggleInsideTransition = []|[{
15352
15935
  additionalDirectives?: string[]
15353
15936
  }]
15937
+ // ----- vue/restricted-component-names -----
15938
+ type VueRestrictedComponentNames = []|[{
15939
+ allow?: string[]
15940
+ }]
15354
15941
  // ----- vue/return-in-computed-property -----
15355
15942
  type VueReturnInComputedProperty = []|[{
15356
15943
  treatUndefinedAsUnspecified?: boolean
@@ -15372,6 +15959,8 @@ type VueSinglelineHtmlElementContentNewline = []|[{
15372
15959
  ignores?: string[]
15373
15960
  externalIgnores?: string[]
15374
15961
  }]
15962
+ // ----- vue/slot-name-casing -----
15963
+ type VueSlotNameCasing = []|[("camelCase" | "kebab-case" | "singleword")]
15375
15964
  // ----- vue/sort-keys -----
15376
15965
  type VueSortKeys = []|[("asc" | "desc")]|[("asc" | "desc"), {
15377
15966
  caseSensitive?: boolean
@@ -15415,6 +16004,7 @@ type VueVOnEventHyphenation = []|[("always" | "never")]|[("always" | "never"), {
15415
16004
  } & {
15416
16005
  [k: string]: unknown | undefined
15417
16006
  })[]
16007
+ ignoreTags?: string[]
15418
16008
  }]
15419
16009
  // ----- vue/v-on-function-call -----
15420
16010
  type VueVOnFunctionCall = []|[("always" | "never")]|[("always" | "never"), {