@vinicunca/eslint-config 2.15.0 → 2.15.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +33 -24
- package/dist/index.d.cts +220 -104
- package/dist/index.d.ts +220 -104
- package/dist/index.js +32 -23
- package/package.json +11 -11
package/dist/index.d.cts
CHANGED
|
@@ -477,7 +477,7 @@ interface RuleOptions {
|
|
|
477
477
|
*/
|
|
478
478
|
'default-case'?: Linter.RuleEntry<DefaultCase>
|
|
479
479
|
/**
|
|
480
|
-
* Enforce default clauses in switch statements to be last
|
|
480
|
+
* Enforce `default` clauses in switch statements to be last
|
|
481
481
|
* @see https://eslint.org/docs/latest/rules/default-case-last
|
|
482
482
|
*/
|
|
483
483
|
'default-case-last'?: Linter.RuleEntry<[]>
|
|
@@ -554,7 +554,7 @@ interface RuleOptions {
|
|
|
554
554
|
*/
|
|
555
555
|
'eslint-comments/require-description'?: Linter.RuleEntry<EslintCommentsRequireDescription>
|
|
556
556
|
/**
|
|
557
|
-
* Enforce
|
|
557
|
+
* Enforce `for` loop update clause moving the counter in the right direction
|
|
558
558
|
* @see https://eslint.org/docs/latest/rules/for-direction
|
|
559
559
|
*/
|
|
560
560
|
'for-direction'?: Linter.RuleEntry<[]>
|
|
@@ -661,233 +661,233 @@ interface RuleOptions {
|
|
|
661
661
|
'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
|
|
662
662
|
/**
|
|
663
663
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
664
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
664
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/consistent-type-specifier-style.md
|
|
665
665
|
*/
|
|
666
666
|
'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
|
|
667
667
|
/**
|
|
668
668
|
* Ensure a default export is present, given a default import.
|
|
669
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
669
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/default.md
|
|
670
670
|
*/
|
|
671
671
|
'import/default'?: Linter.RuleEntry<[]>
|
|
672
672
|
/**
|
|
673
673
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
674
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
674
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/dynamic-import-chunkname.md
|
|
675
675
|
*/
|
|
676
676
|
'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
|
|
677
677
|
/**
|
|
678
678
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
679
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
679
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/export.md
|
|
680
680
|
*/
|
|
681
681
|
'import/export'?: Linter.RuleEntry<[]>
|
|
682
682
|
/**
|
|
683
683
|
* Ensure all exports appear after other statements.
|
|
684
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
684
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/exports-last.md
|
|
685
685
|
*/
|
|
686
686
|
'import/exports-last'?: Linter.RuleEntry<[]>
|
|
687
687
|
/**
|
|
688
688
|
* Ensure consistent use of file extension within the import path.
|
|
689
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
689
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/extensions.md
|
|
690
690
|
*/
|
|
691
691
|
'import/extensions'?: Linter.RuleEntry<ImportExtensions>
|
|
692
692
|
/**
|
|
693
693
|
* Ensure all imports appear before other statements.
|
|
694
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
694
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/first.md
|
|
695
695
|
*/
|
|
696
696
|
'import/first'?: Linter.RuleEntry<ImportFirst>
|
|
697
697
|
/**
|
|
698
698
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
699
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
699
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/group-exports.md
|
|
700
700
|
*/
|
|
701
701
|
'import/group-exports'?: Linter.RuleEntry<[]>
|
|
702
702
|
/**
|
|
703
703
|
* Replaced by `import-x/first`.
|
|
704
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
704
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/imports-first.md
|
|
705
705
|
* @deprecated
|
|
706
706
|
*/
|
|
707
707
|
'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
|
|
708
708
|
/**
|
|
709
709
|
* Enforce the maximum number of dependencies a module can have.
|
|
710
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
710
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/max-dependencies.md
|
|
711
711
|
*/
|
|
712
712
|
'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
|
|
713
713
|
/**
|
|
714
714
|
* Ensure named imports correspond to a named export in the remote file.
|
|
715
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
715
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/named.md
|
|
716
716
|
*/
|
|
717
717
|
'import/named'?: Linter.RuleEntry<ImportNamed>
|
|
718
718
|
/**
|
|
719
719
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
720
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
720
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/namespace.md
|
|
721
721
|
*/
|
|
722
722
|
'import/namespace'?: Linter.RuleEntry<ImportNamespace>
|
|
723
723
|
/**
|
|
724
724
|
* Enforce a newline after import statements.
|
|
725
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
725
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/newline-after-import.md
|
|
726
726
|
*/
|
|
727
727
|
'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
|
|
728
728
|
/**
|
|
729
729
|
* Forbid import of modules using absolute paths.
|
|
730
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
730
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-absolute-path.md
|
|
731
731
|
*/
|
|
732
732
|
'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
|
|
733
733
|
/**
|
|
734
734
|
* Forbid AMD `require` and `define` calls.
|
|
735
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
735
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-amd.md
|
|
736
736
|
*/
|
|
737
737
|
'import/no-amd'?: Linter.RuleEntry<[]>
|
|
738
738
|
/**
|
|
739
739
|
* Forbid anonymous values as default exports.
|
|
740
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
740
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-anonymous-default-export.md
|
|
741
741
|
*/
|
|
742
742
|
'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
|
|
743
743
|
/**
|
|
744
744
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
745
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
745
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-commonjs.md
|
|
746
746
|
*/
|
|
747
747
|
'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
|
|
748
748
|
/**
|
|
749
749
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
750
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
750
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-cycle.md
|
|
751
751
|
*/
|
|
752
752
|
'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
|
|
753
753
|
/**
|
|
754
754
|
* Forbid default exports.
|
|
755
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
755
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-default-export.md
|
|
756
756
|
*/
|
|
757
757
|
'import/no-default-export'?: Linter.RuleEntry<[]>
|
|
758
758
|
/**
|
|
759
759
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
760
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
760
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-deprecated.md
|
|
761
761
|
*/
|
|
762
762
|
'import/no-deprecated'?: Linter.RuleEntry<[]>
|
|
763
763
|
/**
|
|
764
764
|
* Forbid repeated import of the same module in multiple places.
|
|
765
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
765
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-duplicates.md
|
|
766
766
|
*/
|
|
767
767
|
'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
|
|
768
768
|
/**
|
|
769
769
|
* Forbid `require()` calls with expressions.
|
|
770
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
770
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-dynamic-require.md
|
|
771
771
|
*/
|
|
772
772
|
'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
|
|
773
773
|
/**
|
|
774
774
|
* Forbid empty named import blocks.
|
|
775
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
775
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-empty-named-blocks.md
|
|
776
776
|
*/
|
|
777
777
|
'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
778
778
|
/**
|
|
779
779
|
* Forbid the use of extraneous packages.
|
|
780
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
780
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-extraneous-dependencies.md
|
|
781
781
|
*/
|
|
782
782
|
'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
|
|
783
783
|
/**
|
|
784
784
|
* Forbid import statements with CommonJS module.exports.
|
|
785
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
785
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-import-module-exports.md
|
|
786
786
|
*/
|
|
787
787
|
'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
|
|
788
788
|
/**
|
|
789
789
|
* Forbid importing the submodules of other modules.
|
|
790
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
790
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-internal-modules.md
|
|
791
791
|
*/
|
|
792
792
|
'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
|
|
793
793
|
/**
|
|
794
794
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
795
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
795
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-mutable-exports.md
|
|
796
796
|
*/
|
|
797
797
|
'import/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
798
798
|
/**
|
|
799
799
|
* Forbid use of exported name as identifier of default export.
|
|
800
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
800
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-named-as-default.md
|
|
801
801
|
*/
|
|
802
802
|
'import/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
803
803
|
/**
|
|
804
804
|
* Forbid use of exported name as property of default export.
|
|
805
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
805
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-named-as-default-member.md
|
|
806
806
|
*/
|
|
807
807
|
'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
808
808
|
/**
|
|
809
809
|
* Forbid named default exports.
|
|
810
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
810
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-named-default.md
|
|
811
811
|
*/
|
|
812
812
|
'import/no-named-default'?: Linter.RuleEntry<[]>
|
|
813
813
|
/**
|
|
814
814
|
* Forbid named exports.
|
|
815
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
815
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-named-export.md
|
|
816
816
|
*/
|
|
817
817
|
'import/no-named-export'?: Linter.RuleEntry<[]>
|
|
818
818
|
/**
|
|
819
819
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
820
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
820
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-namespace.md
|
|
821
821
|
*/
|
|
822
822
|
'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
|
|
823
823
|
/**
|
|
824
824
|
* Forbid Node.js builtin modules.
|
|
825
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
825
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-nodejs-modules.md
|
|
826
826
|
*/
|
|
827
827
|
'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
|
|
828
828
|
/**
|
|
829
829
|
* Forbid importing packages through relative paths.
|
|
830
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
830
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-relative-packages.md
|
|
831
831
|
*/
|
|
832
832
|
'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
|
|
833
833
|
/**
|
|
834
834
|
* Forbid importing modules from parent directories.
|
|
835
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
835
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-relative-parent-imports.md
|
|
836
836
|
*/
|
|
837
837
|
'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
|
|
838
838
|
/**
|
|
839
839
|
* Forbid importing a default export by a different name.
|
|
840
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
840
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-rename-default.md
|
|
841
841
|
*/
|
|
842
842
|
'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
|
|
843
843
|
/**
|
|
844
844
|
* Enforce which files can be imported in a given folder.
|
|
845
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
845
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-restricted-paths.md
|
|
846
846
|
*/
|
|
847
847
|
'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
|
|
848
848
|
/**
|
|
849
849
|
* Forbid a module from importing itself.
|
|
850
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
850
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-self-import.md
|
|
851
851
|
*/
|
|
852
852
|
'import/no-self-import'?: Linter.RuleEntry<[]>
|
|
853
853
|
/**
|
|
854
854
|
* Forbid unassigned imports.
|
|
855
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
855
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-unassigned-import.md
|
|
856
856
|
*/
|
|
857
857
|
'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
|
|
858
858
|
/**
|
|
859
859
|
* Ensure imports point to a file/module that can be resolved.
|
|
860
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
860
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-unresolved.md
|
|
861
861
|
*/
|
|
862
862
|
'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
|
|
863
863
|
/**
|
|
864
864
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
865
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
865
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-unused-modules.md
|
|
866
866
|
*/
|
|
867
867
|
'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
|
|
868
868
|
/**
|
|
869
869
|
* Forbid unnecessary path segments in import and require statements.
|
|
870
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
870
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-useless-path-segments.md
|
|
871
871
|
*/
|
|
872
872
|
'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
|
|
873
873
|
/**
|
|
874
874
|
* Forbid webpack loader syntax in imports.
|
|
875
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
875
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/no-webpack-loader-syntax.md
|
|
876
876
|
*/
|
|
877
877
|
'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
878
878
|
/**
|
|
879
879
|
* Enforce a convention in module import order.
|
|
880
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
880
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/order.md
|
|
881
881
|
*/
|
|
882
882
|
'import/order'?: Linter.RuleEntry<ImportOrder>
|
|
883
883
|
/**
|
|
884
884
|
* Prefer a default export if module exports a single name or multiple names.
|
|
885
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
885
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/prefer-default-export.md
|
|
886
886
|
*/
|
|
887
887
|
'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
|
|
888
888
|
/**
|
|
889
889
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
890
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
890
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/unambiguous.md
|
|
891
891
|
*/
|
|
892
892
|
'import/unambiguous'?: Linter.RuleEntry<[]>
|
|
893
893
|
/**
|
|
@@ -2043,7 +2043,7 @@ interface RuleOptions {
|
|
|
2043
2043
|
*/
|
|
2044
2044
|
'no-octal-escape'?: Linter.RuleEntry<[]>
|
|
2045
2045
|
/**
|
|
2046
|
-
* Disallow reassigning
|
|
2046
|
+
* Disallow reassigning function parameters
|
|
2047
2047
|
* @see https://eslint.org/docs/latest/rules/no-param-reassign
|
|
2048
2048
|
*/
|
|
2049
2049
|
'no-param-reassign'?: Linter.RuleEntry<NoParamReassign>
|
|
@@ -2138,7 +2138,7 @@ interface RuleOptions {
|
|
|
2138
2138
|
*/
|
|
2139
2139
|
'no-return-await'?: Linter.RuleEntry<[]>
|
|
2140
2140
|
/**
|
|
2141
|
-
* Disallow `javascript:`
|
|
2141
|
+
* Disallow `javascript:` URLs
|
|
2142
2142
|
* @see https://eslint.org/docs/latest/rules/no-script-url
|
|
2143
2143
|
*/
|
|
2144
2144
|
'no-script-url'?: Linter.RuleEntry<[]>
|
|
@@ -2783,7 +2783,7 @@ interface RuleOptions {
|
|
|
2783
2783
|
*/
|
|
2784
2784
|
'prefer-object-has-own'?: Linter.RuleEntry<[]>
|
|
2785
2785
|
/**
|
|
2786
|
-
* Disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead
|
|
2786
|
+
* Disallow using `Object.assign` with an object literal as the first argument and prefer the use of object spread instead
|
|
2787
2787
|
* @see https://eslint.org/docs/latest/rules/prefer-object-spread
|
|
2788
2788
|
*/
|
|
2789
2789
|
'prefer-object-spread'?: Linter.RuleEntry<[]>
|
|
@@ -3632,7 +3632,7 @@ interface RuleOptions {
|
|
|
3632
3632
|
*/
|
|
3633
3633
|
'require-await'?: Linter.RuleEntry<[]>
|
|
3634
3634
|
/**
|
|
3635
|
-
* Enforce the use of `u` or `v` flag on
|
|
3635
|
+
* Enforce the use of `u` or `v` flag on regular expressions
|
|
3636
3636
|
* @see https://eslint.org/docs/latest/rules/require-unicode-regexp
|
|
3637
3637
|
*/
|
|
3638
3638
|
'require-unicode-regexp'?: Linter.RuleEntry<RequireUnicodeRegexp>
|
|
@@ -6900,7 +6900,7 @@ interface RuleOptions {
|
|
|
6900
6900
|
*/
|
|
6901
6901
|
'ts/no-wrapper-object-types'?: Linter.RuleEntry<[]>
|
|
6902
6902
|
/**
|
|
6903
|
-
* Enforce non-null assertions over explicit type
|
|
6903
|
+
* Enforce non-null assertions over explicit type assertions
|
|
6904
6904
|
* @see https://typescript-eslint.io/rules/non-nullable-type-assertion-style
|
|
6905
6905
|
*/
|
|
6906
6906
|
'ts/non-nullable-type-assertion-style'?: Linter.RuleEntry<[]>
|
|
@@ -6985,7 +6985,7 @@ interface RuleOptions {
|
|
|
6985
6985
|
*/
|
|
6986
6986
|
'ts/prefer-readonly-parameter-types'?: Linter.RuleEntry<TsPreferReadonlyParameterTypes>
|
|
6987
6987
|
/**
|
|
6988
|
-
* Enforce using type parameter when calling `Array#reduce` instead of
|
|
6988
|
+
* Enforce using type parameter when calling `Array#reduce` instead of using a type assertion
|
|
6989
6989
|
* @see https://typescript-eslint.io/rules/prefer-reduce-type-parameter
|
|
6990
6990
|
*/
|
|
6991
6991
|
'ts/prefer-reduce-type-parameter'?: Linter.RuleEntry<[]>
|
|
@@ -11517,6 +11517,9 @@ type NodeNoExtraneousImport = []|[{
|
|
|
11517
11517
|
replace: [string, string]
|
|
11518
11518
|
})[]])
|
|
11519
11519
|
resolvePaths?: string[]
|
|
11520
|
+
resolverConfig?: {
|
|
11521
|
+
[k: string]: unknown | undefined
|
|
11522
|
+
}
|
|
11520
11523
|
}]
|
|
11521
11524
|
// ----- node/no-extraneous-require -----
|
|
11522
11525
|
type NodeNoExtraneousRequire = []|[{
|
|
@@ -11538,6 +11541,9 @@ type NodeNoExtraneousRequire = []|[{
|
|
|
11538
11541
|
replace: [string, string]
|
|
11539
11542
|
})[]])
|
|
11540
11543
|
resolvePaths?: string[]
|
|
11544
|
+
resolverConfig?: {
|
|
11545
|
+
[k: string]: unknown | undefined
|
|
11546
|
+
}
|
|
11541
11547
|
tryExtensions?: string[]
|
|
11542
11548
|
}]
|
|
11543
11549
|
// ----- node/no-hide-core-modules -----
|
|
@@ -11550,6 +11556,9 @@ type NodeNoHideCoreModules = []|[{
|
|
|
11550
11556
|
type NodeNoMissingImport = []|[{
|
|
11551
11557
|
allowModules?: string[]
|
|
11552
11558
|
resolvePaths?: string[]
|
|
11559
|
+
resolverConfig?: {
|
|
11560
|
+
[k: string]: unknown | undefined
|
|
11561
|
+
}
|
|
11553
11562
|
tryExtensions?: string[]
|
|
11554
11563
|
ignoreTypeImport?: boolean
|
|
11555
11564
|
tsconfigPath?: string
|
|
@@ -11560,6 +11569,9 @@ type NodeNoMissingRequire = []|[{
|
|
|
11560
11569
|
allowModules?: string[]
|
|
11561
11570
|
tryExtensions?: string[]
|
|
11562
11571
|
resolvePaths?: string[]
|
|
11572
|
+
resolverConfig?: {
|
|
11573
|
+
[k: string]: unknown | undefined
|
|
11574
|
+
}
|
|
11563
11575
|
typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
|
|
11564
11576
|
tsconfigPath?: string
|
|
11565
11577
|
}]
|
|
@@ -11627,6 +11639,9 @@ type NodeNoUnpublishedImport = []|[{
|
|
|
11627
11639
|
replace: [string, string]
|
|
11628
11640
|
})[]])
|
|
11629
11641
|
resolvePaths?: string[]
|
|
11642
|
+
resolverConfig?: {
|
|
11643
|
+
[k: string]: unknown | undefined
|
|
11644
|
+
}
|
|
11630
11645
|
ignoreTypeImport?: boolean
|
|
11631
11646
|
ignorePrivate?: boolean
|
|
11632
11647
|
}]
|
|
@@ -11650,6 +11665,9 @@ type NodeNoUnpublishedRequire = []|[{
|
|
|
11650
11665
|
replace: [string, string]
|
|
11651
11666
|
})[]])
|
|
11652
11667
|
resolvePaths?: string[]
|
|
11668
|
+
resolverConfig?: {
|
|
11669
|
+
[k: string]: unknown | undefined
|
|
11670
|
+
}
|
|
11653
11671
|
tryExtensions?: string[]
|
|
11654
11672
|
ignorePrivate?: boolean
|
|
11655
11673
|
}]
|
|
@@ -11667,7 +11685,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
11667
11685
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
11668
11686
|
version?: string
|
|
11669
11687
|
allowExperimental?: boolean
|
|
11670
|
-
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")[]
|
|
11688
|
+
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")[]
|
|
11671
11689
|
}]
|
|
11672
11690
|
// ----- node/prefer-global/buffer -----
|
|
11673
11691
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -11820,15 +11838,21 @@ type PerfectionistSortArrayIncludes = []|[{
|
|
|
11820
11838
|
|
|
11821
11839
|
ignoreCase?: boolean
|
|
11822
11840
|
|
|
11841
|
+
alphabet?: string
|
|
11842
|
+
|
|
11823
11843
|
locales?: (string | string[])
|
|
11824
11844
|
|
|
11825
11845
|
order?: ("asc" | "desc")
|
|
11826
11846
|
|
|
11827
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
11847
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
11828
11848
|
}]
|
|
11829
11849
|
// ----- perfectionist/sort-classes -----
|
|
11830
11850
|
type PerfectionistSortClasses = []|[{
|
|
11831
11851
|
|
|
11852
|
+
ignoreCallbackDependenciesPatterns?: string[]
|
|
11853
|
+
|
|
11854
|
+
partitionByComment?: (string[] | boolean | string)
|
|
11855
|
+
|
|
11832
11856
|
customGroups?: ({
|
|
11833
11857
|
|
|
11834
11858
|
groupName?: string
|
|
@@ -11838,12 +11862,12 @@ type PerfectionistSortClasses = []|[{
|
|
|
11838
11862
|
order?: ("desc" | "asc")
|
|
11839
11863
|
anyOf?: {
|
|
11840
11864
|
|
|
11841
|
-
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
11842
|
-
|
|
11843
11865
|
elementValuePattern?: string
|
|
11844
11866
|
|
|
11845
11867
|
decoratorNamePattern?: string
|
|
11846
11868
|
|
|
11869
|
+
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
11870
|
+
|
|
11847
11871
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
11848
11872
|
|
|
11849
11873
|
elementNamePattern?: string
|
|
@@ -11856,21 +11880,17 @@ type PerfectionistSortClasses = []|[{
|
|
|
11856
11880
|
|
|
11857
11881
|
order?: ("desc" | "asc")
|
|
11858
11882
|
|
|
11859
|
-
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
11860
|
-
|
|
11861
11883
|
elementValuePattern?: string
|
|
11862
11884
|
|
|
11863
11885
|
decoratorNamePattern?: string
|
|
11864
11886
|
|
|
11887
|
+
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
11888
|
+
|
|
11865
11889
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
11866
11890
|
|
|
11867
11891
|
elementNamePattern?: string
|
|
11868
11892
|
})[]
|
|
11869
11893
|
|
|
11870
|
-
ignoreCallbackDependenciesPatterns?: string[]
|
|
11871
|
-
|
|
11872
|
-
partitionByComment?: (string[] | boolean | string)
|
|
11873
|
-
|
|
11874
11894
|
partitionByNewLine?: boolean
|
|
11875
11895
|
|
|
11876
11896
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -11879,13 +11899,15 @@ type PerfectionistSortClasses = []|[{
|
|
|
11879
11899
|
|
|
11880
11900
|
ignoreCase?: boolean
|
|
11881
11901
|
|
|
11902
|
+
alphabet?: string
|
|
11903
|
+
|
|
11882
11904
|
locales?: (string | string[])
|
|
11883
11905
|
|
|
11884
11906
|
groups?: (string | string[])[]
|
|
11885
11907
|
|
|
11886
11908
|
order?: ("asc" | "desc")
|
|
11887
11909
|
|
|
11888
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
11910
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
11889
11911
|
}]
|
|
11890
11912
|
// ----- perfectionist/sort-decorators -----
|
|
11891
11913
|
type PerfectionistSortDecorators = []|[{
|
|
@@ -11910,13 +11932,15 @@ type PerfectionistSortDecorators = []|[{
|
|
|
11910
11932
|
|
|
11911
11933
|
ignoreCase?: boolean
|
|
11912
11934
|
|
|
11935
|
+
alphabet?: string
|
|
11936
|
+
|
|
11913
11937
|
locales?: (string | string[])
|
|
11914
11938
|
|
|
11915
11939
|
groups?: (string | string[])[]
|
|
11916
11940
|
|
|
11917
11941
|
order?: ("asc" | "desc")
|
|
11918
11942
|
|
|
11919
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
11943
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
11920
11944
|
}]
|
|
11921
11945
|
// ----- perfectionist/sort-enums -----
|
|
11922
11946
|
type PerfectionistSortEnums = []|[{
|
|
@@ -11933,11 +11957,13 @@ type PerfectionistSortEnums = []|[{
|
|
|
11933
11957
|
|
|
11934
11958
|
ignoreCase?: boolean
|
|
11935
11959
|
|
|
11960
|
+
alphabet?: string
|
|
11961
|
+
|
|
11936
11962
|
locales?: (string | string[])
|
|
11937
11963
|
|
|
11938
11964
|
order?: ("asc" | "desc")
|
|
11939
11965
|
|
|
11940
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
11966
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
11941
11967
|
}]
|
|
11942
11968
|
// ----- perfectionist/sort-exports -----
|
|
11943
11969
|
type PerfectionistSortExports = []|[{
|
|
@@ -11952,11 +11978,13 @@ type PerfectionistSortExports = []|[{
|
|
|
11952
11978
|
|
|
11953
11979
|
ignoreCase?: boolean
|
|
11954
11980
|
|
|
11981
|
+
alphabet?: string
|
|
11982
|
+
|
|
11955
11983
|
locales?: (string | string[])
|
|
11956
11984
|
|
|
11957
11985
|
order?: ("asc" | "desc")
|
|
11958
11986
|
|
|
11959
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
11987
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
11960
11988
|
}]
|
|
11961
11989
|
// ----- perfectionist/sort-heritage-clauses -----
|
|
11962
11990
|
type PerfectionistSortHeritageClauses = []|[{
|
|
@@ -11969,13 +11997,15 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
11969
11997
|
|
|
11970
11998
|
ignoreCase?: boolean
|
|
11971
11999
|
|
|
12000
|
+
alphabet?: string
|
|
12001
|
+
|
|
11972
12002
|
locales?: (string | string[])
|
|
11973
12003
|
|
|
11974
12004
|
groups?: (string | string[])[]
|
|
11975
12005
|
|
|
11976
12006
|
order?: ("asc" | "desc")
|
|
11977
12007
|
|
|
11978
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12008
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
11979
12009
|
}]
|
|
11980
12010
|
// ----- perfectionist/sort-imports -----
|
|
11981
12011
|
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
@@ -12012,13 +12042,15 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
12012
12042
|
|
|
12013
12043
|
ignoreCase?: boolean
|
|
12014
12044
|
|
|
12045
|
+
alphabet?: string
|
|
12046
|
+
|
|
12015
12047
|
locales?: (string | string[])
|
|
12016
12048
|
|
|
12017
12049
|
groups?: (string | string[])[]
|
|
12018
12050
|
|
|
12019
12051
|
order?: ("asc" | "desc")
|
|
12020
12052
|
|
|
12021
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12053
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
12022
12054
|
})
|
|
12023
12055
|
type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
|
|
12024
12056
|
[k: string]: unknown | undefined
|
|
@@ -12033,8 +12065,39 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
12033
12065
|
ignorePattern?: string[]
|
|
12034
12066
|
|
|
12035
12067
|
partitionByComment?: (string[] | boolean | string)
|
|
12068
|
+
customGroups?: ({
|
|
12069
|
+
[k: string]: (string | string[]) | undefined
|
|
12070
|
+
} | ({
|
|
12071
|
+
|
|
12072
|
+
groupName?: string
|
|
12073
|
+
|
|
12074
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
12075
|
+
|
|
12076
|
+
order?: ("desc" | "asc")
|
|
12077
|
+
anyOf?: {
|
|
12078
|
+
|
|
12079
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
12080
|
+
|
|
12081
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
12082
|
+
|
|
12083
|
+
elementNamePattern?: string
|
|
12084
|
+
}[]
|
|
12085
|
+
} | {
|
|
12086
|
+
|
|
12087
|
+
groupName?: string
|
|
12088
|
+
|
|
12089
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
12090
|
+
|
|
12091
|
+
order?: ("desc" | "asc")
|
|
12092
|
+
|
|
12093
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
12094
|
+
|
|
12095
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
12096
|
+
|
|
12097
|
+
elementNamePattern?: string
|
|
12098
|
+
})[])
|
|
12036
12099
|
|
|
12037
|
-
groupKind?: ("mixed" | "
|
|
12100
|
+
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
12038
12101
|
|
|
12039
12102
|
partitionByNewLine?: boolean
|
|
12040
12103
|
|
|
@@ -12042,19 +12105,17 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
12042
12105
|
|
|
12043
12106
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12044
12107
|
|
|
12045
|
-
customGroups?: {
|
|
12046
|
-
[k: string]: (string | string[]) | undefined
|
|
12047
|
-
}
|
|
12048
|
-
|
|
12049
12108
|
ignoreCase?: boolean
|
|
12050
12109
|
|
|
12110
|
+
alphabet?: string
|
|
12111
|
+
|
|
12051
12112
|
locales?: (string | string[])
|
|
12052
12113
|
|
|
12053
12114
|
groups?: (string | string[])[]
|
|
12054
12115
|
|
|
12055
12116
|
order?: ("asc" | "desc")
|
|
12056
12117
|
|
|
12057
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12118
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
12058
12119
|
}]
|
|
12059
12120
|
// ----- perfectionist/sort-intersection-types -----
|
|
12060
12121
|
type PerfectionistSortIntersectionTypes = []|[{
|
|
@@ -12069,13 +12130,15 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
12069
12130
|
|
|
12070
12131
|
ignoreCase?: boolean
|
|
12071
12132
|
|
|
12133
|
+
alphabet?: string
|
|
12134
|
+
|
|
12072
12135
|
locales?: (string | string[])
|
|
12073
12136
|
|
|
12074
12137
|
groups?: (string | string[])[]
|
|
12075
12138
|
|
|
12076
12139
|
order?: ("asc" | "desc")
|
|
12077
12140
|
|
|
12078
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12141
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
12079
12142
|
}]
|
|
12080
12143
|
// ----- perfectionist/sort-jsx-props -----
|
|
12081
12144
|
type PerfectionistSortJsxProps = []|[{
|
|
@@ -12090,13 +12153,15 @@ type PerfectionistSortJsxProps = []|[{
|
|
|
12090
12153
|
|
|
12091
12154
|
ignoreCase?: boolean
|
|
12092
12155
|
|
|
12156
|
+
alphabet?: string
|
|
12157
|
+
|
|
12093
12158
|
locales?: (string | string[])
|
|
12094
12159
|
|
|
12095
12160
|
groups?: (string | string[])[]
|
|
12096
12161
|
|
|
12097
12162
|
order?: ("asc" | "desc")
|
|
12098
12163
|
|
|
12099
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12164
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
12100
12165
|
}]
|
|
12101
12166
|
// ----- perfectionist/sort-maps -----
|
|
12102
12167
|
type PerfectionistSortMaps = []|[{
|
|
@@ -12109,15 +12174,19 @@ type PerfectionistSortMaps = []|[{
|
|
|
12109
12174
|
|
|
12110
12175
|
ignoreCase?: boolean
|
|
12111
12176
|
|
|
12177
|
+
alphabet?: string
|
|
12178
|
+
|
|
12112
12179
|
locales?: (string | string[])
|
|
12113
12180
|
|
|
12114
12181
|
order?: ("asc" | "desc")
|
|
12115
12182
|
|
|
12116
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12183
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
12117
12184
|
}]
|
|
12118
12185
|
// ----- perfectionist/sort-modules -----
|
|
12119
12186
|
type PerfectionistSortModules = []|[{
|
|
12120
12187
|
|
|
12188
|
+
partitionByComment?: (string[] | boolean | string)
|
|
12189
|
+
|
|
12121
12190
|
customGroups?: ({
|
|
12122
12191
|
|
|
12123
12192
|
groupName?: string
|
|
@@ -12127,12 +12196,10 @@ type PerfectionistSortModules = []|[{
|
|
|
12127
12196
|
order?: ("desc" | "asc")
|
|
12128
12197
|
anyOf?: {
|
|
12129
12198
|
|
|
12130
|
-
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
12131
|
-
|
|
12132
|
-
elementValuePattern?: string
|
|
12133
|
-
|
|
12134
12199
|
decoratorNamePattern?: string
|
|
12135
12200
|
|
|
12201
|
+
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
12202
|
+
|
|
12136
12203
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
12137
12204
|
|
|
12138
12205
|
elementNamePattern?: string
|
|
@@ -12145,19 +12212,15 @@ type PerfectionistSortModules = []|[{
|
|
|
12145
12212
|
|
|
12146
12213
|
order?: ("desc" | "asc")
|
|
12147
12214
|
|
|
12148
|
-
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
12149
|
-
|
|
12150
|
-
elementValuePattern?: string
|
|
12151
|
-
|
|
12152
12215
|
decoratorNamePattern?: string
|
|
12153
12216
|
|
|
12217
|
+
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
12218
|
+
|
|
12154
12219
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
12155
12220
|
|
|
12156
12221
|
elementNamePattern?: string
|
|
12157
12222
|
})[]
|
|
12158
12223
|
|
|
12159
|
-
partitionByComment?: (string[] | boolean | string)
|
|
12160
|
-
|
|
12161
12224
|
partitionByNewLine?: boolean
|
|
12162
12225
|
|
|
12163
12226
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12166,13 +12229,15 @@ type PerfectionistSortModules = []|[{
|
|
|
12166
12229
|
|
|
12167
12230
|
ignoreCase?: boolean
|
|
12168
12231
|
|
|
12232
|
+
alphabet?: string
|
|
12233
|
+
|
|
12169
12234
|
locales?: (string | string[])
|
|
12170
12235
|
|
|
12171
12236
|
groups?: (string | string[])[]
|
|
12172
12237
|
|
|
12173
12238
|
order?: ("asc" | "desc")
|
|
12174
12239
|
|
|
12175
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12240
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
12176
12241
|
}]
|
|
12177
12242
|
// ----- perfectionist/sort-named-exports -----
|
|
12178
12243
|
type PerfectionistSortNamedExports = []|[{
|
|
@@ -12187,11 +12252,13 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
12187
12252
|
|
|
12188
12253
|
ignoreCase?: boolean
|
|
12189
12254
|
|
|
12255
|
+
alphabet?: string
|
|
12256
|
+
|
|
12190
12257
|
locales?: (string | string[])
|
|
12191
12258
|
|
|
12192
12259
|
order?: ("asc" | "desc")
|
|
12193
12260
|
|
|
12194
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12261
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
12195
12262
|
}]
|
|
12196
12263
|
// ----- perfectionist/sort-named-imports -----
|
|
12197
12264
|
type PerfectionistSortNamedImports = []|[{
|
|
@@ -12208,16 +12275,51 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
12208
12275
|
|
|
12209
12276
|
ignoreCase?: boolean
|
|
12210
12277
|
|
|
12278
|
+
alphabet?: string
|
|
12279
|
+
|
|
12211
12280
|
locales?: (string | string[])
|
|
12212
12281
|
|
|
12213
12282
|
order?: ("asc" | "desc")
|
|
12214
12283
|
|
|
12215
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12284
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
12216
12285
|
}]
|
|
12217
12286
|
// ----- perfectionist/sort-object-types -----
|
|
12218
12287
|
type PerfectionistSortObjectTypes = []|[{
|
|
12219
12288
|
|
|
12289
|
+
ignorePattern?: string[]
|
|
12290
|
+
|
|
12220
12291
|
partitionByComment?: (string[] | boolean | string)
|
|
12292
|
+
customGroups?: ({
|
|
12293
|
+
[k: string]: (string | string[]) | undefined
|
|
12294
|
+
} | ({
|
|
12295
|
+
|
|
12296
|
+
groupName?: string
|
|
12297
|
+
|
|
12298
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
12299
|
+
|
|
12300
|
+
order?: ("desc" | "asc")
|
|
12301
|
+
anyOf?: {
|
|
12302
|
+
|
|
12303
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
12304
|
+
|
|
12305
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
12306
|
+
|
|
12307
|
+
elementNamePattern?: string
|
|
12308
|
+
}[]
|
|
12309
|
+
} | {
|
|
12310
|
+
|
|
12311
|
+
groupName?: string
|
|
12312
|
+
|
|
12313
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
12314
|
+
|
|
12315
|
+
order?: ("desc" | "asc")
|
|
12316
|
+
|
|
12317
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
12318
|
+
|
|
12319
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
12320
|
+
|
|
12321
|
+
elementNamePattern?: string
|
|
12322
|
+
})[])
|
|
12221
12323
|
|
|
12222
12324
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
12223
12325
|
|
|
@@ -12227,22 +12329,20 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
12227
12329
|
|
|
12228
12330
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12229
12331
|
|
|
12230
|
-
customGroups?: {
|
|
12231
|
-
[k: string]: (string | string[]) | undefined
|
|
12232
|
-
}
|
|
12233
|
-
|
|
12234
12332
|
ignoreCase?: boolean
|
|
12235
12333
|
|
|
12334
|
+
alphabet?: string
|
|
12335
|
+
|
|
12236
12336
|
locales?: (string | string[])
|
|
12237
12337
|
|
|
12238
12338
|
groups?: (string | string[])[]
|
|
12239
12339
|
|
|
12240
12340
|
order?: ("asc" | "desc")
|
|
12241
12341
|
|
|
12242
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12342
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
12243
12343
|
}]
|
|
12244
12344
|
// ----- perfectionist/sort-objects -----
|
|
12245
|
-
type PerfectionistSortObjects =
|
|
12345
|
+
type PerfectionistSortObjects = {
|
|
12246
12346
|
|
|
12247
12347
|
destructuredObjects?: (boolean | {
|
|
12248
12348
|
|
|
@@ -12260,6 +12360,9 @@ type PerfectionistSortObjects = []|[{
|
|
|
12260
12360
|
styledComponents?: boolean
|
|
12261
12361
|
|
|
12262
12362
|
partitionByNewLine?: boolean
|
|
12363
|
+
useConfigurationIf?: {
|
|
12364
|
+
allNamesMatchPattern?: string
|
|
12365
|
+
}
|
|
12263
12366
|
|
|
12264
12367
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12265
12368
|
|
|
@@ -12271,14 +12374,16 @@ type PerfectionistSortObjects = []|[{
|
|
|
12271
12374
|
|
|
12272
12375
|
ignoreCase?: boolean
|
|
12273
12376
|
|
|
12377
|
+
alphabet?: string
|
|
12378
|
+
|
|
12274
12379
|
locales?: (string | string[])
|
|
12275
12380
|
|
|
12276
12381
|
groups?: (string | string[])[]
|
|
12277
12382
|
|
|
12278
12383
|
order?: ("asc" | "desc")
|
|
12279
12384
|
|
|
12280
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12281
|
-
}]
|
|
12385
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
12386
|
+
}[]
|
|
12282
12387
|
// ----- perfectionist/sort-sets -----
|
|
12283
12388
|
type PerfectionistSortSets = []|[{
|
|
12284
12389
|
|
|
@@ -12292,11 +12397,13 @@ type PerfectionistSortSets = []|[{
|
|
|
12292
12397
|
|
|
12293
12398
|
ignoreCase?: boolean
|
|
12294
12399
|
|
|
12400
|
+
alphabet?: string
|
|
12401
|
+
|
|
12295
12402
|
locales?: (string | string[])
|
|
12296
12403
|
|
|
12297
12404
|
order?: ("asc" | "desc")
|
|
12298
12405
|
|
|
12299
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12406
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
12300
12407
|
}]
|
|
12301
12408
|
// ----- perfectionist/sort-switch-case -----
|
|
12302
12409
|
type PerfectionistSortSwitchCase = []|[{
|
|
@@ -12305,11 +12412,13 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
12305
12412
|
|
|
12306
12413
|
ignoreCase?: boolean
|
|
12307
12414
|
|
|
12415
|
+
alphabet?: string
|
|
12416
|
+
|
|
12308
12417
|
locales?: (string | string[])
|
|
12309
12418
|
|
|
12310
12419
|
order?: ("asc" | "desc")
|
|
12311
12420
|
|
|
12312
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12421
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
12313
12422
|
}]
|
|
12314
12423
|
// ----- perfectionist/sort-union-types -----
|
|
12315
12424
|
type PerfectionistSortUnionTypes = []|[{
|
|
@@ -12324,13 +12433,15 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
12324
12433
|
|
|
12325
12434
|
ignoreCase?: boolean
|
|
12326
12435
|
|
|
12436
|
+
alphabet?: string
|
|
12437
|
+
|
|
12327
12438
|
locales?: (string | string[])
|
|
12328
12439
|
|
|
12329
12440
|
groups?: (string | string[])[]
|
|
12330
12441
|
|
|
12331
12442
|
order?: ("asc" | "desc")
|
|
12332
12443
|
|
|
12333
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12444
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
12334
12445
|
}]
|
|
12335
12446
|
// ----- perfectionist/sort-variable-declarations -----
|
|
12336
12447
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
@@ -12343,11 +12454,13 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
12343
12454
|
|
|
12344
12455
|
ignoreCase?: boolean
|
|
12345
12456
|
|
|
12457
|
+
alphabet?: string
|
|
12458
|
+
|
|
12346
12459
|
locales?: (string | string[])
|
|
12347
12460
|
|
|
12348
12461
|
order?: ("asc" | "desc")
|
|
12349
12462
|
|
|
12350
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12463
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
12351
12464
|
}]
|
|
12352
12465
|
// ----- prefer-arrow-callback -----
|
|
12353
12466
|
type PreferArrowCallback = []|[{
|
|
@@ -13242,6 +13355,7 @@ type StyleIndent = []|[("tab" | number)]|[("tab" | number), {
|
|
|
13242
13355
|
ImportDeclaration?: (number | ("first" | "off"))
|
|
13243
13356
|
flatTernaryExpressions?: boolean
|
|
13244
13357
|
offsetTernaryExpressions?: boolean
|
|
13358
|
+
offsetTernaryExpressionsOffsetCallExpressions?: boolean
|
|
13245
13359
|
ignoredNodes?: string[]
|
|
13246
13360
|
ignoreComments?: boolean
|
|
13247
13361
|
tabLength?: number
|
|
@@ -15597,6 +15711,8 @@ type TsSwitchExhaustivenessCheck = []|[{
|
|
|
15597
15711
|
|
|
15598
15712
|
considerDefaultExhaustiveForUnions?: boolean
|
|
15599
15713
|
|
|
15714
|
+
defaultCaseCommentPattern?: string
|
|
15715
|
+
|
|
15600
15716
|
requireDefaultForNonUnion?: boolean
|
|
15601
15717
|
}]
|
|
15602
15718
|
// ----- ts/triple-slash-reference -----
|