@antfu/eslint-config 3.7.2 → 3.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.cjs +34 -33
- package/dist/cli.js +34 -33
- package/dist/index.cjs +8 -12
- package/dist/index.d.cts +644 -358
- package/dist/index.d.ts +644 -358
- package/dist/index.js +7 -11
- package/package.json +33 -33
package/dist/index.d.cts
CHANGED
|
@@ -365,6 +365,11 @@ interface RuleOptions {
|
|
|
365
365
|
* @see https://ota-meshi.github.io/eslint-plugin-astro/rules/semi/
|
|
366
366
|
*/
|
|
367
367
|
'astro/semi'?: Linter.RuleEntry<AstroSemi>
|
|
368
|
+
/**
|
|
369
|
+
* enforce sorting of attributes
|
|
370
|
+
* @see https://ota-meshi.github.io/eslint-plugin-astro/rules/sort-attributes/
|
|
371
|
+
*/
|
|
372
|
+
'astro/sort-attributes'?: Linter.RuleEntry<AstroSortAttributes>
|
|
368
373
|
/**
|
|
369
374
|
* disallow warnings when compiling.
|
|
370
375
|
* @see https://ota-meshi.github.io/eslint-plugin-astro/rules/valid-compile/
|
|
@@ -647,233 +652,233 @@ interface RuleOptions {
|
|
|
647
652
|
'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
|
|
648
653
|
/**
|
|
649
654
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
650
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
655
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/consistent-type-specifier-style.md
|
|
651
656
|
*/
|
|
652
657
|
'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
|
|
653
658
|
/**
|
|
654
659
|
* Ensure a default export is present, given a default import.
|
|
655
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
660
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/default.md
|
|
656
661
|
*/
|
|
657
662
|
'import/default'?: Linter.RuleEntry<[]>
|
|
658
663
|
/**
|
|
659
664
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
660
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
665
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/dynamic-import-chunkname.md
|
|
661
666
|
*/
|
|
662
667
|
'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
|
|
663
668
|
/**
|
|
664
669
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
665
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
670
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/export.md
|
|
666
671
|
*/
|
|
667
672
|
'import/export'?: Linter.RuleEntry<[]>
|
|
668
673
|
/**
|
|
669
674
|
* Ensure all exports appear after other statements.
|
|
670
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
675
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/exports-last.md
|
|
671
676
|
*/
|
|
672
677
|
'import/exports-last'?: Linter.RuleEntry<[]>
|
|
673
678
|
/**
|
|
674
679
|
* Ensure consistent use of file extension within the import path.
|
|
675
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
680
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/extensions.md
|
|
676
681
|
*/
|
|
677
682
|
'import/extensions'?: Linter.RuleEntry<ImportExtensions>
|
|
678
683
|
/**
|
|
679
684
|
* Ensure all imports appear before other statements.
|
|
680
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
685
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/first.md
|
|
681
686
|
*/
|
|
682
687
|
'import/first'?: Linter.RuleEntry<ImportFirst>
|
|
683
688
|
/**
|
|
684
689
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
685
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
690
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/group-exports.md
|
|
686
691
|
*/
|
|
687
692
|
'import/group-exports'?: Linter.RuleEntry<[]>
|
|
688
693
|
/**
|
|
689
694
|
* Replaced by `import-x/first`.
|
|
690
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
695
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/imports-first.md
|
|
691
696
|
* @deprecated
|
|
692
697
|
*/
|
|
693
698
|
'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
|
|
694
699
|
/**
|
|
695
700
|
* Enforce the maximum number of dependencies a module can have.
|
|
696
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
701
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/max-dependencies.md
|
|
697
702
|
*/
|
|
698
703
|
'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
|
|
699
704
|
/**
|
|
700
705
|
* Ensure named imports correspond to a named export in the remote file.
|
|
701
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
706
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/named.md
|
|
702
707
|
*/
|
|
703
708
|
'import/named'?: Linter.RuleEntry<ImportNamed>
|
|
704
709
|
/**
|
|
705
710
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
706
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
711
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/namespace.md
|
|
707
712
|
*/
|
|
708
713
|
'import/namespace'?: Linter.RuleEntry<ImportNamespace>
|
|
709
714
|
/**
|
|
710
715
|
* Enforce a newline after import statements.
|
|
711
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
716
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/newline-after-import.md
|
|
712
717
|
*/
|
|
713
718
|
'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
|
|
714
719
|
/**
|
|
715
720
|
* Forbid import of modules using absolute paths.
|
|
716
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
721
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-absolute-path.md
|
|
717
722
|
*/
|
|
718
723
|
'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
|
|
719
724
|
/**
|
|
720
725
|
* Forbid AMD `require` and `define` calls.
|
|
721
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
726
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-amd.md
|
|
722
727
|
*/
|
|
723
728
|
'import/no-amd'?: Linter.RuleEntry<[]>
|
|
724
729
|
/**
|
|
725
730
|
* Forbid anonymous values as default exports.
|
|
726
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
731
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-anonymous-default-export.md
|
|
727
732
|
*/
|
|
728
733
|
'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
|
|
729
734
|
/**
|
|
730
735
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
731
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
736
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-commonjs.md
|
|
732
737
|
*/
|
|
733
738
|
'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
|
|
734
739
|
/**
|
|
735
740
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
736
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
741
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-cycle.md
|
|
737
742
|
*/
|
|
738
743
|
'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
|
|
739
744
|
/**
|
|
740
745
|
* Forbid default exports.
|
|
741
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
746
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-default-export.md
|
|
742
747
|
*/
|
|
743
748
|
'import/no-default-export'?: Linter.RuleEntry<[]>
|
|
744
749
|
/**
|
|
745
750
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
746
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
751
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-deprecated.md
|
|
747
752
|
*/
|
|
748
753
|
'import/no-deprecated'?: Linter.RuleEntry<[]>
|
|
749
754
|
/**
|
|
750
755
|
* Forbid repeated import of the same module in multiple places.
|
|
751
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
756
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-duplicates.md
|
|
752
757
|
*/
|
|
753
758
|
'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
|
|
754
759
|
/**
|
|
755
760
|
* Forbid `require()` calls with expressions.
|
|
756
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
761
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-dynamic-require.md
|
|
757
762
|
*/
|
|
758
763
|
'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
|
|
759
764
|
/**
|
|
760
765
|
* Forbid empty named import blocks.
|
|
761
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
766
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-empty-named-blocks.md
|
|
762
767
|
*/
|
|
763
768
|
'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
764
769
|
/**
|
|
765
770
|
* Forbid the use of extraneous packages.
|
|
766
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
771
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-extraneous-dependencies.md
|
|
767
772
|
*/
|
|
768
773
|
'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
|
|
769
774
|
/**
|
|
770
775
|
* Forbid import statements with CommonJS module.exports.
|
|
771
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
776
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-import-module-exports.md
|
|
772
777
|
*/
|
|
773
778
|
'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
|
|
774
779
|
/**
|
|
775
780
|
* Forbid importing the submodules of other modules.
|
|
776
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
781
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-internal-modules.md
|
|
777
782
|
*/
|
|
778
783
|
'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
|
|
779
784
|
/**
|
|
780
785
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
781
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
786
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-mutable-exports.md
|
|
782
787
|
*/
|
|
783
788
|
'import/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
784
789
|
/**
|
|
785
790
|
* Forbid use of exported name as identifier of default export.
|
|
786
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
791
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-as-default.md
|
|
787
792
|
*/
|
|
788
793
|
'import/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
789
794
|
/**
|
|
790
795
|
* Forbid use of exported name as property of default export.
|
|
791
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
796
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-as-default-member.md
|
|
792
797
|
*/
|
|
793
798
|
'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
794
799
|
/**
|
|
795
800
|
* Forbid named default exports.
|
|
796
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
801
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-default.md
|
|
797
802
|
*/
|
|
798
803
|
'import/no-named-default'?: Linter.RuleEntry<[]>
|
|
799
804
|
/**
|
|
800
805
|
* Forbid named exports.
|
|
801
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
806
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-export.md
|
|
802
807
|
*/
|
|
803
808
|
'import/no-named-export'?: Linter.RuleEntry<[]>
|
|
804
809
|
/**
|
|
805
810
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
806
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
811
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-namespace.md
|
|
807
812
|
*/
|
|
808
813
|
'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
|
|
809
814
|
/**
|
|
810
815
|
* Forbid Node.js builtin modules.
|
|
811
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
816
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-nodejs-modules.md
|
|
812
817
|
*/
|
|
813
818
|
'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
|
|
814
819
|
/**
|
|
815
820
|
* Forbid importing packages through relative paths.
|
|
816
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
821
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-relative-packages.md
|
|
817
822
|
*/
|
|
818
823
|
'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
|
|
819
824
|
/**
|
|
820
825
|
* Forbid importing modules from parent directories.
|
|
821
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
826
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-relative-parent-imports.md
|
|
822
827
|
*/
|
|
823
828
|
'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
|
|
824
829
|
/**
|
|
825
830
|
* Forbid importing a default export by a different name.
|
|
826
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
831
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-rename-default.md
|
|
827
832
|
*/
|
|
828
833
|
'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
|
|
829
834
|
/**
|
|
830
835
|
* Enforce which files can be imported in a given folder.
|
|
831
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
836
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-restricted-paths.md
|
|
832
837
|
*/
|
|
833
838
|
'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
|
|
834
839
|
/**
|
|
835
840
|
* Forbid a module from importing itself.
|
|
836
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
841
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-self-import.md
|
|
837
842
|
*/
|
|
838
843
|
'import/no-self-import'?: Linter.RuleEntry<[]>
|
|
839
844
|
/**
|
|
840
845
|
* Forbid unassigned imports.
|
|
841
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
846
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-unassigned-import.md
|
|
842
847
|
*/
|
|
843
848
|
'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
|
|
844
849
|
/**
|
|
845
850
|
* Ensure imports point to a file/module that can be resolved.
|
|
846
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
851
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-unresolved.md
|
|
847
852
|
*/
|
|
848
853
|
'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
|
|
849
854
|
/**
|
|
850
855
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
851
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
856
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-unused-modules.md
|
|
852
857
|
*/
|
|
853
858
|
'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
|
|
854
859
|
/**
|
|
855
860
|
* Forbid unnecessary path segments in import and require statements.
|
|
856
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
861
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-useless-path-segments.md
|
|
857
862
|
*/
|
|
858
863
|
'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
|
|
859
864
|
/**
|
|
860
865
|
* Forbid webpack loader syntax in imports.
|
|
861
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
866
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-webpack-loader-syntax.md
|
|
862
867
|
*/
|
|
863
868
|
'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
864
869
|
/**
|
|
865
870
|
* Enforce a convention in module import order.
|
|
866
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
871
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/order.md
|
|
867
872
|
*/
|
|
868
873
|
'import/order'?: Linter.RuleEntry<ImportOrder>
|
|
869
874
|
/**
|
|
870
875
|
* Prefer a default export if module exports a single name or multiple names.
|
|
871
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
876
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/prefer-default-export.md
|
|
872
877
|
*/
|
|
873
878
|
'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
|
|
874
879
|
/**
|
|
875
880
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
876
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
881
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/unambiguous.md
|
|
877
882
|
*/
|
|
878
883
|
'import/unambiguous'?: Linter.RuleEntry<[]>
|
|
879
884
|
/**
|
|
@@ -2456,7 +2461,7 @@ interface RuleOptions {
|
|
|
2456
2461
|
* disallow the use of `process.env`
|
|
2457
2462
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-process-env.md
|
|
2458
2463
|
*/
|
|
2459
|
-
'node/no-process-env'?: Linter.RuleEntry<
|
|
2464
|
+
'node/no-process-env'?: Linter.RuleEntry<NodeNoProcessEnv>
|
|
2460
2465
|
/**
|
|
2461
2466
|
* disallow the use of `process.exit()`
|
|
2462
2467
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-process-exit.md
|
|
@@ -2639,6 +2644,7 @@ interface RuleOptions {
|
|
|
2639
2644
|
/**
|
|
2640
2645
|
* Enforce sorted Astro attributes.
|
|
2641
2646
|
* @see https://perfectionist.dev/rules/sort-astro-attributes
|
|
2647
|
+
* @deprecated
|
|
2642
2648
|
*/
|
|
2643
2649
|
'perfectionist/sort-astro-attributes'?: Linter.RuleEntry<PerfectionistSortAstroAttributes>
|
|
2644
2650
|
/**
|
|
@@ -2709,6 +2715,7 @@ interface RuleOptions {
|
|
|
2709
2715
|
/**
|
|
2710
2716
|
* Enforce sorted Svelte attributes.
|
|
2711
2717
|
* @see https://perfectionist.dev/rules/sort-svelte-attributes
|
|
2718
|
+
* @deprecated
|
|
2712
2719
|
*/
|
|
2713
2720
|
'perfectionist/sort-svelte-attributes'?: Linter.RuleEntry<PerfectionistSortSvelteAttributes>
|
|
2714
2721
|
/**
|
|
@@ -2729,6 +2736,7 @@ interface RuleOptions {
|
|
|
2729
2736
|
/**
|
|
2730
2737
|
* Enforce sorted Vue attributes.
|
|
2731
2738
|
* @see https://perfectionist.dev/rules/sort-vue-attributes
|
|
2739
|
+
* @deprecated
|
|
2732
2740
|
*/
|
|
2733
2741
|
'perfectionist/sort-vue-attributes'?: Linter.RuleEntry<PerfectionistSortVueAttributes>
|
|
2734
2742
|
/**
|
|
@@ -2890,8 +2898,8 @@ interface RuleOptions {
|
|
|
2890
2898
|
*/
|
|
2891
2899
|
'react-hooks-extra/no-direct-set-state-in-use-effect'?: Linter.RuleEntry<[]>
|
|
2892
2900
|
/**
|
|
2893
|
-
* disallow direct calls to the 'set' function of 'useState' in '
|
|
2894
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-effect
|
|
2901
|
+
* disallow direct calls to the 'set' function of 'useState' in 'useLayoutEffect'
|
|
2902
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-layout-effect
|
|
2895
2903
|
*/
|
|
2896
2904
|
'react-hooks-extra/no-direct-set-state-in-use-layout-effect'?: Linter.RuleEntry<[]>
|
|
2897
2905
|
/**
|
|
@@ -3154,12 +3162,17 @@ interface RuleOptions {
|
|
|
3154
3162
|
* disallow unnecessary fragments
|
|
3155
3163
|
* @see https://eslint-react.xyz/docs/rules/no-useless-fragment
|
|
3156
3164
|
*/
|
|
3157
|
-
'react/no-useless-fragment'?: Linter.RuleEntry<
|
|
3165
|
+
'react/no-useless-fragment'?: Linter.RuleEntry<ReactNoUselessFragment>
|
|
3158
3166
|
/**
|
|
3159
3167
|
* enforce using destructuring assignment in component props and context
|
|
3160
3168
|
* @see https://eslint-react.xyz/docs/rules/prefer-destructuring-assignment
|
|
3161
3169
|
*/
|
|
3162
3170
|
'react/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>
|
|
3171
|
+
/**
|
|
3172
|
+
* enforce React is imported via a namespace import
|
|
3173
|
+
* @see https://eslint-react.xyz/docs/rules/prefer-react-namespace-import
|
|
3174
|
+
*/
|
|
3175
|
+
'react/prefer-react-namespace-import'?: Linter.RuleEntry<[]>
|
|
3163
3176
|
/**
|
|
3164
3177
|
* enforce read-only props in components
|
|
3165
3178
|
* @see https://eslint-react.xyz/docs/rules/prefer-read-only-props
|
|
@@ -3841,6 +3854,11 @@ interface RuleOptions {
|
|
|
3841
3854
|
* @see https://eslint.style/rules/js/computed-property-spacing
|
|
3842
3855
|
*/
|
|
3843
3856
|
'style/computed-property-spacing'?: Linter.RuleEntry<StyleComputedPropertySpacing>
|
|
3857
|
+
/**
|
|
3858
|
+
* Enforce consistent line breaks after opening and before closing braces
|
|
3859
|
+
* @see https://eslint.style/rules/plus/curly-newline
|
|
3860
|
+
*/
|
|
3861
|
+
'style/curly-newline'?: Linter.RuleEntry<StyleCurlyNewline>
|
|
3844
3862
|
/**
|
|
3845
3863
|
* Enforce consistent newlines before and after dots
|
|
3846
3864
|
* @see https://eslint.style/rules/js/dot-location
|
|
@@ -3905,7 +3923,7 @@ interface RuleOptions {
|
|
|
3905
3923
|
* Enforce closing tag location for multiline JSX
|
|
3906
3924
|
* @see https://eslint.style/rules/jsx/jsx-closing-tag-location
|
|
3907
3925
|
*/
|
|
3908
|
-
'style/jsx-closing-tag-location'?: Linter.RuleEntry<
|
|
3926
|
+
'style/jsx-closing-tag-location'?: Linter.RuleEntry<StyleJsxClosingTagLocation>
|
|
3909
3927
|
/**
|
|
3910
3928
|
* Disallow unnecessary JSX expressions when literals alone are sufficient or enforce JSX expressions on literals in JSX children or attributes
|
|
3911
3929
|
* @see https://eslint.style/rules/jsx/jsx-curly-brace-presence
|
|
@@ -4303,6 +4321,11 @@ interface RuleOptions {
|
|
|
4303
4321
|
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/first-attribute-linebreak/
|
|
4304
4322
|
*/
|
|
4305
4323
|
'svelte/first-attribute-linebreak'?: Linter.RuleEntry<SvelteFirstAttributeLinebreak>
|
|
4324
|
+
/**
|
|
4325
|
+
* Require or disallow a line break before tag's closing brackets
|
|
4326
|
+
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/html-closing-bracket-new-line/
|
|
4327
|
+
*/
|
|
4328
|
+
'svelte/html-closing-bracket-new-line'?: Linter.RuleEntry<SvelteHtmlClosingBracketNewLine>
|
|
4306
4329
|
/**
|
|
4307
4330
|
* require or disallow a space before tag's closing brackets
|
|
4308
4331
|
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/html-closing-bracket-spacing/
|
|
@@ -4413,6 +4436,11 @@ interface RuleOptions {
|
|
|
4413
4436
|
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-inner-declarations/
|
|
4414
4437
|
*/
|
|
4415
4438
|
'svelte/no-inner-declarations'?: Linter.RuleEntry<SvelteNoInnerDeclarations>
|
|
4439
|
+
/**
|
|
4440
|
+
* Warns against the use of `$inspect` directive
|
|
4441
|
+
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-inspect/
|
|
4442
|
+
*/
|
|
4443
|
+
'svelte/no-inspect'?: Linter.RuleEntry<[]>
|
|
4416
4444
|
/**
|
|
4417
4445
|
* disallow use of not function in event handler
|
|
4418
4446
|
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-not-function-handler/
|
|
@@ -4872,6 +4900,11 @@ interface RuleOptions {
|
|
|
4872
4900
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-todo.md
|
|
4873
4901
|
*/
|
|
4874
4902
|
'test/prefer-todo'?: Linter.RuleEntry<[]>
|
|
4903
|
+
/**
|
|
4904
|
+
* Prefer `vi.mocked()` over `fn as Mock`
|
|
4905
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-vi-mocked.md
|
|
4906
|
+
*/
|
|
4907
|
+
'test/prefer-vi-mocked'?: Linter.RuleEntry<[]>
|
|
4875
4908
|
/**
|
|
4876
4909
|
* require setup and teardown to be within a hook
|
|
4877
4910
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-hook.md
|
|
@@ -5666,687 +5699,702 @@ interface RuleOptions {
|
|
|
5666
5699
|
'unicode-bom'?: Linter.RuleEntry<UnicodeBom>
|
|
5667
5700
|
/**
|
|
5668
5701
|
* Improve regexes by making them shorter, consistent, and safer.
|
|
5669
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5702
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/better-regex.md
|
|
5670
5703
|
*/
|
|
5671
5704
|
'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>
|
|
5672
5705
|
/**
|
|
5673
5706
|
* Enforce a specific parameter name in catch clauses.
|
|
5674
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5707
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/catch-error-name.md
|
|
5675
5708
|
*/
|
|
5676
5709
|
'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>
|
|
5677
5710
|
/**
|
|
5678
5711
|
* Use destructured variables over properties.
|
|
5679
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5712
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-destructuring.md
|
|
5680
5713
|
*/
|
|
5681
5714
|
'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>
|
|
5682
5715
|
/**
|
|
5683
5716
|
* Prefer consistent types when spreading a ternary in an array literal.
|
|
5684
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5717
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-empty-array-spread.md
|
|
5685
5718
|
*/
|
|
5686
5719
|
'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>
|
|
5720
|
+
/**
|
|
5721
|
+
* Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
|
|
5722
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-existence-index-check.md
|
|
5723
|
+
*/
|
|
5724
|
+
'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>
|
|
5687
5725
|
/**
|
|
5688
5726
|
* Move function definitions to the highest possible scope.
|
|
5689
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5727
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-function-scoping.md
|
|
5690
5728
|
*/
|
|
5691
5729
|
'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>
|
|
5692
5730
|
/**
|
|
5693
5731
|
* Enforce correct `Error` subclassing.
|
|
5694
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5732
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/custom-error-definition.md
|
|
5695
5733
|
*/
|
|
5696
5734
|
'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>
|
|
5697
5735
|
/**
|
|
5698
5736
|
* Enforce no spaces between braces.
|
|
5699
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5737
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/empty-brace-spaces.md
|
|
5700
5738
|
*/
|
|
5701
5739
|
'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>
|
|
5702
5740
|
/**
|
|
5703
5741
|
* Enforce passing a `message` value when creating a built-in error.
|
|
5704
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5742
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/error-message.md
|
|
5705
5743
|
*/
|
|
5706
5744
|
'unicorn/error-message'?: Linter.RuleEntry<[]>
|
|
5707
5745
|
/**
|
|
5708
5746
|
* Require escape sequences to use uppercase values.
|
|
5709
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5747
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/escape-case.md
|
|
5710
5748
|
*/
|
|
5711
5749
|
'unicorn/escape-case'?: Linter.RuleEntry<[]>
|
|
5712
5750
|
/**
|
|
5713
5751
|
* Add expiration conditions to TODO comments.
|
|
5714
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5752
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/expiring-todo-comments.md
|
|
5715
5753
|
*/
|
|
5716
5754
|
'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>
|
|
5717
5755
|
/**
|
|
5718
5756
|
* Enforce explicitly comparing the `length` or `size` property of a value.
|
|
5719
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5757
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/explicit-length-check.md
|
|
5720
5758
|
*/
|
|
5721
5759
|
'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>
|
|
5722
5760
|
/**
|
|
5723
5761
|
* Enforce a case style for filenames.
|
|
5724
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5762
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/filename-case.md
|
|
5725
5763
|
*/
|
|
5726
5764
|
'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>
|
|
5727
5765
|
/**
|
|
5728
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5766
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#import-index
|
|
5729
5767
|
* @deprecated
|
|
5730
5768
|
*/
|
|
5731
5769
|
'unicorn/import-index'?: Linter.RuleEntry<[]>
|
|
5732
5770
|
/**
|
|
5733
5771
|
* Enforce specific import styles per module.
|
|
5734
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5772
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/import-style.md
|
|
5735
5773
|
*/
|
|
5736
5774
|
'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>
|
|
5737
5775
|
/**
|
|
5738
5776
|
* Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
|
|
5739
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5777
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/new-for-builtins.md
|
|
5740
5778
|
*/
|
|
5741
5779
|
'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>
|
|
5742
5780
|
/**
|
|
5743
5781
|
* Enforce specifying rules to disable in `eslint-disable` comments.
|
|
5744
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5782
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-abusive-eslint-disable.md
|
|
5745
5783
|
*/
|
|
5746
5784
|
'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>
|
|
5747
5785
|
/**
|
|
5748
5786
|
* Disallow anonymous functions and classes as the default export.
|
|
5749
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5787
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-anonymous-default-export.md
|
|
5750
5788
|
*/
|
|
5751
5789
|
'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>
|
|
5752
5790
|
/**
|
|
5753
5791
|
* Prevent passing a function reference directly to iterator methods.
|
|
5754
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5792
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-callback-reference.md
|
|
5755
5793
|
*/
|
|
5756
5794
|
'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>
|
|
5757
5795
|
/**
|
|
5758
5796
|
* Prefer `for…of` over the `forEach` method.
|
|
5759
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5797
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-for-each.md
|
|
5760
5798
|
*/
|
|
5761
5799
|
'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>
|
|
5762
5800
|
/**
|
|
5763
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5801
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-array-instanceof
|
|
5764
5802
|
* @deprecated
|
|
5765
5803
|
*/
|
|
5766
5804
|
'unicorn/no-array-instanceof'?: Linter.RuleEntry<[]>
|
|
5767
5805
|
/**
|
|
5768
5806
|
* Disallow using the `this` argument in array methods.
|
|
5769
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5807
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-method-this-argument.md
|
|
5770
5808
|
*/
|
|
5771
5809
|
'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>
|
|
5772
5810
|
/**
|
|
5773
5811
|
* Enforce combining multiple `Array#push()` into one call.
|
|
5774
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5812
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-push-push.md
|
|
5775
5813
|
*/
|
|
5776
5814
|
'unicorn/no-array-push-push'?: Linter.RuleEntry<UnicornNoArrayPushPush>
|
|
5777
5815
|
/**
|
|
5778
5816
|
* Disallow `Array#reduce()` and `Array#reduceRight()`.
|
|
5779
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5817
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-reduce.md
|
|
5780
5818
|
*/
|
|
5781
5819
|
'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>
|
|
5782
5820
|
/**
|
|
5783
5821
|
* Disallow member access from await expression.
|
|
5784
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5822
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-await-expression-member.md
|
|
5785
5823
|
*/
|
|
5786
5824
|
'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>
|
|
5787
5825
|
/**
|
|
5788
5826
|
* Disallow using `await` in `Promise` method parameters.
|
|
5789
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5827
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-await-in-promise-methods.md
|
|
5790
5828
|
*/
|
|
5791
5829
|
'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
5792
5830
|
/**
|
|
5793
5831
|
* Do not use leading/trailing space between `console.log` parameters.
|
|
5794
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5832
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-console-spaces.md
|
|
5795
5833
|
*/
|
|
5796
5834
|
'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>
|
|
5797
5835
|
/**
|
|
5798
5836
|
* Do not use `document.cookie` directly.
|
|
5799
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5837
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-document-cookie.md
|
|
5800
5838
|
*/
|
|
5801
5839
|
'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>
|
|
5802
5840
|
/**
|
|
5803
5841
|
* Disallow empty files.
|
|
5804
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5842
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-empty-file.md
|
|
5805
5843
|
*/
|
|
5806
5844
|
'unicorn/no-empty-file'?: Linter.RuleEntry<[]>
|
|
5807
5845
|
/**
|
|
5808
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5846
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-fn-reference-in-iterator
|
|
5809
5847
|
* @deprecated
|
|
5810
5848
|
*/
|
|
5811
5849
|
'unicorn/no-fn-reference-in-iterator'?: Linter.RuleEntry<[]>
|
|
5812
5850
|
/**
|
|
5813
5851
|
* Do not use a `for` loop that can be replaced with a `for-of` loop.
|
|
5814
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5852
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-for-loop.md
|
|
5815
5853
|
*/
|
|
5816
5854
|
'unicorn/no-for-loop'?: Linter.RuleEntry<[]>
|
|
5817
5855
|
/**
|
|
5818
5856
|
* Enforce the use of Unicode escapes instead of hexadecimal escapes.
|
|
5819
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5857
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-hex-escape.md
|
|
5820
5858
|
*/
|
|
5821
5859
|
'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>
|
|
5822
5860
|
/**
|
|
5823
5861
|
* Require `Array.isArray()` instead of `instanceof Array`.
|
|
5824
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5862
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-instanceof-array.md
|
|
5825
5863
|
*/
|
|
5826
5864
|
'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>
|
|
5827
5865
|
/**
|
|
5828
5866
|
* Disallow invalid options in `fetch()` and `new Request()`.
|
|
5829
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5867
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-invalid-fetch-options.md
|
|
5830
5868
|
*/
|
|
5831
5869
|
'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>
|
|
5832
5870
|
/**
|
|
5833
5871
|
* Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
|
|
5834
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5872
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-invalid-remove-event-listener.md
|
|
5835
5873
|
*/
|
|
5836
5874
|
'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>
|
|
5837
5875
|
/**
|
|
5838
5876
|
* Disallow identifiers starting with `new` or `class`.
|
|
5839
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5877
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-keyword-prefix.md
|
|
5840
5878
|
*/
|
|
5841
5879
|
'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>
|
|
5842
5880
|
/**
|
|
5843
5881
|
* Disallow using `.length` as the `end` argument of `{Array,String,TypedArray}#slice()`.
|
|
5844
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5882
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-length-as-slice-end.md
|
|
5845
5883
|
*/
|
|
5846
5884
|
'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>
|
|
5847
5885
|
/**
|
|
5848
5886
|
* Disallow `if` statements as the only statement in `if` blocks without `else`.
|
|
5849
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5887
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-lonely-if.md
|
|
5850
5888
|
*/
|
|
5851
5889
|
'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>
|
|
5852
5890
|
/**
|
|
5853
5891
|
* Disallow a magic number as the `depth` argument in `Array#flat(…).`
|
|
5854
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5892
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-magic-array-flat-depth.md
|
|
5855
5893
|
*/
|
|
5856
5894
|
'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>
|
|
5857
5895
|
/**
|
|
5858
5896
|
* Disallow negated conditions.
|
|
5859
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5897
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-negated-condition.md
|
|
5860
5898
|
*/
|
|
5861
5899
|
'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>
|
|
5862
5900
|
/**
|
|
5863
5901
|
* Disallow negated expression in equality check.
|
|
5864
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5902
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-negation-in-equality-check.md
|
|
5865
5903
|
*/
|
|
5866
5904
|
'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>
|
|
5867
5905
|
/**
|
|
5868
5906
|
* Disallow nested ternary expressions.
|
|
5869
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5907
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-nested-ternary.md
|
|
5870
5908
|
*/
|
|
5871
5909
|
'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>
|
|
5872
5910
|
/**
|
|
5873
5911
|
* Disallow `new Array()`.
|
|
5874
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5912
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-new-array.md
|
|
5875
5913
|
*/
|
|
5876
5914
|
'unicorn/no-new-array'?: Linter.RuleEntry<[]>
|
|
5877
5915
|
/**
|
|
5878
5916
|
* Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
|
|
5879
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5917
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-new-buffer.md
|
|
5880
5918
|
*/
|
|
5881
5919
|
'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>
|
|
5882
5920
|
/**
|
|
5883
5921
|
* Disallow the use of the `null` literal.
|
|
5884
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5922
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-null.md
|
|
5885
5923
|
*/
|
|
5886
5924
|
'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>
|
|
5887
5925
|
/**
|
|
5888
5926
|
* Disallow the use of objects as default parameters.
|
|
5889
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5927
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-object-as-default-parameter.md
|
|
5890
5928
|
*/
|
|
5891
5929
|
'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>
|
|
5892
5930
|
/**
|
|
5893
5931
|
* Disallow `process.exit()`.
|
|
5894
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5932
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-process-exit.md
|
|
5895
5933
|
*/
|
|
5896
5934
|
'unicorn/no-process-exit'?: Linter.RuleEntry<[]>
|
|
5897
5935
|
/**
|
|
5898
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5936
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-reduce
|
|
5899
5937
|
* @deprecated
|
|
5900
5938
|
*/
|
|
5901
5939
|
'unicorn/no-reduce'?: Linter.RuleEntry<[]>
|
|
5902
5940
|
/**
|
|
5903
5941
|
* Disallow passing single-element arrays to `Promise` methods.
|
|
5904
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5942
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-single-promise-in-promise-methods.md
|
|
5905
5943
|
*/
|
|
5906
5944
|
'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
5907
5945
|
/**
|
|
5908
5946
|
* Disallow classes that only have static members.
|
|
5909
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5947
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-static-only-class.md
|
|
5910
5948
|
*/
|
|
5911
5949
|
'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>
|
|
5912
5950
|
/**
|
|
5913
5951
|
* Disallow `then` property.
|
|
5914
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5952
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-thenable.md
|
|
5915
5953
|
*/
|
|
5916
5954
|
'unicorn/no-thenable'?: Linter.RuleEntry<[]>
|
|
5917
5955
|
/**
|
|
5918
5956
|
* Disallow assigning `this` to a variable.
|
|
5919
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5957
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-this-assignment.md
|
|
5920
5958
|
*/
|
|
5921
5959
|
'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>
|
|
5922
5960
|
/**
|
|
5923
5961
|
* Disallow comparing `undefined` using `typeof`.
|
|
5924
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5962
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-typeof-undefined.md
|
|
5925
5963
|
*/
|
|
5926
5964
|
'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>
|
|
5927
5965
|
/**
|
|
5928
5966
|
* Disallow awaiting non-promise values.
|
|
5929
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5967
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unnecessary-await.md
|
|
5930
5968
|
*/
|
|
5931
5969
|
'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>
|
|
5932
5970
|
/**
|
|
5933
5971
|
* Enforce the use of built-in methods instead of unnecessary polyfills.
|
|
5934
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5972
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unnecessary-polyfills.md
|
|
5935
5973
|
*/
|
|
5936
5974
|
'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>
|
|
5937
5975
|
/**
|
|
5938
5976
|
* Disallow unreadable array destructuring.
|
|
5939
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5977
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unreadable-array-destructuring.md
|
|
5940
5978
|
*/
|
|
5941
5979
|
'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>
|
|
5942
5980
|
/**
|
|
5943
5981
|
* Disallow unreadable IIFEs.
|
|
5944
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5982
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unreadable-iife.md
|
|
5945
5983
|
*/
|
|
5946
5984
|
'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>
|
|
5947
5985
|
/**
|
|
5948
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5986
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-unsafe-regex
|
|
5949
5987
|
* @deprecated
|
|
5950
5988
|
*/
|
|
5951
5989
|
'unicorn/no-unsafe-regex'?: Linter.RuleEntry<[]>
|
|
5952
5990
|
/**
|
|
5953
5991
|
* Disallow unused object properties.
|
|
5954
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5992
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unused-properties.md
|
|
5955
5993
|
*/
|
|
5956
5994
|
'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>
|
|
5957
5995
|
/**
|
|
5958
5996
|
* Disallow useless fallback when spreading in object literals.
|
|
5959
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5997
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-fallback-in-spread.md
|
|
5960
5998
|
*/
|
|
5961
5999
|
'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>
|
|
5962
6000
|
/**
|
|
5963
6001
|
* Disallow useless array length check.
|
|
5964
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6002
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-length-check.md
|
|
5965
6003
|
*/
|
|
5966
6004
|
'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>
|
|
5967
6005
|
/**
|
|
5968
6006
|
* Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
|
|
5969
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6007
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-promise-resolve-reject.md
|
|
5970
6008
|
*/
|
|
5971
6009
|
'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>
|
|
5972
6010
|
/**
|
|
5973
6011
|
* Disallow unnecessary spread.
|
|
5974
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6012
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-spread.md
|
|
5975
6013
|
*/
|
|
5976
6014
|
'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>
|
|
5977
6015
|
/**
|
|
5978
6016
|
* Disallow useless case in switch statements.
|
|
5979
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6017
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-switch-case.md
|
|
5980
6018
|
*/
|
|
5981
6019
|
'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>
|
|
5982
6020
|
/**
|
|
5983
6021
|
* Disallow useless `undefined`.
|
|
5984
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6022
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-undefined.md
|
|
5985
6023
|
*/
|
|
5986
6024
|
'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>
|
|
5987
6025
|
/**
|
|
5988
6026
|
* Disallow number literals with zero fractions or dangling dots.
|
|
5989
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6027
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-zero-fractions.md
|
|
5990
6028
|
*/
|
|
5991
6029
|
'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>
|
|
5992
6030
|
/**
|
|
5993
6031
|
* Enforce proper case for numeric literals.
|
|
5994
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6032
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/number-literal-case.md
|
|
5995
6033
|
*/
|
|
5996
6034
|
'unicorn/number-literal-case'?: Linter.RuleEntry<[]>
|
|
5997
6035
|
/**
|
|
5998
6036
|
* Enforce the style of numeric separators by correctly grouping digits.
|
|
5999
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6037
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/numeric-separators-style.md
|
|
6000
6038
|
*/
|
|
6001
6039
|
'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>
|
|
6002
6040
|
/**
|
|
6003
6041
|
* Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
|
|
6004
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6042
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-add-event-listener.md
|
|
6005
6043
|
*/
|
|
6006
6044
|
'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>
|
|
6007
6045
|
/**
|
|
6008
6046
|
* Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
|
|
6009
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6047
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-find.md
|
|
6010
6048
|
*/
|
|
6011
6049
|
'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>
|
|
6012
6050
|
/**
|
|
6013
6051
|
* Prefer `Array#flat()` over legacy techniques to flatten arrays.
|
|
6014
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6052
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-flat.md
|
|
6015
6053
|
*/
|
|
6016
6054
|
'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>
|
|
6017
6055
|
/**
|
|
6018
6056
|
* Prefer `.flatMap(…)` over `.map(…).flat()`.
|
|
6019
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6057
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-flat-map.md
|
|
6020
6058
|
*/
|
|
6021
6059
|
'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>
|
|
6022
6060
|
/**
|
|
6023
6061
|
* Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
|
|
6024
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6062
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-index-of.md
|
|
6025
6063
|
*/
|
|
6026
6064
|
'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>
|
|
6027
6065
|
/**
|
|
6028
6066
|
* Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
|
|
6029
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6067
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-some.md
|
|
6030
6068
|
*/
|
|
6031
6069
|
'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>
|
|
6032
6070
|
/**
|
|
6033
6071
|
* Prefer `.at()` method for index access and `String#charAt()`.
|
|
6034
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6072
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-at.md
|
|
6035
6073
|
*/
|
|
6036
6074
|
'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>
|
|
6037
6075
|
/**
|
|
6038
6076
|
* Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
|
|
6039
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6077
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-blob-reading-methods.md
|
|
6040
6078
|
*/
|
|
6041
6079
|
'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>
|
|
6042
6080
|
/**
|
|
6043
6081
|
* Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
|
|
6044
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6082
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-code-point.md
|
|
6045
6083
|
*/
|
|
6046
6084
|
'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>
|
|
6047
6085
|
/**
|
|
6048
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6086
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-dataset
|
|
6049
6087
|
* @deprecated
|
|
6050
6088
|
*/
|
|
6051
6089
|
'unicorn/prefer-dataset'?: Linter.RuleEntry<[]>
|
|
6052
6090
|
/**
|
|
6053
6091
|
* Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
|
|
6054
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6092
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-date-now.md
|
|
6055
6093
|
*/
|
|
6056
6094
|
'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>
|
|
6057
6095
|
/**
|
|
6058
6096
|
* Prefer default parameters over reassignment.
|
|
6059
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6097
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-default-parameters.md
|
|
6060
6098
|
*/
|
|
6061
6099
|
'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>
|
|
6062
6100
|
/**
|
|
6063
6101
|
* Prefer `Node#append()` over `Node#appendChild()`.
|
|
6064
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6102
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-append.md
|
|
6065
6103
|
*/
|
|
6066
6104
|
'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>
|
|
6067
6105
|
/**
|
|
6068
6106
|
* Prefer using `.dataset` on DOM elements over calling attribute methods.
|
|
6069
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6107
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-dataset.md
|
|
6070
6108
|
*/
|
|
6071
6109
|
'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>
|
|
6072
6110
|
/**
|
|
6073
6111
|
* Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
|
|
6074
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6112
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-remove.md
|
|
6075
6113
|
*/
|
|
6076
6114
|
'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>
|
|
6077
6115
|
/**
|
|
6078
6116
|
* Prefer `.textContent` over `.innerText`.
|
|
6079
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6117
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-text-content.md
|
|
6080
6118
|
*/
|
|
6081
6119
|
'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>
|
|
6082
6120
|
/**
|
|
6083
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6121
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-event-key
|
|
6084
6122
|
* @deprecated
|
|
6085
6123
|
*/
|
|
6086
6124
|
'unicorn/prefer-event-key'?: Linter.RuleEntry<[]>
|
|
6087
6125
|
/**
|
|
6088
6126
|
* Prefer `EventTarget` over `EventEmitter`.
|
|
6089
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6127
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-event-target.md
|
|
6090
6128
|
*/
|
|
6091
6129
|
'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>
|
|
6092
6130
|
/**
|
|
6093
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6131
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-exponentiation-operator
|
|
6094
6132
|
* @deprecated
|
|
6095
6133
|
*/
|
|
6096
6134
|
'unicorn/prefer-exponentiation-operator'?: Linter.RuleEntry<[]>
|
|
6097
6135
|
/**
|
|
6098
6136
|
* Prefer `export…from` when re-exporting.
|
|
6099
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6137
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-export-from.md
|
|
6100
6138
|
*/
|
|
6101
6139
|
'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>
|
|
6102
6140
|
/**
|
|
6103
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6141
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-flat-map
|
|
6104
6142
|
* @deprecated
|
|
6105
6143
|
*/
|
|
6106
6144
|
'unicorn/prefer-flat-map'?: Linter.RuleEntry<[]>
|
|
6145
|
+
/**
|
|
6146
|
+
* Prefer `globalThis` over `window`, `self`, and `global`.
|
|
6147
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-global-this.md
|
|
6148
|
+
*/
|
|
6149
|
+
'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>
|
|
6107
6150
|
/**
|
|
6108
6151
|
* Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
|
|
6109
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6152
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-includes.md
|
|
6110
6153
|
*/
|
|
6111
6154
|
'unicorn/prefer-includes'?: Linter.RuleEntry<[]>
|
|
6112
6155
|
/**
|
|
6113
6156
|
* Prefer reading a JSON file as a buffer.
|
|
6114
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6157
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-json-parse-buffer.md
|
|
6115
6158
|
*/
|
|
6116
6159
|
'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>
|
|
6117
6160
|
/**
|
|
6118
6161
|
* Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
|
|
6119
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6162
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-keyboard-event-key.md
|
|
6120
6163
|
*/
|
|
6121
6164
|
'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>
|
|
6122
6165
|
/**
|
|
6123
6166
|
* Prefer using a logical operator over a ternary.
|
|
6124
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6167
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-logical-operator-over-ternary.md
|
|
6125
6168
|
*/
|
|
6126
6169
|
'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>
|
|
6170
|
+
/**
|
|
6171
|
+
* Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
|
|
6172
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-math-min-max.md
|
|
6173
|
+
*/
|
|
6174
|
+
'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>
|
|
6127
6175
|
/**
|
|
6128
6176
|
* Enforce the use of `Math.trunc` instead of bitwise operators.
|
|
6129
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6177
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-math-trunc.md
|
|
6130
6178
|
*/
|
|
6131
6179
|
'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>
|
|
6132
6180
|
/**
|
|
6133
6181
|
* Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
|
|
6134
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6182
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-modern-dom-apis.md
|
|
6135
6183
|
*/
|
|
6136
6184
|
'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>
|
|
6137
6185
|
/**
|
|
6138
6186
|
* Prefer modern `Math` APIs over legacy patterns.
|
|
6139
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6187
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-modern-math-apis.md
|
|
6140
6188
|
*/
|
|
6141
6189
|
'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>
|
|
6142
6190
|
/**
|
|
6143
6191
|
* Prefer JavaScript modules (ESM) over CommonJS.
|
|
6144
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6192
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-module.md
|
|
6145
6193
|
*/
|
|
6146
6194
|
'unicorn/prefer-module'?: Linter.RuleEntry<[]>
|
|
6147
6195
|
/**
|
|
6148
6196
|
* Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
|
|
6149
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6197
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-native-coercion-functions.md
|
|
6150
6198
|
*/
|
|
6151
6199
|
'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>
|
|
6152
6200
|
/**
|
|
6153
6201
|
* Prefer negative index over `.length - index` when possible.
|
|
6154
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6202
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-negative-index.md
|
|
6155
6203
|
*/
|
|
6156
6204
|
'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>
|
|
6157
6205
|
/**
|
|
6158
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6206
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-node-append
|
|
6159
6207
|
* @deprecated
|
|
6160
6208
|
*/
|
|
6161
6209
|
'unicorn/prefer-node-append'?: Linter.RuleEntry<[]>
|
|
6162
6210
|
/**
|
|
6163
6211
|
* Prefer using the `node:` protocol when importing Node.js builtin modules.
|
|
6164
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6212
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-node-protocol.md
|
|
6165
6213
|
*/
|
|
6166
6214
|
'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>
|
|
6167
6215
|
/**
|
|
6168
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6216
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-node-remove
|
|
6169
6217
|
* @deprecated
|
|
6170
6218
|
*/
|
|
6171
6219
|
'unicorn/prefer-node-remove'?: Linter.RuleEntry<[]>
|
|
6172
6220
|
/**
|
|
6173
6221
|
* Prefer `Number` static properties over global ones.
|
|
6174
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6222
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-number-properties.md
|
|
6175
6223
|
*/
|
|
6176
6224
|
'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>
|
|
6177
6225
|
/**
|
|
6178
6226
|
* Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
|
|
6179
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6227
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-object-from-entries.md
|
|
6180
6228
|
*/
|
|
6181
6229
|
'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>
|
|
6182
6230
|
/**
|
|
6183
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6231
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-object-has-own
|
|
6184
6232
|
* @deprecated
|
|
6185
6233
|
*/
|
|
6186
6234
|
'unicorn/prefer-object-has-own'?: Linter.RuleEntry<[]>
|
|
6187
6235
|
/**
|
|
6188
6236
|
* Prefer omitting the `catch` binding parameter.
|
|
6189
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6237
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-optional-catch-binding.md
|
|
6190
6238
|
*/
|
|
6191
6239
|
'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>
|
|
6192
6240
|
/**
|
|
6193
6241
|
* Prefer borrowing methods from the prototype instead of the instance.
|
|
6194
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6242
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-prototype-methods.md
|
|
6195
6243
|
*/
|
|
6196
6244
|
'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>
|
|
6197
6245
|
/**
|
|
6198
|
-
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()`.
|
|
6199
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6246
|
+
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
|
|
6247
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-query-selector.md
|
|
6200
6248
|
*/
|
|
6201
6249
|
'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>
|
|
6202
6250
|
/**
|
|
6203
6251
|
* Prefer `Reflect.apply()` over `Function#apply()`.
|
|
6204
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6252
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-reflect-apply.md
|
|
6205
6253
|
*/
|
|
6206
6254
|
'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>
|
|
6207
6255
|
/**
|
|
6208
6256
|
* Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
|
|
6209
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6257
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-regexp-test.md
|
|
6210
6258
|
*/
|
|
6211
6259
|
'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>
|
|
6212
6260
|
/**
|
|
6213
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6261
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-replace-all
|
|
6214
6262
|
* @deprecated
|
|
6215
6263
|
*/
|
|
6216
6264
|
'unicorn/prefer-replace-all'?: Linter.RuleEntry<[]>
|
|
6217
6265
|
/**
|
|
6218
6266
|
* Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
|
|
6219
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6267
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-set-has.md
|
|
6220
6268
|
*/
|
|
6221
6269
|
'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>
|
|
6222
6270
|
/**
|
|
6223
6271
|
* Prefer using `Set#size` instead of `Array#length`.
|
|
6224
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6272
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-set-size.md
|
|
6225
6273
|
*/
|
|
6226
6274
|
'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>
|
|
6227
6275
|
/**
|
|
6228
6276
|
* Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
|
|
6229
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6277
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-spread.md
|
|
6230
6278
|
*/
|
|
6231
6279
|
'unicorn/prefer-spread'?: Linter.RuleEntry<[]>
|
|
6232
6280
|
/**
|
|
6233
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6281
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-starts-ends-with
|
|
6234
6282
|
* @deprecated
|
|
6235
6283
|
*/
|
|
6236
6284
|
'unicorn/prefer-starts-ends-with'?: Linter.RuleEntry<[]>
|
|
6237
6285
|
/**
|
|
6238
6286
|
* Prefer using the `String.raw` tag to avoid escaping `\`.
|
|
6239
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6287
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-raw.md
|
|
6240
6288
|
*/
|
|
6241
6289
|
'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>
|
|
6242
6290
|
/**
|
|
6243
6291
|
* Prefer `String#replaceAll()` over regex searches with the global flag.
|
|
6244
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6292
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-replace-all.md
|
|
6245
6293
|
*/
|
|
6246
6294
|
'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>
|
|
6247
6295
|
/**
|
|
6248
6296
|
* Prefer `String#slice()` over `String#substr()` and `String#substring()`.
|
|
6249
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6297
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-slice.md
|
|
6250
6298
|
*/
|
|
6251
6299
|
'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>
|
|
6252
6300
|
/**
|
|
6253
6301
|
* Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
|
|
6254
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6302
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-starts-ends-with.md
|
|
6255
6303
|
*/
|
|
6256
6304
|
'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>
|
|
6257
6305
|
/**
|
|
6258
6306
|
* Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
|
|
6259
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6307
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-trim-start-end.md
|
|
6260
6308
|
*/
|
|
6261
6309
|
'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>
|
|
6262
6310
|
/**
|
|
6263
6311
|
* Prefer using `structuredClone` to create a deep clone.
|
|
6264
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6312
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-structured-clone.md
|
|
6265
6313
|
*/
|
|
6266
6314
|
'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>
|
|
6267
6315
|
/**
|
|
6268
6316
|
* Prefer `switch` over multiple `else-if`.
|
|
6269
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6317
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-switch.md
|
|
6270
6318
|
*/
|
|
6271
6319
|
'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>
|
|
6272
6320
|
/**
|
|
6273
6321
|
* Prefer ternary expressions over simple `if-else` statements.
|
|
6274
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6322
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-ternary.md
|
|
6275
6323
|
*/
|
|
6276
6324
|
'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>
|
|
6277
6325
|
/**
|
|
6278
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6326
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-text-content
|
|
6279
6327
|
* @deprecated
|
|
6280
6328
|
*/
|
|
6281
6329
|
'unicorn/prefer-text-content'?: Linter.RuleEntry<[]>
|
|
6282
6330
|
/**
|
|
6283
6331
|
* Prefer top-level await over top-level promises and async function calls.
|
|
6284
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6332
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-top-level-await.md
|
|
6285
6333
|
*/
|
|
6286
6334
|
'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>
|
|
6287
6335
|
/**
|
|
6288
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6336
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-trim-start-end
|
|
6289
6337
|
* @deprecated
|
|
6290
6338
|
*/
|
|
6291
6339
|
'unicorn/prefer-trim-start-end'?: Linter.RuleEntry<[]>
|
|
6292
6340
|
/**
|
|
6293
6341
|
* Enforce throwing `TypeError` in type checking conditions.
|
|
6294
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6342
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-type-error.md
|
|
6295
6343
|
*/
|
|
6296
6344
|
'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>
|
|
6297
6345
|
/**
|
|
6298
6346
|
* Prevent abbreviations.
|
|
6299
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6347
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prevent-abbreviations.md
|
|
6300
6348
|
*/
|
|
6301
6349
|
'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>
|
|
6302
6350
|
/**
|
|
6303
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6351
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#regex-shorthand
|
|
6304
6352
|
* @deprecated
|
|
6305
6353
|
*/
|
|
6306
6354
|
'unicorn/regex-shorthand'?: Linter.RuleEntry<[]>
|
|
6307
6355
|
/**
|
|
6308
6356
|
* Enforce consistent relative URL style.
|
|
6309
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6357
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/relative-url-style.md
|
|
6310
6358
|
*/
|
|
6311
6359
|
'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>
|
|
6312
6360
|
/**
|
|
6313
6361
|
* Enforce using the separator argument with `Array#join()`.
|
|
6314
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6362
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-array-join-separator.md
|
|
6315
6363
|
*/
|
|
6316
6364
|
'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>
|
|
6317
6365
|
/**
|
|
6318
6366
|
* Enforce using the digits argument with `Number#toFixed()`.
|
|
6319
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6367
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-number-to-fixed-digits-argument.md
|
|
6320
6368
|
*/
|
|
6321
6369
|
'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>
|
|
6322
6370
|
/**
|
|
6323
6371
|
* Enforce using the `targetOrigin` argument with `window.postMessage()`.
|
|
6324
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6372
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-post-message-target-origin.md
|
|
6325
6373
|
*/
|
|
6326
6374
|
'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>
|
|
6327
6375
|
/**
|
|
6328
6376
|
* Enforce better string content.
|
|
6329
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6377
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/string-content.md
|
|
6330
6378
|
*/
|
|
6331
6379
|
'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>
|
|
6332
6380
|
/**
|
|
6333
6381
|
* Enforce consistent brace style for `case` clauses.
|
|
6334
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6382
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/switch-case-braces.md
|
|
6335
6383
|
*/
|
|
6336
6384
|
'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>
|
|
6337
6385
|
/**
|
|
6338
6386
|
* Fix whitespace-insensitive template indentation.
|
|
6339
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6387
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/template-indent.md
|
|
6340
6388
|
*/
|
|
6341
6389
|
'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>
|
|
6342
6390
|
/**
|
|
6343
6391
|
* Enforce consistent case for text encoding identifiers.
|
|
6344
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6392
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/text-encoding-identifier-case.md
|
|
6345
6393
|
*/
|
|
6346
6394
|
'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>
|
|
6347
6395
|
/**
|
|
6348
6396
|
* Require `new` when creating an error.
|
|
6349
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6397
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/throw-new-error.md
|
|
6350
6398
|
*/
|
|
6351
6399
|
'unicorn/throw-new-error'?: Linter.RuleEntry<[]>
|
|
6352
6400
|
/**
|
|
@@ -6730,6 +6778,11 @@ interface RuleOptions {
|
|
|
6730
6778
|
* @see https://eslint.vuejs.org/rules/no-deprecated-data-object-declaration.html
|
|
6731
6779
|
*/
|
|
6732
6780
|
'vue/no-deprecated-data-object-declaration'?: Linter.RuleEntry<[]>
|
|
6781
|
+
/**
|
|
6782
|
+
* disallow using deprecated `$delete` and `$set` (in Vue.js 3.0.0+)
|
|
6783
|
+
* @see https://eslint.vuejs.org/rules/no-deprecated-delete-set.html
|
|
6784
|
+
*/
|
|
6785
|
+
'vue/no-deprecated-delete-set'?: Linter.RuleEntry<[]>
|
|
6733
6786
|
/**
|
|
6734
6787
|
* disallow using deprecated `destroyed` and `beforeDestroy` lifecycle hooks (in Vue.js 3.0.0+)
|
|
6735
6788
|
* @see https://eslint.vuejs.org/rules/no-deprecated-destroyed-lifecycle.html
|
|
@@ -7875,6 +7928,12 @@ type AstroSemi = ([]|["never"]|["never", {
|
|
|
7875
7928
|
omitLastInOneLineBlock?: boolean
|
|
7876
7929
|
omitLastInOneLineClassBody?: boolean
|
|
7877
7930
|
}])
|
|
7931
|
+
// ----- astro/sort-attributes -----
|
|
7932
|
+
type AstroSortAttributes = []|[{
|
|
7933
|
+
type?: ("alphabetical" | "line-length")
|
|
7934
|
+
ignoreCase?: boolean
|
|
7935
|
+
order?: ("asc" | "desc")
|
|
7936
|
+
}]
|
|
7878
7937
|
// ----- block-spacing -----
|
|
7879
7938
|
type BlockSpacing = []|[("always" | "never")]
|
|
7880
7939
|
// ----- brace-style -----
|
|
@@ -7939,6 +7998,7 @@ type CommaStyle = []|[("first" | "last")]|[("first" | "last"), {
|
|
|
7939
7998
|
type Complexity = []|[(number | {
|
|
7940
7999
|
maximum?: number
|
|
7941
8000
|
max?: number
|
|
8001
|
+
variant?: ("classic" | "modified")
|
|
7942
8002
|
})]
|
|
7943
8003
|
// ----- computed-property-spacing -----
|
|
7944
8004
|
type ComputedPropertySpacing = []|[("always" | "never")]|[("always" | "never"), {
|
|
@@ -8688,6 +8748,7 @@ type JsdocRequireParam = []|[{
|
|
|
8688
8748
|
enableRestElementFixer?: boolean
|
|
8689
8749
|
enableRootFixer?: boolean
|
|
8690
8750
|
exemptedBy?: string[]
|
|
8751
|
+
ignoreWhenAllParamsMissing?: boolean
|
|
8691
8752
|
unnamedRootBase?: string[]
|
|
8692
8753
|
useDefaultObjectProperties?: boolean
|
|
8693
8754
|
}]
|
|
@@ -10020,7 +10081,7 @@ type NodeHashbang = []|[{
|
|
|
10020
10081
|
// ----- node/no-deprecated-api -----
|
|
10021
10082
|
type NodeNoDeprecatedApi = []|[{
|
|
10022
10083
|
version?: string
|
|
10023
|
-
ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "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.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext")[]
|
|
10084
|
+
ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "repl.REPLServer" | "repl.Recoverable" | "repl.REPL_MODE_MAGIC" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "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.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext" | "zlib.BrotliCompress()" | "zlib.BrotliDecompress()" | "zlib.Deflate()" | "zlib.DeflateRaw()" | "zlib.Gunzip()" | "zlib.Gzip()" | "zlib.Inflate()" | "zlib.InflateRaw()" | "zlib.Unzip()")[]
|
|
10024
10085
|
ignoreGlobalItems?: ("Buffer()" | "new Buffer()" | "COUNTER_NET_SERVER_CONNECTION" | "COUNTER_NET_SERVER_CONNECTION_CLOSE" | "COUNTER_HTTP_SERVER_REQUEST" | "COUNTER_HTTP_SERVER_RESPONSE" | "COUNTER_HTTP_CLIENT_REQUEST" | "COUNTER_HTTP_CLIENT_RESPONSE" | "GLOBAL" | "Intl.v8BreakIterator" | "require.extensions" | "root" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport")[]
|
|
10025
10086
|
ignoreIndirectDependencies?: boolean
|
|
10026
10087
|
}]
|
|
@@ -10078,6 +10139,7 @@ type NodeNoMissingImport = []|[{
|
|
|
10078
10139
|
allowModules?: string[]
|
|
10079
10140
|
resolvePaths?: string[]
|
|
10080
10141
|
tryExtensions?: string[]
|
|
10142
|
+
ignoreTypeImport?: boolean
|
|
10081
10143
|
tsconfigPath?: string
|
|
10082
10144
|
typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
|
|
10083
10145
|
}]
|
|
@@ -10094,6 +10156,10 @@ type NodeNoMixedRequires = []|[(boolean | {
|
|
|
10094
10156
|
grouping?: boolean
|
|
10095
10157
|
allowCall?: boolean
|
|
10096
10158
|
})]
|
|
10159
|
+
// ----- node/no-process-env -----
|
|
10160
|
+
type NodeNoProcessEnv = []|[{
|
|
10161
|
+
allowedVariables?: string[]
|
|
10162
|
+
}]
|
|
10097
10163
|
// ----- node/no-restricted-import -----
|
|
10098
10164
|
type NodeNoRestrictedImport = []|[(string | {
|
|
10099
10165
|
name: (string | string[])
|
|
@@ -10188,7 +10254,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
10188
10254
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
10189
10255
|
version?: string
|
|
10190
10256
|
allowExperimental?: boolean
|
|
10191
|
-
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" | "CustomEvent" | "Event" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "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.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.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.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.createRequire" | "module.createRequireFromPath" | "module.isBuiltin" | "module.register" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.isBuiltin" | "module.Module.register" | "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.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" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.test.isSea" | "sea.test.getAsset" | "sea.test.getAssetAsBlob" | "sea.test.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "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.run" | "test.skip" | "test.todo" | "test.only" | "test.describe" | "test.describe.skip" | "test.describe.todo" | "test.describe.only" | "test.it" | "test.it.skip" | "test.it.todo" | "test.it.only" | "test.suite" | "test.suite.skip" | "test.suite.todo" | "test.suite.only" | "test.before" | "test.after" | "test.beforeEach" | "test.afterEach" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.MockFunctionContext" | "test.MockModuleContext" | "test.MockTracker" | "test.MockTimers" | "test.TestsStream" | "test.TestContext" | "test.SuiteContext" | "test.test.run" | "test.test.skip" | "test.test.todo" | "test.test.only" | "test.test.describe" | "test.test.it" | "test.test.suite" | "test.test.before" | "test.test.after" | "test.test.beforeEach" | "test.test.afterEach" | "test.test.snapshot" | "test.test.MockFunctionContext" | "test.test.MockModuleContext" | "test.test.MockTracker" | "test.test.MockTimers" | "test.test.TestsStream" | "test.test.TestContext" | "test.test.SuiteContext" | "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.getSystemErrorName" | "util.getSystemErrorMap" | "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.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.BrotliDecompress" | "zlib.Deflate" | "zlib.DeflateRaw" | "zlib.Gunzip" | "zlib.Gzip" | "zlib.Inflate" | "zlib.InflateRaw" | "zlib.Unzip" | "zlib")[]
|
|
10257
|
+
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" | "CustomEvent" | "Event" | "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.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.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.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.Network.loadingFinished" | "inspector.Network.loadingFailed" | "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.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "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.test.isSea" | "sea.test.getAsset" | "sea.test.getAssetAsBlob" | "sea.test.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.run" | "test.skip" | "test.todo" | "test.only" | "test.describe" | "test.describe.skip" | "test.describe.todo" | "test.describe.only" | "test.it" | "test.it.skip" | "test.it.todo" | "test.it.only" | "test.suite" | "test.suite.skip" | "test.suite.todo" | "test.suite.only" | "test.before" | "test.after" | "test.beforeEach" | "test.afterEach" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.MockFunctionContext" | "test.MockModuleContext" | "test.MockTracker" | "test.MockTimers" | "test.TestsStream" | "test.TestContext" | "test.SuiteContext" | "test.test.run" | "test.test.skip" | "test.test.todo" | "test.test.only" | "test.test.describe" | "test.test.it" | "test.test.suite" | "test.test.before" | "test.test.after" | "test.test.beforeEach" | "test.test.afterEach" | "test.test.snapshot" | "test.test.MockFunctionContext" | "test.test.MockModuleContext" | "test.test.MockTracker" | "test.test.MockTimers" | "test.test.TestsStream" | "test.test.TestContext" | "test.test.SuiteContext" | "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.getSystemErrorName" | "util.getSystemErrorMap" | "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.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")[]
|
|
10192
10258
|
}]
|
|
10193
10259
|
// ----- node/prefer-global/buffer -----
|
|
10194
10260
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -10335,8 +10401,12 @@ type PerfectionistSortArrayIncludes = []|[{
|
|
|
10335
10401
|
|
|
10336
10402
|
order?: ("asc" | "desc")
|
|
10337
10403
|
|
|
10404
|
+
matcher?: ("minimatch" | "regex")
|
|
10405
|
+
|
|
10338
10406
|
ignoreCase?: boolean
|
|
10339
10407
|
|
|
10408
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10409
|
+
|
|
10340
10410
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
10341
10411
|
|
|
10342
10412
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -10350,8 +10420,12 @@ type PerfectionistSortAstroAttributes = []|[{
|
|
|
10350
10420
|
|
|
10351
10421
|
order?: ("asc" | "desc")
|
|
10352
10422
|
|
|
10423
|
+
matcher?: ("minimatch" | "regex")
|
|
10424
|
+
|
|
10353
10425
|
ignoreCase?: boolean
|
|
10354
10426
|
|
|
10427
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10428
|
+
|
|
10355
10429
|
groups?: (string | string[])[]
|
|
10356
10430
|
|
|
10357
10431
|
customGroups?: {
|
|
@@ -10365,8 +10439,12 @@ type PerfectionistSortClasses = []|[{
|
|
|
10365
10439
|
|
|
10366
10440
|
order?: ("asc" | "desc")
|
|
10367
10441
|
|
|
10442
|
+
matcher?: ("minimatch" | "regex")
|
|
10443
|
+
|
|
10368
10444
|
ignoreCase?: boolean
|
|
10369
10445
|
|
|
10446
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10447
|
+
|
|
10370
10448
|
partitionByComment?: (string[] | boolean | string)
|
|
10371
10449
|
|
|
10372
10450
|
groups?: (string | string[])[]
|
|
@@ -10388,6 +10466,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
10388
10466
|
|
|
10389
10467
|
elementNamePattern?: string
|
|
10390
10468
|
|
|
10469
|
+
elementValuePattern?: string
|
|
10470
|
+
|
|
10391
10471
|
decoratorNamePattern?: string
|
|
10392
10472
|
}[]
|
|
10393
10473
|
} | {
|
|
@@ -10404,6 +10484,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
10404
10484
|
|
|
10405
10485
|
elementNamePattern?: string
|
|
10406
10486
|
|
|
10487
|
+
elementValuePattern?: string
|
|
10488
|
+
|
|
10407
10489
|
decoratorNamePattern?: string
|
|
10408
10490
|
})[])
|
|
10409
10491
|
}]
|
|
@@ -10414,8 +10496,12 @@ type PerfectionistSortEnums = []|[{
|
|
|
10414
10496
|
|
|
10415
10497
|
order?: ("asc" | "desc")
|
|
10416
10498
|
|
|
10499
|
+
matcher?: ("minimatch" | "regex")
|
|
10500
|
+
|
|
10417
10501
|
ignoreCase?: boolean
|
|
10418
10502
|
|
|
10503
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10504
|
+
|
|
10419
10505
|
sortByValue?: boolean
|
|
10420
10506
|
|
|
10421
10507
|
forceNumericSort?: boolean
|
|
@@ -10431,8 +10517,12 @@ type PerfectionistSortExports = []|[{
|
|
|
10431
10517
|
|
|
10432
10518
|
order?: ("asc" | "desc")
|
|
10433
10519
|
|
|
10520
|
+
matcher?: ("minimatch" | "regex")
|
|
10521
|
+
|
|
10434
10522
|
ignoreCase?: boolean
|
|
10435
10523
|
|
|
10524
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10525
|
+
|
|
10436
10526
|
partitionByComment?: (string[] | boolean | string)
|
|
10437
10527
|
|
|
10438
10528
|
partitionByNewLine?: boolean
|
|
@@ -10447,8 +10537,12 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
10447
10537
|
|
|
10448
10538
|
order?: ("asc" | "desc")
|
|
10449
10539
|
|
|
10540
|
+
matcher?: ("minimatch" | "regex")
|
|
10541
|
+
|
|
10450
10542
|
ignoreCase?: boolean
|
|
10451
10543
|
|
|
10544
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10545
|
+
|
|
10452
10546
|
internalPattern?: string[]
|
|
10453
10547
|
|
|
10454
10548
|
sortSideEffects?: boolean
|
|
@@ -10484,8 +10578,12 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
10484
10578
|
|
|
10485
10579
|
order?: ("asc" | "desc")
|
|
10486
10580
|
|
|
10581
|
+
matcher?: ("minimatch" | "regex")
|
|
10582
|
+
|
|
10487
10583
|
ignoreCase?: boolean
|
|
10488
10584
|
|
|
10585
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10586
|
+
|
|
10489
10587
|
ignorePattern?: string[]
|
|
10490
10588
|
|
|
10491
10589
|
partitionByComment?: (boolean | string | string[])
|
|
@@ -10507,8 +10605,12 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
10507
10605
|
|
|
10508
10606
|
order?: ("asc" | "desc")
|
|
10509
10607
|
|
|
10608
|
+
matcher?: ("minimatch" | "regex")
|
|
10609
|
+
|
|
10510
10610
|
ignoreCase?: boolean
|
|
10511
10611
|
|
|
10612
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10613
|
+
|
|
10512
10614
|
groups?: (string | string[])[]
|
|
10513
10615
|
|
|
10514
10616
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -10522,8 +10624,12 @@ type PerfectionistSortJsxProps = []|[{
|
|
|
10522
10624
|
|
|
10523
10625
|
order?: ("asc" | "desc")
|
|
10524
10626
|
|
|
10627
|
+
matcher?: ("minimatch" | "regex")
|
|
10628
|
+
|
|
10525
10629
|
ignoreCase?: boolean
|
|
10526
10630
|
|
|
10631
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10632
|
+
|
|
10527
10633
|
ignorePattern?: string[]
|
|
10528
10634
|
|
|
10529
10635
|
groups?: (string | string[])[]
|
|
@@ -10539,8 +10645,12 @@ type PerfectionistSortMaps = []|[{
|
|
|
10539
10645
|
|
|
10540
10646
|
order?: ("asc" | "desc")
|
|
10541
10647
|
|
|
10648
|
+
matcher?: ("minimatch" | "regex")
|
|
10649
|
+
|
|
10542
10650
|
ignoreCase?: boolean
|
|
10543
10651
|
|
|
10652
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10653
|
+
|
|
10544
10654
|
partitionByComment?: (string[] | boolean | string)
|
|
10545
10655
|
|
|
10546
10656
|
partitionByNewLine?: boolean
|
|
@@ -10552,8 +10662,12 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
10552
10662
|
|
|
10553
10663
|
order?: ("asc" | "desc")
|
|
10554
10664
|
|
|
10665
|
+
matcher?: ("minimatch" | "regex")
|
|
10666
|
+
|
|
10555
10667
|
ignoreCase?: boolean
|
|
10556
10668
|
|
|
10669
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10670
|
+
|
|
10557
10671
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10558
10672
|
|
|
10559
10673
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -10567,8 +10681,12 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
10567
10681
|
|
|
10568
10682
|
order?: ("asc" | "desc")
|
|
10569
10683
|
|
|
10684
|
+
matcher?: ("minimatch" | "regex")
|
|
10685
|
+
|
|
10570
10686
|
ignoreCase?: boolean
|
|
10571
10687
|
|
|
10688
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10689
|
+
|
|
10572
10690
|
ignoreAlias?: boolean
|
|
10573
10691
|
|
|
10574
10692
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
@@ -10584,8 +10702,12 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
10584
10702
|
|
|
10585
10703
|
order?: ("asc" | "desc")
|
|
10586
10704
|
|
|
10705
|
+
matcher?: ("minimatch" | "regex")
|
|
10706
|
+
|
|
10587
10707
|
ignoreCase?: boolean
|
|
10588
10708
|
|
|
10709
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10710
|
+
|
|
10589
10711
|
partitionByComment?: (string[] | boolean | string)
|
|
10590
10712
|
|
|
10591
10713
|
partitionByNewLine?: boolean
|
|
@@ -10605,8 +10727,12 @@ type PerfectionistSortObjects = []|[{
|
|
|
10605
10727
|
|
|
10606
10728
|
order?: ("asc" | "desc")
|
|
10607
10729
|
|
|
10730
|
+
matcher?: ("minimatch" | "regex")
|
|
10731
|
+
|
|
10608
10732
|
ignoreCase?: boolean
|
|
10609
10733
|
|
|
10734
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10735
|
+
|
|
10610
10736
|
partitionByComment?: (string[] | boolean | string)
|
|
10611
10737
|
|
|
10612
10738
|
partitionByNewLine?: boolean
|
|
@@ -10630,8 +10756,12 @@ type PerfectionistSortSets = []|[{
|
|
|
10630
10756
|
|
|
10631
10757
|
order?: ("asc" | "desc")
|
|
10632
10758
|
|
|
10759
|
+
matcher?: ("minimatch" | "regex")
|
|
10760
|
+
|
|
10633
10761
|
ignoreCase?: boolean
|
|
10634
10762
|
|
|
10763
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10764
|
+
|
|
10635
10765
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
10636
10766
|
|
|
10637
10767
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -10645,8 +10775,12 @@ type PerfectionistSortSvelteAttributes = []|[{
|
|
|
10645
10775
|
|
|
10646
10776
|
order?: ("asc" | "desc")
|
|
10647
10777
|
|
|
10778
|
+
matcher?: ("minimatch" | "regex")
|
|
10779
|
+
|
|
10648
10780
|
ignoreCase?: boolean
|
|
10649
10781
|
|
|
10782
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10783
|
+
|
|
10650
10784
|
groups?: (string | string[])[]
|
|
10651
10785
|
|
|
10652
10786
|
customGroups?: {
|
|
@@ -10661,6 +10795,8 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
10661
10795
|
order?: ("asc" | "desc")
|
|
10662
10796
|
|
|
10663
10797
|
ignoreCase?: boolean
|
|
10798
|
+
|
|
10799
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10664
10800
|
}]
|
|
10665
10801
|
// ----- perfectionist/sort-union-types -----
|
|
10666
10802
|
type PerfectionistSortUnionTypes = []|[{
|
|
@@ -10669,8 +10805,12 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
10669
10805
|
|
|
10670
10806
|
order?: ("asc" | "desc")
|
|
10671
10807
|
|
|
10808
|
+
matcher?: ("minimatch" | "regex")
|
|
10809
|
+
|
|
10672
10810
|
ignoreCase?: boolean
|
|
10673
10811
|
|
|
10812
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10813
|
+
|
|
10674
10814
|
groups?: (string | string[])[]
|
|
10675
10815
|
|
|
10676
10816
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -10684,8 +10824,12 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
10684
10824
|
|
|
10685
10825
|
order?: ("asc" | "desc")
|
|
10686
10826
|
|
|
10827
|
+
matcher?: ("minimatch" | "regex")
|
|
10828
|
+
|
|
10687
10829
|
ignoreCase?: boolean
|
|
10688
10830
|
|
|
10831
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10832
|
+
|
|
10689
10833
|
partitionByComment?: (string[] | boolean | string)
|
|
10690
10834
|
|
|
10691
10835
|
partitionByNewLine?: boolean
|
|
@@ -10697,8 +10841,12 @@ type PerfectionistSortVueAttributes = []|[{
|
|
|
10697
10841
|
|
|
10698
10842
|
order?: ("asc" | "desc")
|
|
10699
10843
|
|
|
10844
|
+
matcher?: ("minimatch" | "regex")
|
|
10845
|
+
|
|
10700
10846
|
ignoreCase?: boolean
|
|
10701
10847
|
|
|
10848
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10849
|
+
|
|
10702
10850
|
groups?: (string | string[])[]
|
|
10703
10851
|
|
|
10704
10852
|
customGroups?: {
|
|
@@ -10798,6 +10946,10 @@ type ReactRefreshOnlyExportComponents = []|[{
|
|
|
10798
10946
|
checkJS?: boolean
|
|
10799
10947
|
allowExportNames?: string[]
|
|
10800
10948
|
}]
|
|
10949
|
+
// ----- react/no-useless-fragment -----
|
|
10950
|
+
type ReactNoUselessFragment = []|[{
|
|
10951
|
+
allowExpressions?: boolean
|
|
10952
|
+
}]
|
|
10801
10953
|
// ----- regexp/hexadecimal-escape -----
|
|
10802
10954
|
type RegexpHexadecimalEscape = []|[("always" | "never")]
|
|
10803
10955
|
// ----- regexp/letter-case -----
|
|
@@ -11124,6 +11276,127 @@ type StyleCommaStyle = []|[("first" | "last")]|[("first" | "last"), {
|
|
|
11124
11276
|
type StyleComputedPropertySpacing = []|[("always" | "never")]|[("always" | "never"), {
|
|
11125
11277
|
enforceForClassMembers?: boolean
|
|
11126
11278
|
}]
|
|
11279
|
+
// ----- style/curly-newline -----
|
|
11280
|
+
type StyleCurlyNewline = []|[(("always" | "never") | {
|
|
11281
|
+
IfStatementConsequent?: (("always" | "never") | {
|
|
11282
|
+
multiline?: boolean
|
|
11283
|
+
minElements?: number
|
|
11284
|
+
consistent?: boolean
|
|
11285
|
+
})
|
|
11286
|
+
IfStatementAlternative?: (("always" | "never") | {
|
|
11287
|
+
multiline?: boolean
|
|
11288
|
+
minElements?: number
|
|
11289
|
+
consistent?: boolean
|
|
11290
|
+
})
|
|
11291
|
+
DoWhileStatement?: (("always" | "never") | {
|
|
11292
|
+
multiline?: boolean
|
|
11293
|
+
minElements?: number
|
|
11294
|
+
consistent?: boolean
|
|
11295
|
+
})
|
|
11296
|
+
ForInStatement?: (("always" | "never") | {
|
|
11297
|
+
multiline?: boolean
|
|
11298
|
+
minElements?: number
|
|
11299
|
+
consistent?: boolean
|
|
11300
|
+
})
|
|
11301
|
+
ForOfStatement?: (("always" | "never") | {
|
|
11302
|
+
multiline?: boolean
|
|
11303
|
+
minElements?: number
|
|
11304
|
+
consistent?: boolean
|
|
11305
|
+
})
|
|
11306
|
+
ForStatement?: (("always" | "never") | {
|
|
11307
|
+
multiline?: boolean
|
|
11308
|
+
minElements?: number
|
|
11309
|
+
consistent?: boolean
|
|
11310
|
+
})
|
|
11311
|
+
WhileStatement?: (("always" | "never") | {
|
|
11312
|
+
multiline?: boolean
|
|
11313
|
+
minElements?: number
|
|
11314
|
+
consistent?: boolean
|
|
11315
|
+
})
|
|
11316
|
+
SwitchStatement?: (("always" | "never") | {
|
|
11317
|
+
multiline?: boolean
|
|
11318
|
+
minElements?: number
|
|
11319
|
+
consistent?: boolean
|
|
11320
|
+
})
|
|
11321
|
+
SwitchCase?: (("always" | "never") | {
|
|
11322
|
+
multiline?: boolean
|
|
11323
|
+
minElements?: number
|
|
11324
|
+
consistent?: boolean
|
|
11325
|
+
})
|
|
11326
|
+
TryStatementBlock?: (("always" | "never") | {
|
|
11327
|
+
multiline?: boolean
|
|
11328
|
+
minElements?: number
|
|
11329
|
+
consistent?: boolean
|
|
11330
|
+
})
|
|
11331
|
+
TryStatementHandler?: (("always" | "never") | {
|
|
11332
|
+
multiline?: boolean
|
|
11333
|
+
minElements?: number
|
|
11334
|
+
consistent?: boolean
|
|
11335
|
+
})
|
|
11336
|
+
TryStatementFinalizer?: (("always" | "never") | {
|
|
11337
|
+
multiline?: boolean
|
|
11338
|
+
minElements?: number
|
|
11339
|
+
consistent?: boolean
|
|
11340
|
+
})
|
|
11341
|
+
BlockStatement?: (("always" | "never") | {
|
|
11342
|
+
multiline?: boolean
|
|
11343
|
+
minElements?: number
|
|
11344
|
+
consistent?: boolean
|
|
11345
|
+
})
|
|
11346
|
+
ArrowFunctionExpression?: (("always" | "never") | {
|
|
11347
|
+
multiline?: boolean
|
|
11348
|
+
minElements?: number
|
|
11349
|
+
consistent?: boolean
|
|
11350
|
+
})
|
|
11351
|
+
FunctionDeclaration?: (("always" | "never") | {
|
|
11352
|
+
multiline?: boolean
|
|
11353
|
+
minElements?: number
|
|
11354
|
+
consistent?: boolean
|
|
11355
|
+
})
|
|
11356
|
+
FunctionExpression?: (("always" | "never") | {
|
|
11357
|
+
multiline?: boolean
|
|
11358
|
+
minElements?: number
|
|
11359
|
+
consistent?: boolean
|
|
11360
|
+
})
|
|
11361
|
+
Property?: (("always" | "never") | {
|
|
11362
|
+
multiline?: boolean
|
|
11363
|
+
minElements?: number
|
|
11364
|
+
consistent?: boolean
|
|
11365
|
+
})
|
|
11366
|
+
ClassBody?: (("always" | "never") | {
|
|
11367
|
+
multiline?: boolean
|
|
11368
|
+
minElements?: number
|
|
11369
|
+
consistent?: boolean
|
|
11370
|
+
})
|
|
11371
|
+
StaticBlock?: (("always" | "never") | {
|
|
11372
|
+
multiline?: boolean
|
|
11373
|
+
minElements?: number
|
|
11374
|
+
consistent?: boolean
|
|
11375
|
+
})
|
|
11376
|
+
WithStatement?: (("always" | "never") | {
|
|
11377
|
+
multiline?: boolean
|
|
11378
|
+
minElements?: number
|
|
11379
|
+
consistent?: boolean
|
|
11380
|
+
})
|
|
11381
|
+
TSEnumBody?: (("always" | "never") | {
|
|
11382
|
+
multiline?: boolean
|
|
11383
|
+
minElements?: number
|
|
11384
|
+
consistent?: boolean
|
|
11385
|
+
})
|
|
11386
|
+
TSInterfaceBody?: (("always" | "never") | {
|
|
11387
|
+
multiline?: boolean
|
|
11388
|
+
minElements?: number
|
|
11389
|
+
consistent?: boolean
|
|
11390
|
+
})
|
|
11391
|
+
TSModuleBlock?: (("always" | "never") | {
|
|
11392
|
+
multiline?: boolean
|
|
11393
|
+
minElements?: number
|
|
11394
|
+
consistent?: boolean
|
|
11395
|
+
})
|
|
11396
|
+
multiline?: boolean
|
|
11397
|
+
minElements?: number
|
|
11398
|
+
consistent?: boolean
|
|
11399
|
+
})]
|
|
11127
11400
|
// ----- style/dot-location -----
|
|
11128
11401
|
type StyleDotLocation = []|[("object" | "property")]
|
|
11129
11402
|
// ----- style/eol-last -----
|
|
@@ -11203,6 +11476,8 @@ type StyleJsxClosingBracketLocation = []|[(("after-props" | "props-aligned" | "t
|
|
|
11203
11476
|
nonEmpty?: (("after-props" | "props-aligned" | "tag-aligned" | "line-aligned") | false)
|
|
11204
11477
|
selfClosing?: (("after-props" | "props-aligned" | "tag-aligned" | "line-aligned") | false)
|
|
11205
11478
|
})]
|
|
11479
|
+
// ----- style/jsx-closing-tag-location -----
|
|
11480
|
+
type StyleJsxClosingTagLocation = []|[("tag-aligned" | "line-aligned")]
|
|
11206
11481
|
// ----- style/jsx-curly-brace-presence -----
|
|
11207
11482
|
type StyleJsxCurlyBracePresence = []|[({
|
|
11208
11483
|
props?: ("always" | "never" | "ignore")
|
|
@@ -12095,6 +12370,15 @@ type SvelteFirstAttributeLinebreak = []|[{
|
|
|
12095
12370
|
multiline?: ("below" | "beside")
|
|
12096
12371
|
singleline?: ("below" | "beside")
|
|
12097
12372
|
}]
|
|
12373
|
+
// ----- svelte/html-closing-bracket-new-line -----
|
|
12374
|
+
type SvelteHtmlClosingBracketNewLine = []|[{
|
|
12375
|
+
singleline?: ("always" | "never")
|
|
12376
|
+
multiline?: ("always" | "never")
|
|
12377
|
+
selfClosingTag?: {
|
|
12378
|
+
singleline?: ("always" | "never")
|
|
12379
|
+
multiline?: ("always" | "never")
|
|
12380
|
+
}
|
|
12381
|
+
}]
|
|
12098
12382
|
// ----- svelte/html-closing-bracket-spacing -----
|
|
12099
12383
|
type SvelteHtmlClosingBracketSpacing = []|[{
|
|
12100
12384
|
startTag?: ("always" | "never" | "ignore")
|
|
@@ -12457,6 +12741,11 @@ type TsArrayType = []|[{
|
|
|
12457
12741
|
}]
|
|
12458
12742
|
// ----- ts/ban-ts-comment -----
|
|
12459
12743
|
type TsBanTsComment = []|[{
|
|
12744
|
+
|
|
12745
|
+
minimumDescriptionLength?: number
|
|
12746
|
+
"ts-check"?: (boolean | "allow-with-description" | {
|
|
12747
|
+
descriptionFormat?: string
|
|
12748
|
+
})
|
|
12460
12749
|
"ts-expect-error"?: (boolean | "allow-with-description" | {
|
|
12461
12750
|
descriptionFormat?: string
|
|
12462
12751
|
})
|
|
@@ -12466,24 +12755,19 @@ type TsBanTsComment = []|[{
|
|
|
12466
12755
|
"ts-nocheck"?: (boolean | "allow-with-description" | {
|
|
12467
12756
|
descriptionFormat?: string
|
|
12468
12757
|
})
|
|
12469
|
-
"ts-check"?: (boolean | "allow-with-description" | {
|
|
12470
|
-
descriptionFormat?: string
|
|
12471
|
-
})
|
|
12472
|
-
|
|
12473
|
-
minimumDescriptionLength?: number
|
|
12474
12758
|
}]
|
|
12475
12759
|
// ----- ts/class-literal-property-style -----
|
|
12476
12760
|
type TsClassLiteralPropertyStyle = []|[("fields" | "getters")]
|
|
12477
12761
|
// ----- ts/class-methods-use-this -----
|
|
12478
12762
|
type TsClassMethodsUseThis = []|[{
|
|
12479
12763
|
|
|
12480
|
-
exceptMethods?: string[]
|
|
12481
|
-
|
|
12482
12764
|
enforceForClassFields?: boolean
|
|
12483
12765
|
|
|
12484
|
-
|
|
12766
|
+
exceptMethods?: string[]
|
|
12485
12767
|
|
|
12486
12768
|
ignoreClassesThatImplementAnInterface?: (boolean | "public-fields")
|
|
12769
|
+
|
|
12770
|
+
ignoreOverrideMethods?: boolean
|
|
12487
12771
|
}]
|
|
12488
12772
|
// ----- ts/consistent-generic-constructors -----
|
|
12489
12773
|
type TsConsistentGenericConstructors = []|[("type-annotation" | "constructor")]
|
|
@@ -12522,6 +12806,8 @@ type TsConsistentTypeImports = []|[{
|
|
|
12522
12806
|
// ----- ts/dot-notation -----
|
|
12523
12807
|
type TsDotNotation = []|[{
|
|
12524
12808
|
|
|
12809
|
+
allowIndexSignaturePropertyAccess?: boolean
|
|
12810
|
+
|
|
12525
12811
|
allowKeywords?: boolean
|
|
12526
12812
|
|
|
12527
12813
|
allowPattern?: string
|
|
@@ -12529,40 +12815,38 @@ type TsDotNotation = []|[{
|
|
|
12529
12815
|
allowPrivateClassPropertyAccess?: boolean
|
|
12530
12816
|
|
|
12531
12817
|
allowProtectedClassPropertyAccess?: boolean
|
|
12532
|
-
|
|
12533
|
-
allowIndexSignaturePropertyAccess?: boolean
|
|
12534
12818
|
}]
|
|
12535
12819
|
// ----- ts/explicit-function-return-type -----
|
|
12536
12820
|
type TsExplicitFunctionReturnType = []|[{
|
|
12537
12821
|
|
|
12538
12822
|
allowConciseArrowFunctionExpressionsStartingWithVoid?: boolean
|
|
12539
12823
|
|
|
12540
|
-
|
|
12541
|
-
|
|
12542
|
-
allowHigherOrderFunctions?: boolean
|
|
12824
|
+
allowDirectConstAssertionInArrowFunctions?: boolean
|
|
12543
12825
|
|
|
12544
|
-
|
|
12826
|
+
allowedNames?: string[]
|
|
12545
12827
|
|
|
12546
|
-
|
|
12828
|
+
allowExpressions?: boolean
|
|
12547
12829
|
|
|
12548
12830
|
allowFunctionsWithoutTypeParameters?: boolean
|
|
12549
12831
|
|
|
12550
|
-
|
|
12832
|
+
allowHigherOrderFunctions?: boolean
|
|
12551
12833
|
|
|
12552
12834
|
allowIIFEs?: boolean
|
|
12835
|
+
|
|
12836
|
+
allowTypedFunctionExpressions?: boolean
|
|
12553
12837
|
}]
|
|
12554
12838
|
// ----- ts/explicit-member-accessibility -----
|
|
12555
12839
|
type TsExplicitMemberAccessibility = []|[{
|
|
12556
12840
|
accessibility?: ("explicit" | "no-public" | "off")
|
|
12841
|
+
|
|
12842
|
+
ignoredMethodNames?: string[]
|
|
12557
12843
|
overrides?: {
|
|
12558
12844
|
accessors?: ("explicit" | "no-public" | "off")
|
|
12559
12845
|
constructors?: ("explicit" | "no-public" | "off")
|
|
12560
12846
|
methods?: ("explicit" | "no-public" | "off")
|
|
12561
|
-
properties?: ("explicit" | "no-public" | "off")
|
|
12562
12847
|
parameterProperties?: ("explicit" | "no-public" | "off")
|
|
12848
|
+
properties?: ("explicit" | "no-public" | "off")
|
|
12563
12849
|
}
|
|
12564
|
-
|
|
12565
|
-
ignoredMethodNames?: string[]
|
|
12566
12850
|
}]
|
|
12567
12851
|
// ----- ts/explicit-module-boundary-types -----
|
|
12568
12852
|
type TsExplicitModuleBoundaryTypes = []|[{
|
|
@@ -12584,38 +12868,38 @@ type TsInitDeclarations = ([]|["always"] | []|["never"]|["never", {
|
|
|
12584
12868
|
// ----- ts/max-params -----
|
|
12585
12869
|
type TsMaxParams = []|[{
|
|
12586
12870
|
|
|
12871
|
+
countVoidThis?: boolean
|
|
12872
|
+
|
|
12587
12873
|
max?: number
|
|
12588
12874
|
|
|
12589
12875
|
maximum?: number
|
|
12590
|
-
|
|
12591
|
-
countVoidThis?: boolean
|
|
12592
12876
|
}]
|
|
12593
12877
|
// ----- ts/member-ordering -----
|
|
12594
12878
|
type TsMemberOrdering = []|[{
|
|
12595
|
-
default?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
12596
|
-
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
12597
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12598
|
-
optionalityOrder?: ("optional-first" | "required-first")
|
|
12599
|
-
})
|
|
12600
12879
|
classes?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
12601
12880
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
12602
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12603
12881
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
12882
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12604
12883
|
})
|
|
12605
12884
|
classExpressions?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
12606
12885
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
12886
|
+
optionalityOrder?: ("optional-first" | "required-first")
|
|
12607
12887
|
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12888
|
+
})
|
|
12889
|
+
default?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
12890
|
+
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
12608
12891
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
12892
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12609
12893
|
})
|
|
12610
12894
|
interfaces?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | {
|
|
12611
12895
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | "never")
|
|
12612
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12613
12896
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
12897
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12614
12898
|
})
|
|
12615
12899
|
typeLiterals?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | {
|
|
12616
12900
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | "never")
|
|
12617
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12618
12901
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
12902
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12619
12903
|
})
|
|
12620
12904
|
}]
|
|
12621
12905
|
// ----- ts/method-signature-style -----
|
|
@@ -12627,310 +12911,310 @@ type _TsNamingConventionUnderscoreOptions = ("forbid" | "allow" | "require" | "r
|
|
|
12627
12911
|
type _TsNamingConvention_PrefixSuffixConfig = string[]
|
|
12628
12912
|
type _TsNamingConventionTypeModifiers = ("boolean" | "string" | "number" | "function" | "array")
|
|
12629
12913
|
type TsNamingConvention = ({
|
|
12630
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12631
12914
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12915
|
+
failureMessage?: string
|
|
12916
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12632
12917
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12633
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12634
12918
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12635
12919
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12636
|
-
|
|
12920
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12637
12921
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12638
|
-
selector: ("default" | "variableLike" | "memberLike" | "typeLike" | "method" | "property" | "accessor" | "variable" | "function" | "parameter" | "parameterProperty" | "classicAccessor" | "enumMember" | "classMethod" | "objectLiteralMethod" | "typeMethod" | "classProperty" | "objectLiteralProperty" | "typeProperty" | "autoAccessor" | "class" | "interface" | "typeAlias" | "enum" | "typeParameter" | "import")[]
|
|
12639
12922
|
modifiers?: ("const" | "readonly" | "static" | "public" | "protected" | "private" | "#private" | "abstract" | "destructured" | "global" | "exported" | "unused" | "requiresQuotes" | "override" | "async" | "default" | "namespace")[]
|
|
12923
|
+
selector: ("default" | "variableLike" | "memberLike" | "typeLike" | "method" | "property" | "accessor" | "variable" | "function" | "parameter" | "parameterProperty" | "classicAccessor" | "enumMember" | "classMethod" | "objectLiteralMethod" | "typeMethod" | "classProperty" | "objectLiteralProperty" | "typeProperty" | "autoAccessor" | "class" | "interface" | "typeAlias" | "enum" | "typeParameter" | "import")[]
|
|
12640
12924
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12641
12925
|
} | {
|
|
12642
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12643
12926
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12927
|
+
failureMessage?: string
|
|
12928
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12644
12929
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12645
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12646
12930
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12647
12931
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12648
|
-
|
|
12932
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12649
12933
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12650
12934
|
selector: "default"
|
|
12651
12935
|
modifiers?: ("const" | "readonly" | "static" | "public" | "protected" | "private" | "#private" | "abstract" | "destructured" | "global" | "exported" | "unused" | "requiresQuotes" | "override" | "async" | "default" | "namespace")[]
|
|
12652
12936
|
} | {
|
|
12653
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12654
12937
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12938
|
+
failureMessage?: string
|
|
12939
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12655
12940
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12656
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12657
12941
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12658
12942
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12659
|
-
|
|
12943
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12660
12944
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12661
12945
|
selector: "variableLike"
|
|
12662
12946
|
modifiers?: ("unused" | "async")[]
|
|
12663
12947
|
} | {
|
|
12664
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12665
12948
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12949
|
+
failureMessage?: string
|
|
12950
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12666
12951
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12667
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12668
12952
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12669
12953
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12670
|
-
|
|
12954
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12671
12955
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12672
12956
|
selector: "variable"
|
|
12673
12957
|
modifiers?: ("const" | "destructured" | "exported" | "global" | "unused" | "async")[]
|
|
12674
12958
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12675
12959
|
} | {
|
|
12676
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12677
12960
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12961
|
+
failureMessage?: string
|
|
12962
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12678
12963
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12679
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12680
12964
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12681
12965
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12682
|
-
|
|
12966
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12683
12967
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12684
12968
|
selector: "function"
|
|
12685
12969
|
modifiers?: ("exported" | "global" | "unused" | "async")[]
|
|
12686
12970
|
} | {
|
|
12687
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12688
12971
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12972
|
+
failureMessage?: string
|
|
12973
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12689
12974
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12690
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12691
12975
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12692
12976
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12693
|
-
|
|
12977
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12694
12978
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12695
12979
|
selector: "parameter"
|
|
12696
12980
|
modifiers?: ("destructured" | "unused")[]
|
|
12697
12981
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12698
12982
|
} | {
|
|
12699
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12700
12983
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12984
|
+
failureMessage?: string
|
|
12985
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12701
12986
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12702
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12703
12987
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12704
12988
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12705
|
-
|
|
12989
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12706
12990
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12707
12991
|
selector: "memberLike"
|
|
12708
12992
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
12709
12993
|
} | {
|
|
12710
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12711
12994
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12995
|
+
failureMessage?: string
|
|
12996
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12712
12997
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12713
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12714
12998
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12715
12999
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12716
|
-
|
|
13000
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12717
13001
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12718
13002
|
selector: "classProperty"
|
|
12719
13003
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override")[]
|
|
12720
13004
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12721
13005
|
} | {
|
|
12722
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12723
13006
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13007
|
+
failureMessage?: string
|
|
13008
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12724
13009
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12725
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12726
13010
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12727
13011
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12728
|
-
|
|
13012
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12729
13013
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12730
13014
|
selector: "objectLiteralProperty"
|
|
12731
13015
|
modifiers?: ("public" | "requiresQuotes")[]
|
|
12732
13016
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12733
13017
|
} | {
|
|
12734
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12735
13018
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13019
|
+
failureMessage?: string
|
|
13020
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12736
13021
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12737
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12738
13022
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12739
13023
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12740
|
-
|
|
13024
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12741
13025
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12742
13026
|
selector: "typeProperty"
|
|
12743
13027
|
modifiers?: ("public" | "readonly" | "requiresQuotes")[]
|
|
12744
13028
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12745
13029
|
} | {
|
|
12746
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12747
13030
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13031
|
+
failureMessage?: string
|
|
13032
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12748
13033
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12749
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12750
13034
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12751
13035
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12752
|
-
|
|
13036
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12753
13037
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12754
13038
|
selector: "parameterProperty"
|
|
12755
13039
|
modifiers?: ("private" | "protected" | "public" | "readonly")[]
|
|
12756
13040
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12757
13041
|
} | {
|
|
12758
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12759
13042
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13043
|
+
failureMessage?: string
|
|
13044
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12760
13045
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12761
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12762
13046
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12763
13047
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12764
|
-
|
|
13048
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12765
13049
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12766
13050
|
selector: "property"
|
|
12767
13051
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
12768
13052
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12769
13053
|
} | {
|
|
12770
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12771
13054
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13055
|
+
failureMessage?: string
|
|
13056
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12772
13057
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12773
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12774
13058
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12775
13059
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12776
|
-
|
|
13060
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12777
13061
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12778
13062
|
selector: "classMethod"
|
|
12779
13063
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
12780
13064
|
} | {
|
|
12781
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12782
13065
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13066
|
+
failureMessage?: string
|
|
13067
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12783
13068
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12784
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12785
13069
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12786
13070
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12787
|
-
|
|
13071
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12788
13072
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12789
13073
|
selector: "objectLiteralMethod"
|
|
12790
13074
|
modifiers?: ("public" | "requiresQuotes" | "async")[]
|
|
12791
13075
|
} | {
|
|
12792
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12793
13076
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13077
|
+
failureMessage?: string
|
|
13078
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12794
13079
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12795
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12796
13080
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12797
13081
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12798
|
-
|
|
13082
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12799
13083
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12800
13084
|
selector: "typeMethod"
|
|
12801
13085
|
modifiers?: ("public" | "requiresQuotes")[]
|
|
12802
13086
|
} | {
|
|
12803
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12804
13087
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13088
|
+
failureMessage?: string
|
|
13089
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12805
13090
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12806
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12807
13091
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12808
13092
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12809
|
-
|
|
13093
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12810
13094
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12811
13095
|
selector: "method"
|
|
12812
13096
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
12813
13097
|
} | {
|
|
12814
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12815
13098
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13099
|
+
failureMessage?: string
|
|
13100
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12816
13101
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12817
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12818
13102
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12819
13103
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12820
|
-
|
|
13104
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12821
13105
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12822
13106
|
selector: "classicAccessor"
|
|
12823
13107
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
12824
13108
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12825
13109
|
} | {
|
|
12826
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12827
13110
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13111
|
+
failureMessage?: string
|
|
13112
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12828
13113
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12829
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12830
13114
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12831
13115
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12832
|
-
|
|
13116
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12833
13117
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12834
13118
|
selector: "autoAccessor"
|
|
12835
13119
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
12836
13120
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12837
13121
|
} | {
|
|
12838
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12839
13122
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13123
|
+
failureMessage?: string
|
|
13124
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12840
13125
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12841
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12842
13126
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12843
13127
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12844
|
-
|
|
13128
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12845
13129
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12846
13130
|
selector: "accessor"
|
|
12847
13131
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
12848
13132
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12849
13133
|
} | {
|
|
12850
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12851
13134
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13135
|
+
failureMessage?: string
|
|
13136
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12852
13137
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12853
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12854
13138
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12855
13139
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12856
|
-
|
|
13140
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12857
13141
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12858
13142
|
selector: "enumMember"
|
|
12859
13143
|
modifiers?: ("requiresQuotes")[]
|
|
12860
13144
|
} | {
|
|
12861
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12862
13145
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13146
|
+
failureMessage?: string
|
|
13147
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12863
13148
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12864
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12865
13149
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12866
13150
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12867
|
-
|
|
13151
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12868
13152
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12869
13153
|
selector: "typeLike"
|
|
12870
13154
|
modifiers?: ("abstract" | "exported" | "unused")[]
|
|
12871
13155
|
} | {
|
|
12872
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12873
13156
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13157
|
+
failureMessage?: string
|
|
13158
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12874
13159
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12875
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12876
13160
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12877
13161
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12878
|
-
|
|
13162
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12879
13163
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12880
13164
|
selector: "class"
|
|
12881
13165
|
modifiers?: ("abstract" | "exported" | "unused")[]
|
|
12882
13166
|
} | {
|
|
12883
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12884
13167
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13168
|
+
failureMessage?: string
|
|
13169
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12885
13170
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12886
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12887
13171
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12888
13172
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12889
|
-
|
|
13173
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12890
13174
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12891
13175
|
selector: "interface"
|
|
12892
13176
|
modifiers?: ("exported" | "unused")[]
|
|
12893
13177
|
} | {
|
|
12894
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12895
13178
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13179
|
+
failureMessage?: string
|
|
13180
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12896
13181
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12897
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12898
13182
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12899
13183
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12900
|
-
|
|
13184
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12901
13185
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12902
13186
|
selector: "typeAlias"
|
|
12903
13187
|
modifiers?: ("exported" | "unused")[]
|
|
12904
13188
|
} | {
|
|
12905
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12906
13189
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13190
|
+
failureMessage?: string
|
|
13191
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12907
13192
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12908
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12909
13193
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12910
13194
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12911
|
-
|
|
13195
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12912
13196
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12913
13197
|
selector: "enum"
|
|
12914
13198
|
modifiers?: ("exported" | "unused")[]
|
|
12915
13199
|
} | {
|
|
12916
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12917
13200
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13201
|
+
failureMessage?: string
|
|
13202
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12918
13203
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12919
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12920
13204
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12921
13205
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12922
|
-
|
|
13206
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12923
13207
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12924
13208
|
selector: "typeParameter"
|
|
12925
13209
|
modifiers?: ("unused")[]
|
|
12926
13210
|
} | {
|
|
12927
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12928
13211
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13212
|
+
failureMessage?: string
|
|
13213
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12929
13214
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12930
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12931
13215
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12932
13216
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12933
|
-
|
|
13217
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12934
13218
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12935
13219
|
selector: "import"
|
|
12936
13220
|
modifiers?: ("default" | "namespace")[]
|
|
@@ -12998,7 +13282,7 @@ type TsNoExtraneousClass = []|[{
|
|
|
12998
13282
|
// ----- ts/no-floating-promises -----
|
|
12999
13283
|
type TsNoFloatingPromises = []|[{
|
|
13000
13284
|
|
|
13001
|
-
|
|
13285
|
+
allowForKnownSafeCalls?: (string | {
|
|
13002
13286
|
from: "file"
|
|
13003
13287
|
name: (string | [string, ...(string)[]])
|
|
13004
13288
|
path?: string
|
|
@@ -13011,7 +13295,7 @@ type TsNoFloatingPromises = []|[{
|
|
|
13011
13295
|
package: string
|
|
13012
13296
|
})[]
|
|
13013
13297
|
|
|
13014
|
-
|
|
13298
|
+
allowForKnownSafePromises?: (string | {
|
|
13015
13299
|
from: "file"
|
|
13016
13300
|
name: (string | [string, ...(string)[]])
|
|
13017
13301
|
path?: string
|
|
@@ -13026,9 +13310,9 @@ type TsNoFloatingPromises = []|[{
|
|
|
13026
13310
|
|
|
13027
13311
|
checkThenables?: boolean
|
|
13028
13312
|
|
|
13029
|
-
ignoreVoid?: boolean
|
|
13030
|
-
|
|
13031
13313
|
ignoreIIFE?: boolean
|
|
13314
|
+
|
|
13315
|
+
ignoreVoid?: boolean
|
|
13032
13316
|
}]
|
|
13033
13317
|
// ----- ts/no-inferrable-types -----
|
|
13034
13318
|
type TsNoInferrableTypes = []|[{
|
|
@@ -13044,9 +13328,9 @@ type TsNoInvalidThis = []|[{
|
|
|
13044
13328
|
// ----- ts/no-invalid-void-type -----
|
|
13045
13329
|
type TsNoInvalidVoidType = []|[{
|
|
13046
13330
|
|
|
13047
|
-
allowInGenericTypeArguments?: (boolean | [string, ...(string)[]])
|
|
13048
|
-
|
|
13049
13331
|
allowAsThisParameter?: boolean
|
|
13332
|
+
|
|
13333
|
+
allowInGenericTypeArguments?: (boolean | [string, ...(string)[]])
|
|
13050
13334
|
}]
|
|
13051
13335
|
// ----- ts/no-magic-numbers -----
|
|
13052
13336
|
type TsNoMagicNumbers = []|[{
|
|
@@ -13057,10 +13341,10 @@ type TsNoMagicNumbers = []|[{
|
|
|
13057
13341
|
ignoreDefaultValues?: boolean
|
|
13058
13342
|
ignoreClassFieldInitialValues?: boolean
|
|
13059
13343
|
|
|
13060
|
-
ignoreNumericLiteralTypes?: boolean
|
|
13061
|
-
|
|
13062
13344
|
ignoreEnums?: boolean
|
|
13063
13345
|
|
|
13346
|
+
ignoreNumericLiteralTypes?: boolean
|
|
13347
|
+
|
|
13064
13348
|
ignoreReadonlyClassProperties?: boolean
|
|
13065
13349
|
|
|
13066
13350
|
ignoreTypeIndexes?: boolean
|
|
@@ -13073,6 +13357,8 @@ type TsNoMeaninglessVoidOperator = []|[{
|
|
|
13073
13357
|
// ----- ts/no-misused-promises -----
|
|
13074
13358
|
type TsNoMisusedPromises = []|[{
|
|
13075
13359
|
checksConditionals?: boolean
|
|
13360
|
+
|
|
13361
|
+
checksSpreads?: boolean
|
|
13076
13362
|
checksVoidReturn?: (boolean | {
|
|
13077
13363
|
|
|
13078
13364
|
arguments?: boolean
|
|
@@ -13087,8 +13373,6 @@ type TsNoMisusedPromises = []|[{
|
|
|
13087
13373
|
|
|
13088
13374
|
variables?: boolean
|
|
13089
13375
|
})
|
|
13090
|
-
|
|
13091
|
-
checksSpreads?: boolean
|
|
13092
13376
|
}]
|
|
13093
13377
|
// ----- ts/no-namespace -----
|
|
13094
13378
|
type TsNoNamespace = []|[{
|
|
@@ -13149,10 +13433,10 @@ type TsNoRestrictedTypes = []|[{
|
|
|
13149
13433
|
types?: {
|
|
13150
13434
|
[k: string]: (true | string | {
|
|
13151
13435
|
|
|
13152
|
-
message?: string
|
|
13153
|
-
|
|
13154
13436
|
fixWith?: string
|
|
13155
13437
|
|
|
13438
|
+
message?: string
|
|
13439
|
+
|
|
13156
13440
|
suggest?: string[]
|
|
13157
13441
|
}) | undefined
|
|
13158
13442
|
}
|
|
@@ -13160,17 +13444,17 @@ type TsNoRestrictedTypes = []|[{
|
|
|
13160
13444
|
// ----- ts/no-shadow -----
|
|
13161
13445
|
type TsNoShadow = []|[{
|
|
13162
13446
|
|
|
13447
|
+
allow?: string[]
|
|
13448
|
+
|
|
13163
13449
|
builtinGlobals?: boolean
|
|
13164
13450
|
|
|
13165
13451
|
hoist?: ("all" | "functions" | "never")
|
|
13166
13452
|
|
|
13167
|
-
|
|
13453
|
+
ignoreFunctionTypeParameterNameValueShadow?: boolean
|
|
13168
13454
|
|
|
13169
13455
|
ignoreOnInitialization?: boolean
|
|
13170
13456
|
|
|
13171
13457
|
ignoreTypeValueShadow?: boolean
|
|
13172
|
-
|
|
13173
|
-
ignoreFunctionTypeParameterNameValueShadow?: boolean
|
|
13174
13458
|
}]
|
|
13175
13459
|
// ----- ts/no-this-alias -----
|
|
13176
13460
|
type TsNoThisAlias = []|[{
|
|
@@ -13190,20 +13474,20 @@ type TsNoTypeAlias = []|[{
|
|
|
13190
13474
|
|
|
13191
13475
|
allowConstructors?: ("always" | "never")
|
|
13192
13476
|
|
|
13477
|
+
allowGenerics?: ("always" | "never")
|
|
13478
|
+
|
|
13193
13479
|
allowLiterals?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
13194
13480
|
|
|
13195
13481
|
allowMappedTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
13196
13482
|
|
|
13197
13483
|
allowTupleTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
13198
|
-
|
|
13199
|
-
allowGenerics?: ("always" | "never")
|
|
13200
13484
|
}]
|
|
13201
13485
|
// ----- ts/no-unnecessary-boolean-literal-compare -----
|
|
13202
13486
|
type TsNoUnnecessaryBooleanLiteralCompare = []|[{
|
|
13203
13487
|
|
|
13204
|
-
allowComparingNullableBooleansToTrue?: boolean
|
|
13205
|
-
|
|
13206
13488
|
allowComparingNullableBooleansToFalse?: boolean
|
|
13489
|
+
|
|
13490
|
+
allowComparingNullableBooleansToTrue?: boolean
|
|
13207
13491
|
}]
|
|
13208
13492
|
// ----- ts/no-unnecessary-condition -----
|
|
13209
13493
|
type TsNoUnnecessaryCondition = []|[{
|
|
@@ -13211,6 +13495,8 @@ type TsNoUnnecessaryCondition = []|[{
|
|
|
13211
13495
|
allowConstantLoopConditions?: boolean
|
|
13212
13496
|
|
|
13213
13497
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
13498
|
+
|
|
13499
|
+
checkTypePredicates?: boolean
|
|
13214
13500
|
}]
|
|
13215
13501
|
// ----- ts/no-unnecessary-type-assertion -----
|
|
13216
13502
|
type TsNoUnnecessaryTypeAssertion = []|[{
|
|
@@ -13227,10 +13513,6 @@ type TsNoUnusedExpressions = []|[{
|
|
|
13227
13513
|
// ----- ts/no-unused-vars -----
|
|
13228
13514
|
type TsNoUnusedVars = []|[(("all" | "local") | {
|
|
13229
13515
|
|
|
13230
|
-
vars?: ("all" | "local")
|
|
13231
|
-
|
|
13232
|
-
varsIgnorePattern?: string
|
|
13233
|
-
|
|
13234
13516
|
args?: ("all" | "after-used" | "none")
|
|
13235
13517
|
|
|
13236
13518
|
argsIgnorePattern?: string
|
|
@@ -13246,22 +13528,26 @@ type TsNoUnusedVars = []|[(("all" | "local") | {
|
|
|
13246
13528
|
ignoreRestSiblings?: boolean
|
|
13247
13529
|
|
|
13248
13530
|
reportUsedIgnorePattern?: boolean
|
|
13531
|
+
|
|
13532
|
+
vars?: ("all" | "local")
|
|
13533
|
+
|
|
13534
|
+
varsIgnorePattern?: string
|
|
13249
13535
|
})]
|
|
13250
13536
|
// ----- ts/no-use-before-define -----
|
|
13251
13537
|
type TsNoUseBeforeDefine = []|[("nofunc" | {
|
|
13252
|
-
|
|
13253
|
-
functions?: boolean
|
|
13538
|
+
allowNamedExports?: boolean
|
|
13254
13539
|
|
|
13255
13540
|
classes?: boolean
|
|
13256
13541
|
|
|
13257
13542
|
enums?: boolean
|
|
13258
13543
|
|
|
13259
|
-
|
|
13544
|
+
functions?: boolean
|
|
13545
|
+
|
|
13546
|
+
ignoreTypeReferences?: boolean
|
|
13260
13547
|
|
|
13261
13548
|
typedefs?: boolean
|
|
13262
13549
|
|
|
13263
|
-
|
|
13264
|
-
allowNamedExports?: boolean
|
|
13550
|
+
variables?: boolean
|
|
13265
13551
|
})]
|
|
13266
13552
|
// ----- ts/no-var-requires -----
|
|
13267
13553
|
type TsNoVarRequires = []|[{
|
|
@@ -13284,11 +13570,11 @@ type TsParameterProperties = []|[{
|
|
|
13284
13570
|
}]
|
|
13285
13571
|
// ----- ts/prefer-destructuring -----
|
|
13286
13572
|
type TsPreferDestructuring = []|[({
|
|
13287
|
-
|
|
13573
|
+
AssignmentExpression?: {
|
|
13288
13574
|
array?: boolean
|
|
13289
13575
|
object?: boolean
|
|
13290
13576
|
}
|
|
13291
|
-
|
|
13577
|
+
VariableDeclarator?: {
|
|
13292
13578
|
array?: boolean
|
|
13293
13579
|
object?: boolean
|
|
13294
13580
|
}
|
|
@@ -13296,11 +13582,11 @@ type TsPreferDestructuring = []|[({
|
|
|
13296
13582
|
array?: boolean
|
|
13297
13583
|
object?: boolean
|
|
13298
13584
|
})]|[({
|
|
13299
|
-
|
|
13585
|
+
AssignmentExpression?: {
|
|
13300
13586
|
array?: boolean
|
|
13301
13587
|
object?: boolean
|
|
13302
13588
|
}
|
|
13303
|
-
|
|
13589
|
+
VariableDeclarator?: {
|
|
13304
13590
|
array?: boolean
|
|
13305
13591
|
object?: boolean
|
|
13306
13592
|
}
|
|
@@ -13308,8 +13594,8 @@ type TsPreferDestructuring = []|[({
|
|
|
13308
13594
|
array?: boolean
|
|
13309
13595
|
object?: boolean
|
|
13310
13596
|
}), {
|
|
13311
|
-
enforceForRenamedProperties?: boolean
|
|
13312
13597
|
enforceForDeclarationWithTypeAnnotation?: boolean
|
|
13598
|
+
enforceForRenamedProperties?: boolean
|
|
13313
13599
|
[k: string]: unknown | undefined
|
|
13314
13600
|
}]
|
|
13315
13601
|
// ----- ts/prefer-literal-enum-member -----
|
|
@@ -13339,21 +13625,21 @@ type TsPreferNullishCoalescing = []|[{
|
|
|
13339
13625
|
// ----- ts/prefer-optional-chain -----
|
|
13340
13626
|
type TsPreferOptionalChain = []|[{
|
|
13341
13627
|
|
|
13628
|
+
allowPotentiallyUnsafeFixesThatModifyTheReturnTypeIKnowWhatImDoing?: boolean
|
|
13629
|
+
|
|
13342
13630
|
checkAny?: boolean
|
|
13343
13631
|
|
|
13344
|
-
|
|
13632
|
+
checkBigInt?: boolean
|
|
13345
13633
|
|
|
13346
|
-
|
|
13634
|
+
checkBoolean?: boolean
|
|
13347
13635
|
|
|
13348
13636
|
checkNumber?: boolean
|
|
13349
13637
|
|
|
13350
|
-
|
|
13638
|
+
checkString?: boolean
|
|
13351
13639
|
|
|
13352
|
-
|
|
13640
|
+
checkUnknown?: boolean
|
|
13353
13641
|
|
|
13354
13642
|
requireNullish?: boolean
|
|
13355
|
-
|
|
13356
|
-
allowPotentiallyUnsafeFixesThatModifyTheReturnTypeIKnowWhatImDoing?: boolean
|
|
13357
13643
|
}]
|
|
13358
13644
|
// ----- ts/prefer-promise-reject-errors -----
|
|
13359
13645
|
type TsPreferPromiseRejectErrors = []|[{
|
|
@@ -13462,33 +13748,33 @@ type TsReturnAwait = []|[(("always" | "error-handling-correctness-only" | "in-tr
|
|
|
13462
13748
|
// ----- ts/sort-type-constituents -----
|
|
13463
13749
|
type TsSortTypeConstituents = []|[{
|
|
13464
13750
|
|
|
13751
|
+
caseSensitive?: boolean
|
|
13752
|
+
|
|
13465
13753
|
checkIntersections?: boolean
|
|
13466
13754
|
|
|
13467
13755
|
checkUnions?: boolean
|
|
13468
13756
|
|
|
13469
|
-
caseSensitive?: boolean
|
|
13470
|
-
|
|
13471
13757
|
groupOrder?: ("conditional" | "function" | "import" | "intersection" | "keyword" | "nullish" | "literal" | "named" | "object" | "operator" | "tuple" | "union")[]
|
|
13472
13758
|
}]
|
|
13473
13759
|
// ----- ts/strict-boolean-expressions -----
|
|
13474
13760
|
type TsStrictBooleanExpressions = []|[{
|
|
13475
13761
|
|
|
13476
|
-
|
|
13477
|
-
|
|
13478
|
-
allowNumber?: boolean
|
|
13479
|
-
|
|
13480
|
-
allowNullableObject?: boolean
|
|
13762
|
+
allowAny?: boolean
|
|
13481
13763
|
|
|
13482
13764
|
allowNullableBoolean?: boolean
|
|
13483
13765
|
|
|
13484
|
-
|
|
13766
|
+
allowNullableEnum?: boolean
|
|
13485
13767
|
|
|
13486
13768
|
allowNullableNumber?: boolean
|
|
13487
13769
|
|
|
13488
|
-
|
|
13770
|
+
allowNullableObject?: boolean
|
|
13489
13771
|
|
|
13490
|
-
|
|
13772
|
+
allowNullableString?: boolean
|
|
13773
|
+
|
|
13774
|
+
allowNumber?: boolean
|
|
13491
13775
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
13776
|
+
|
|
13777
|
+
allowString?: boolean
|
|
13492
13778
|
}]
|
|
13493
13779
|
// ----- ts/switch-exhaustiveness-check -----
|
|
13494
13780
|
type TsSwitchExhaustivenessCheck = []|[{
|
|
@@ -13743,10 +14029,6 @@ type UnocssEnforceClassCompile = []|[{
|
|
|
13743
14029
|
// ----- unused-imports/no-unused-imports -----
|
|
13744
14030
|
type UnusedImportsNoUnusedImports = []|[(("all" | "local") | {
|
|
13745
14031
|
|
|
13746
|
-
vars?: ("all" | "local")
|
|
13747
|
-
|
|
13748
|
-
varsIgnorePattern?: string
|
|
13749
|
-
|
|
13750
14032
|
args?: ("all" | "after-used" | "none")
|
|
13751
14033
|
|
|
13752
14034
|
argsIgnorePattern?: string
|
|
@@ -13762,13 +14044,13 @@ type UnusedImportsNoUnusedImports = []|[(("all" | "local") | {
|
|
|
13762
14044
|
ignoreRestSiblings?: boolean
|
|
13763
14045
|
|
|
13764
14046
|
reportUsedIgnorePattern?: boolean
|
|
13765
|
-
})]
|
|
13766
|
-
// ----- unused-imports/no-unused-vars -----
|
|
13767
|
-
type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
13768
14047
|
|
|
13769
14048
|
vars?: ("all" | "local")
|
|
13770
14049
|
|
|
13771
14050
|
varsIgnorePattern?: string
|
|
14051
|
+
})]
|
|
14052
|
+
// ----- unused-imports/no-unused-vars -----
|
|
14053
|
+
type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
13772
14054
|
|
|
13773
14055
|
args?: ("all" | "after-used" | "none")
|
|
13774
14056
|
|
|
@@ -13785,6 +14067,10 @@ type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
|
13785
14067
|
ignoreRestSiblings?: boolean
|
|
13786
14068
|
|
|
13787
14069
|
reportUsedIgnorePattern?: boolean
|
|
14070
|
+
|
|
14071
|
+
vars?: ("all" | "local")
|
|
14072
|
+
|
|
14073
|
+
varsIgnorePattern?: string
|
|
13788
14074
|
})]
|
|
13789
14075
|
// ----- use-isnan -----
|
|
13790
14076
|
type UseIsnan = []|[{
|