@vinicunca/eslint-config 3.12.0 → 3.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1509 -578
- package/dist/index.js +1 -0
- package/package.json +15 -15
package/dist/index.d.ts
CHANGED
|
@@ -661,233 +661,233 @@ interface RuleOptions {
|
|
|
661
661
|
'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
|
|
662
662
|
/**
|
|
663
663
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
664
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
664
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/consistent-type-specifier-style.md
|
|
665
665
|
*/
|
|
666
666
|
'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
|
|
667
667
|
/**
|
|
668
668
|
* Ensure a default export is present, given a default import.
|
|
669
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
669
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/default.md
|
|
670
670
|
*/
|
|
671
671
|
'import/default'?: Linter.RuleEntry<[]>
|
|
672
672
|
/**
|
|
673
673
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
674
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
674
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/dynamic-import-chunkname.md
|
|
675
675
|
*/
|
|
676
676
|
'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
|
|
677
677
|
/**
|
|
678
678
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
679
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
679
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/export.md
|
|
680
680
|
*/
|
|
681
681
|
'import/export'?: Linter.RuleEntry<[]>
|
|
682
682
|
/**
|
|
683
683
|
* Ensure all exports appear after other statements.
|
|
684
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
684
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/exports-last.md
|
|
685
685
|
*/
|
|
686
686
|
'import/exports-last'?: Linter.RuleEntry<[]>
|
|
687
687
|
/**
|
|
688
688
|
* Ensure consistent use of file extension within the import path.
|
|
689
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
689
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/extensions.md
|
|
690
690
|
*/
|
|
691
691
|
'import/extensions'?: Linter.RuleEntry<ImportExtensions>
|
|
692
692
|
/**
|
|
693
693
|
* Ensure all imports appear before other statements.
|
|
694
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
694
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/first.md
|
|
695
695
|
*/
|
|
696
696
|
'import/first'?: Linter.RuleEntry<ImportFirst>
|
|
697
697
|
/**
|
|
698
698
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
699
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
699
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/group-exports.md
|
|
700
700
|
*/
|
|
701
701
|
'import/group-exports'?: Linter.RuleEntry<[]>
|
|
702
702
|
/**
|
|
703
703
|
* Replaced by `import-x/first`.
|
|
704
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
704
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/imports-first.md
|
|
705
705
|
* @deprecated
|
|
706
706
|
*/
|
|
707
707
|
'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
|
|
708
708
|
/**
|
|
709
709
|
* Enforce the maximum number of dependencies a module can have.
|
|
710
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
710
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/max-dependencies.md
|
|
711
711
|
*/
|
|
712
712
|
'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
|
|
713
713
|
/**
|
|
714
714
|
* Ensure named imports correspond to a named export in the remote file.
|
|
715
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
715
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/named.md
|
|
716
716
|
*/
|
|
717
717
|
'import/named'?: Linter.RuleEntry<ImportNamed>
|
|
718
718
|
/**
|
|
719
719
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
720
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
720
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/namespace.md
|
|
721
721
|
*/
|
|
722
722
|
'import/namespace'?: Linter.RuleEntry<ImportNamespace>
|
|
723
723
|
/**
|
|
724
724
|
* Enforce a newline after import statements.
|
|
725
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
725
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/newline-after-import.md
|
|
726
726
|
*/
|
|
727
727
|
'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
|
|
728
728
|
/**
|
|
729
729
|
* Forbid import of modules using absolute paths.
|
|
730
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
730
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-absolute-path.md
|
|
731
731
|
*/
|
|
732
732
|
'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
|
|
733
733
|
/**
|
|
734
734
|
* Forbid AMD `require` and `define` calls.
|
|
735
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
735
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-amd.md
|
|
736
736
|
*/
|
|
737
737
|
'import/no-amd'?: Linter.RuleEntry<[]>
|
|
738
738
|
/**
|
|
739
739
|
* Forbid anonymous values as default exports.
|
|
740
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
740
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-anonymous-default-export.md
|
|
741
741
|
*/
|
|
742
742
|
'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
|
|
743
743
|
/**
|
|
744
744
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
745
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
745
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-commonjs.md
|
|
746
746
|
*/
|
|
747
747
|
'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
|
|
748
748
|
/**
|
|
749
749
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
750
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
750
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-cycle.md
|
|
751
751
|
*/
|
|
752
752
|
'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
|
|
753
753
|
/**
|
|
754
754
|
* Forbid default exports.
|
|
755
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
755
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-default-export.md
|
|
756
756
|
*/
|
|
757
757
|
'import/no-default-export'?: Linter.RuleEntry<[]>
|
|
758
758
|
/**
|
|
759
759
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
760
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
760
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-deprecated.md
|
|
761
761
|
*/
|
|
762
762
|
'import/no-deprecated'?: Linter.RuleEntry<[]>
|
|
763
763
|
/**
|
|
764
764
|
* Forbid repeated import of the same module in multiple places.
|
|
765
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
765
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-duplicates.md
|
|
766
766
|
*/
|
|
767
767
|
'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
|
|
768
768
|
/**
|
|
769
769
|
* Forbid `require()` calls with expressions.
|
|
770
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
770
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-dynamic-require.md
|
|
771
771
|
*/
|
|
772
772
|
'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
|
|
773
773
|
/**
|
|
774
774
|
* Forbid empty named import blocks.
|
|
775
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
775
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-empty-named-blocks.md
|
|
776
776
|
*/
|
|
777
777
|
'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
778
778
|
/**
|
|
779
779
|
* Forbid the use of extraneous packages.
|
|
780
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
780
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-extraneous-dependencies.md
|
|
781
781
|
*/
|
|
782
782
|
'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
|
|
783
783
|
/**
|
|
784
784
|
* Forbid import statements with CommonJS module.exports.
|
|
785
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
785
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-import-module-exports.md
|
|
786
786
|
*/
|
|
787
787
|
'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
|
|
788
788
|
/**
|
|
789
789
|
* Forbid importing the submodules of other modules.
|
|
790
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
790
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-internal-modules.md
|
|
791
791
|
*/
|
|
792
792
|
'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
|
|
793
793
|
/**
|
|
794
794
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
795
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
795
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-mutable-exports.md
|
|
796
796
|
*/
|
|
797
797
|
'import/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
798
798
|
/**
|
|
799
799
|
* Forbid use of exported name as identifier of default export.
|
|
800
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
800
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-as-default.md
|
|
801
801
|
*/
|
|
802
802
|
'import/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
803
803
|
/**
|
|
804
804
|
* Forbid use of exported name as property of default export.
|
|
805
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
805
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-as-default-member.md
|
|
806
806
|
*/
|
|
807
807
|
'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
808
808
|
/**
|
|
809
809
|
* Forbid named default exports.
|
|
810
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
810
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-default.md
|
|
811
811
|
*/
|
|
812
812
|
'import/no-named-default'?: Linter.RuleEntry<[]>
|
|
813
813
|
/**
|
|
814
814
|
* Forbid named exports.
|
|
815
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
815
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-export.md
|
|
816
816
|
*/
|
|
817
817
|
'import/no-named-export'?: Linter.RuleEntry<[]>
|
|
818
818
|
/**
|
|
819
819
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
820
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
820
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-namespace.md
|
|
821
821
|
*/
|
|
822
822
|
'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
|
|
823
823
|
/**
|
|
824
824
|
* Forbid Node.js builtin modules.
|
|
825
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
825
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-nodejs-modules.md
|
|
826
826
|
*/
|
|
827
827
|
'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
|
|
828
828
|
/**
|
|
829
829
|
* Forbid importing packages through relative paths.
|
|
830
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
830
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-relative-packages.md
|
|
831
831
|
*/
|
|
832
832
|
'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
|
|
833
833
|
/**
|
|
834
834
|
* Forbid importing modules from parent directories.
|
|
835
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
835
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-relative-parent-imports.md
|
|
836
836
|
*/
|
|
837
837
|
'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
|
|
838
838
|
/**
|
|
839
839
|
* Forbid importing a default export by a different name.
|
|
840
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
840
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-rename-default.md
|
|
841
841
|
*/
|
|
842
842
|
'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
|
|
843
843
|
/**
|
|
844
844
|
* Enforce which files can be imported in a given folder.
|
|
845
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
845
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-restricted-paths.md
|
|
846
846
|
*/
|
|
847
847
|
'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
|
|
848
848
|
/**
|
|
849
849
|
* Forbid a module from importing itself.
|
|
850
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
850
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-self-import.md
|
|
851
851
|
*/
|
|
852
852
|
'import/no-self-import'?: Linter.RuleEntry<[]>
|
|
853
853
|
/**
|
|
854
854
|
* Forbid unassigned imports.
|
|
855
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
855
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-unassigned-import.md
|
|
856
856
|
*/
|
|
857
857
|
'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
|
|
858
858
|
/**
|
|
859
859
|
* Ensure imports point to a file/module that can be resolved.
|
|
860
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
860
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-unresolved.md
|
|
861
861
|
*/
|
|
862
862
|
'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
|
|
863
863
|
/**
|
|
864
864
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
865
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
865
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-unused-modules.md
|
|
866
866
|
*/
|
|
867
867
|
'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
|
|
868
868
|
/**
|
|
869
869
|
* Forbid unnecessary path segments in import and require statements.
|
|
870
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
870
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-useless-path-segments.md
|
|
871
871
|
*/
|
|
872
872
|
'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
|
|
873
873
|
/**
|
|
874
874
|
* Forbid webpack loader syntax in imports.
|
|
875
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
875
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-webpack-loader-syntax.md
|
|
876
876
|
*/
|
|
877
877
|
'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
878
878
|
/**
|
|
879
879
|
* Enforce a convention in module import order.
|
|
880
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
880
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/order.md
|
|
881
881
|
*/
|
|
882
882
|
'import/order'?: Linter.RuleEntry<ImportOrder>
|
|
883
883
|
/**
|
|
884
884
|
* Prefer a default export if module exports a single name or multiple names.
|
|
885
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
885
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/prefer-default-export.md
|
|
886
886
|
*/
|
|
887
887
|
'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
|
|
888
888
|
/**
|
|
889
889
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
890
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
890
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/unambiguous.md
|
|
891
891
|
*/
|
|
892
892
|
'import/unambiguous'?: Linter.RuleEntry<[]>
|
|
893
893
|
/**
|
|
@@ -1467,30 +1467,37 @@ interface RuleOptions {
|
|
|
1467
1467
|
'logical-assignment-operators'?: Linter.RuleEntry<LogicalAssignmentOperators>
|
|
1468
1468
|
/**
|
|
1469
1469
|
* Require languages for fenced code blocks
|
|
1470
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/fenced-code-language.md
|
|
1470
1471
|
*/
|
|
1471
1472
|
'markdown/fenced-code-language'?: Linter.RuleEntry<MarkdownFencedCodeLanguage>
|
|
1472
1473
|
/**
|
|
1473
1474
|
* Enforce heading levels increment by one
|
|
1475
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/heading-increment.md
|
|
1474
1476
|
*/
|
|
1475
1477
|
'markdown/heading-increment'?: Linter.RuleEntry<[]>
|
|
1476
1478
|
/**
|
|
1477
1479
|
* Disallow duplicate headings in the same document
|
|
1480
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-duplicate-headings.md
|
|
1478
1481
|
*/
|
|
1479
1482
|
'markdown/no-duplicate-headings'?: Linter.RuleEntry<[]>
|
|
1480
1483
|
/**
|
|
1481
1484
|
* Disallow empty links
|
|
1485
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-empty-links.md
|
|
1482
1486
|
*/
|
|
1483
1487
|
'markdown/no-empty-links'?: Linter.RuleEntry<[]>
|
|
1484
1488
|
/**
|
|
1485
1489
|
* Disallow HTML tags
|
|
1490
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-html.md
|
|
1486
1491
|
*/
|
|
1487
1492
|
'markdown/no-html'?: Linter.RuleEntry<MarkdownNoHtml>
|
|
1488
1493
|
/**
|
|
1489
1494
|
* Disallow invalid label references
|
|
1495
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-invalid-label-refs.md
|
|
1490
1496
|
*/
|
|
1491
1497
|
'markdown/no-invalid-label-refs'?: Linter.RuleEntry<[]>
|
|
1492
1498
|
/**
|
|
1493
1499
|
* Disallow missing label references
|
|
1500
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-label-refs.md
|
|
1494
1501
|
*/
|
|
1495
1502
|
'markdown/no-missing-label-refs'?: Linter.RuleEntry<[]>
|
|
1496
1503
|
/**
|
|
@@ -2171,7 +2178,7 @@ interface RuleOptions {
|
|
|
2171
2178
|
* Disallow identifiers from shadowing restricted names
|
|
2172
2179
|
* @see https://eslint.org/docs/latest/rules/no-shadow-restricted-names
|
|
2173
2180
|
*/
|
|
2174
|
-
'no-shadow-restricted-names'?: Linter.RuleEntry<
|
|
2181
|
+
'no-shadow-restricted-names'?: Linter.RuleEntry<NoShadowRestrictedNames>
|
|
2175
2182
|
/**
|
|
2176
2183
|
* Disallow spacing between function identifiers and their applications (deprecated)
|
|
2177
2184
|
* @see https://eslint.org/docs/latest/rules/no-spaced-func
|
|
@@ -6246,7 +6253,7 @@ interface RuleOptions {
|
|
|
6246
6253
|
*/
|
|
6247
6254
|
'test/no-standalone-expect'?: Linter.RuleEntry<TestNoStandaloneExpect>
|
|
6248
6255
|
/**
|
|
6249
|
-
*
|
|
6256
|
+
* Disallow using the `f` and `x` prefixes in favour of `.only` and `.skip`
|
|
6250
6257
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-test-prefixes.md
|
|
6251
6258
|
*/
|
|
6252
6259
|
'test/no-test-prefixes'?: Linter.RuleEntry<[]>
|
|
@@ -6944,6 +6951,11 @@ interface RuleOptions {
|
|
|
6944
6951
|
* @see https://typescript-eslint.io/rules/no-unnecessary-type-constraint
|
|
6945
6952
|
*/
|
|
6946
6953
|
'ts/no-unnecessary-type-constraint'?: Linter.RuleEntry<[]>
|
|
6954
|
+
/**
|
|
6955
|
+
* Disallow conversion idioms when they do not change the type or value of the expression
|
|
6956
|
+
* @see https://typescript-eslint.io/rules/no-unnecessary-type-conversion
|
|
6957
|
+
*/
|
|
6958
|
+
'ts/no-unnecessary-type-conversion'?: Linter.RuleEntry<[]>
|
|
6947
6959
|
/**
|
|
6948
6960
|
* Disallow type parameters that aren't used multiple times
|
|
6949
6961
|
* @see https://typescript-eslint.io/rules/no-unnecessary-type-parameters
|
|
@@ -7229,643 +7241,670 @@ interface RuleOptions {
|
|
|
7229
7241
|
'unicode-bom'?: Linter.RuleEntry<UnicodeBom>
|
|
7230
7242
|
/**
|
|
7231
7243
|
* Improve regexes by making them shorter, consistent, and safer.
|
|
7232
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7244
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/better-regex.md
|
|
7233
7245
|
*/
|
|
7234
7246
|
'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>
|
|
7235
7247
|
/**
|
|
7236
7248
|
* Enforce a specific parameter name in catch clauses.
|
|
7237
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7249
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/catch-error-name.md
|
|
7238
7250
|
*/
|
|
7239
7251
|
'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>
|
|
7240
7252
|
/**
|
|
7241
7253
|
* Enforce consistent assertion style with `node:assert`.
|
|
7242
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7254
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/consistent-assert.md
|
|
7243
7255
|
*/
|
|
7244
7256
|
'unicorn/consistent-assert'?: Linter.RuleEntry<[]>
|
|
7245
7257
|
/**
|
|
7246
7258
|
* Prefer passing `Date` directly to the constructor when cloning.
|
|
7247
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7259
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/consistent-date-clone.md
|
|
7248
7260
|
*/
|
|
7249
7261
|
'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>
|
|
7250
7262
|
/**
|
|
7251
7263
|
* Use destructured variables over properties.
|
|
7252
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7264
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/consistent-destructuring.md
|
|
7253
7265
|
*/
|
|
7254
7266
|
'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>
|
|
7255
7267
|
/**
|
|
7256
7268
|
* Prefer consistent types when spreading a ternary in an array literal.
|
|
7257
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7269
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/consistent-empty-array-spread.md
|
|
7258
7270
|
*/
|
|
7259
7271
|
'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>
|
|
7260
7272
|
/**
|
|
7261
7273
|
* Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
|
|
7262
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7274
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/consistent-existence-index-check.md
|
|
7263
7275
|
*/
|
|
7264
7276
|
'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>
|
|
7265
7277
|
/**
|
|
7266
7278
|
* Move function definitions to the highest possible scope.
|
|
7267
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7279
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/consistent-function-scoping.md
|
|
7268
7280
|
*/
|
|
7269
7281
|
'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>
|
|
7270
7282
|
/**
|
|
7271
7283
|
* Enforce correct `Error` subclassing.
|
|
7272
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7284
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/custom-error-definition.md
|
|
7273
7285
|
*/
|
|
7274
7286
|
'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>
|
|
7275
7287
|
/**
|
|
7276
7288
|
* Enforce no spaces between braces.
|
|
7277
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7289
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/empty-brace-spaces.md
|
|
7278
7290
|
*/
|
|
7279
7291
|
'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>
|
|
7280
7292
|
/**
|
|
7281
7293
|
* Enforce passing a `message` value when creating a built-in error.
|
|
7282
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7294
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/error-message.md
|
|
7283
7295
|
*/
|
|
7284
7296
|
'unicorn/error-message'?: Linter.RuleEntry<[]>
|
|
7285
7297
|
/**
|
|
7286
7298
|
* Require escape sequences to use uppercase or lowercase values.
|
|
7287
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7299
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/escape-case.md
|
|
7288
7300
|
*/
|
|
7289
7301
|
'unicorn/escape-case'?: Linter.RuleEntry<UnicornEscapeCase>
|
|
7290
7302
|
/**
|
|
7291
7303
|
* Add expiration conditions to TODO comments.
|
|
7292
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7304
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/expiring-todo-comments.md
|
|
7293
7305
|
*/
|
|
7294
7306
|
'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>
|
|
7295
7307
|
/**
|
|
7296
7308
|
* Enforce explicitly comparing the `length` or `size` property of a value.
|
|
7297
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7309
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/explicit-length-check.md
|
|
7298
7310
|
*/
|
|
7299
7311
|
'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>
|
|
7300
7312
|
/**
|
|
7301
7313
|
* Enforce a case style for filenames.
|
|
7302
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7314
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/filename-case.md
|
|
7303
7315
|
*/
|
|
7304
7316
|
'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>
|
|
7305
7317
|
/**
|
|
7306
7318
|
* Enforce specific import styles per module.
|
|
7307
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7319
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/import-style.md
|
|
7308
7320
|
*/
|
|
7309
7321
|
'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>
|
|
7310
7322
|
/**
|
|
7311
7323
|
* Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
|
|
7312
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7324
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/new-for-builtins.md
|
|
7313
7325
|
*/
|
|
7314
7326
|
'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>
|
|
7315
7327
|
/**
|
|
7316
7328
|
* Enforce specifying rules to disable in `eslint-disable` comments.
|
|
7317
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7329
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-abusive-eslint-disable.md
|
|
7318
7330
|
*/
|
|
7319
7331
|
'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>
|
|
7320
7332
|
/**
|
|
7321
7333
|
* Disallow recursive access to `this` within getters and setters.
|
|
7322
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7334
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-accessor-recursion.md
|
|
7323
7335
|
*/
|
|
7324
7336
|
'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>
|
|
7325
7337
|
/**
|
|
7326
7338
|
* Disallow anonymous functions and classes as the default export.
|
|
7327
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7339
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-anonymous-default-export.md
|
|
7328
7340
|
*/
|
|
7329
7341
|
'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>
|
|
7330
7342
|
/**
|
|
7331
7343
|
* Prevent passing a function reference directly to iterator methods.
|
|
7332
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7344
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-array-callback-reference.md
|
|
7333
7345
|
*/
|
|
7334
7346
|
'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>
|
|
7335
7347
|
/**
|
|
7336
7348
|
* Prefer `for…of` over the `forEach` method.
|
|
7337
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7349
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-array-for-each.md
|
|
7338
7350
|
*/
|
|
7339
7351
|
'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>
|
|
7340
7352
|
/**
|
|
7341
7353
|
* Disallow using the `this` argument in array methods.
|
|
7342
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7354
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-array-method-this-argument.md
|
|
7343
7355
|
*/
|
|
7344
7356
|
'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>
|
|
7345
7357
|
/**
|
|
7346
|
-
*
|
|
7347
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7358
|
+
* Replaced by `unicorn/prefer-single-call` which covers more cases.
|
|
7359
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/deprecated-rules.md#no-array-push-push
|
|
7360
|
+
* @deprecated
|
|
7348
7361
|
*/
|
|
7349
|
-
'unicorn/no-array-push-push'?: Linter.RuleEntry<
|
|
7362
|
+
'unicorn/no-array-push-push'?: Linter.RuleEntry<[]>
|
|
7350
7363
|
/**
|
|
7351
7364
|
* Disallow `Array#reduce()` and `Array#reduceRight()`.
|
|
7352
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7365
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-array-reduce.md
|
|
7353
7366
|
*/
|
|
7354
7367
|
'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>
|
|
7355
7368
|
/**
|
|
7356
7369
|
* Disallow member access from await expression.
|
|
7357
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7370
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-await-expression-member.md
|
|
7358
7371
|
*/
|
|
7359
7372
|
'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>
|
|
7360
7373
|
/**
|
|
7361
7374
|
* Disallow using `await` in `Promise` method parameters.
|
|
7362
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7375
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-await-in-promise-methods.md
|
|
7363
7376
|
*/
|
|
7364
7377
|
'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
7365
7378
|
/**
|
|
7366
7379
|
* Do not use leading/trailing space between `console.log` parameters.
|
|
7367
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7380
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-console-spaces.md
|
|
7368
7381
|
*/
|
|
7369
7382
|
'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>
|
|
7370
7383
|
/**
|
|
7371
7384
|
* Do not use `document.cookie` directly.
|
|
7372
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7385
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-document-cookie.md
|
|
7373
7386
|
*/
|
|
7374
7387
|
'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>
|
|
7375
7388
|
/**
|
|
7376
7389
|
* Disallow empty files.
|
|
7377
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7390
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-empty-file.md
|
|
7378
7391
|
*/
|
|
7379
7392
|
'unicorn/no-empty-file'?: Linter.RuleEntry<[]>
|
|
7380
7393
|
/**
|
|
7381
7394
|
* Do not use a `for` loop that can be replaced with a `for-of` loop.
|
|
7382
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7395
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-for-loop.md
|
|
7383
7396
|
*/
|
|
7384
7397
|
'unicorn/no-for-loop'?: Linter.RuleEntry<[]>
|
|
7385
7398
|
/**
|
|
7386
7399
|
* Enforce the use of Unicode escapes instead of hexadecimal escapes.
|
|
7387
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7400
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-hex-escape.md
|
|
7388
7401
|
*/
|
|
7389
7402
|
'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>
|
|
7390
7403
|
/**
|
|
7391
7404
|
* Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
|
|
7392
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7405
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/deprecated-rules.md#no-instanceof-array
|
|
7393
7406
|
* @deprecated
|
|
7394
7407
|
*/
|
|
7395
7408
|
'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>
|
|
7396
7409
|
/**
|
|
7397
7410
|
* Disallow `instanceof` with built-in objects
|
|
7398
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7411
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-instanceof-builtins.md
|
|
7399
7412
|
*/
|
|
7400
7413
|
'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>
|
|
7401
7414
|
/**
|
|
7402
7415
|
* Disallow invalid options in `fetch()` and `new Request()`.
|
|
7403
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7416
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-invalid-fetch-options.md
|
|
7404
7417
|
*/
|
|
7405
7418
|
'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>
|
|
7406
7419
|
/**
|
|
7407
7420
|
* Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
|
|
7408
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7421
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-invalid-remove-event-listener.md
|
|
7409
7422
|
*/
|
|
7410
7423
|
'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>
|
|
7411
7424
|
/**
|
|
7412
7425
|
* Disallow identifiers starting with `new` or `class`.
|
|
7413
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7426
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-keyword-prefix.md
|
|
7414
7427
|
*/
|
|
7415
7428
|
'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>
|
|
7416
7429
|
/**
|
|
7417
|
-
*
|
|
7418
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7430
|
+
* Replaced by `unicorn/no-unnecessary-slice-end` which covers more cases.
|
|
7431
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/deprecated-rules.md#no-length-as-slice-end
|
|
7432
|
+
* @deprecated
|
|
7419
7433
|
*/
|
|
7420
7434
|
'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>
|
|
7421
7435
|
/**
|
|
7422
7436
|
* Disallow `if` statements as the only statement in `if` blocks without `else`.
|
|
7423
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7437
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-lonely-if.md
|
|
7424
7438
|
*/
|
|
7425
7439
|
'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>
|
|
7426
7440
|
/**
|
|
7427
7441
|
* Disallow a magic number as the `depth` argument in `Array#flat(…).`
|
|
7428
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7442
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-magic-array-flat-depth.md
|
|
7429
7443
|
*/
|
|
7430
7444
|
'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>
|
|
7431
7445
|
/**
|
|
7432
7446
|
* Disallow named usage of default import and export.
|
|
7433
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7447
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-named-default.md
|
|
7434
7448
|
*/
|
|
7435
7449
|
'unicorn/no-named-default'?: Linter.RuleEntry<[]>
|
|
7436
7450
|
/**
|
|
7437
7451
|
* Disallow negated conditions.
|
|
7438
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7452
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-negated-condition.md
|
|
7439
7453
|
*/
|
|
7440
7454
|
'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>
|
|
7441
7455
|
/**
|
|
7442
7456
|
* Disallow negated expression in equality check.
|
|
7443
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7457
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-negation-in-equality-check.md
|
|
7444
7458
|
*/
|
|
7445
7459
|
'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>
|
|
7446
7460
|
/**
|
|
7447
7461
|
* Disallow nested ternary expressions.
|
|
7448
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7462
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-nested-ternary.md
|
|
7449
7463
|
*/
|
|
7450
7464
|
'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>
|
|
7451
7465
|
/**
|
|
7452
7466
|
* Disallow `new Array()`.
|
|
7453
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7467
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-new-array.md
|
|
7454
7468
|
*/
|
|
7455
7469
|
'unicorn/no-new-array'?: Linter.RuleEntry<[]>
|
|
7456
7470
|
/**
|
|
7457
7471
|
* Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
|
|
7458
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7472
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-new-buffer.md
|
|
7459
7473
|
*/
|
|
7460
7474
|
'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>
|
|
7461
7475
|
/**
|
|
7462
7476
|
* Disallow the use of the `null` literal.
|
|
7463
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7477
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-null.md
|
|
7464
7478
|
*/
|
|
7465
7479
|
'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>
|
|
7466
7480
|
/**
|
|
7467
7481
|
* Disallow the use of objects as default parameters.
|
|
7468
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7482
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-object-as-default-parameter.md
|
|
7469
7483
|
*/
|
|
7470
7484
|
'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>
|
|
7471
7485
|
/**
|
|
7472
7486
|
* Disallow `process.exit()`.
|
|
7473
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7487
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-process-exit.md
|
|
7474
7488
|
*/
|
|
7475
7489
|
'unicorn/no-process-exit'?: Linter.RuleEntry<[]>
|
|
7476
7490
|
/**
|
|
7477
7491
|
* Disallow passing single-element arrays to `Promise` methods.
|
|
7478
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7492
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-single-promise-in-promise-methods.md
|
|
7479
7493
|
*/
|
|
7480
7494
|
'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
7481
7495
|
/**
|
|
7482
7496
|
* Disallow classes that only have static members.
|
|
7483
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7497
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-static-only-class.md
|
|
7484
7498
|
*/
|
|
7485
7499
|
'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>
|
|
7486
7500
|
/**
|
|
7487
7501
|
* Disallow `then` property.
|
|
7488
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7502
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-thenable.md
|
|
7489
7503
|
*/
|
|
7490
7504
|
'unicorn/no-thenable'?: Linter.RuleEntry<[]>
|
|
7491
7505
|
/**
|
|
7492
7506
|
* Disallow assigning `this` to a variable.
|
|
7493
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7507
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-this-assignment.md
|
|
7494
7508
|
*/
|
|
7495
7509
|
'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>
|
|
7496
7510
|
/**
|
|
7497
7511
|
* Disallow comparing `undefined` using `typeof`.
|
|
7498
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7512
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-typeof-undefined.md
|
|
7499
7513
|
*/
|
|
7500
7514
|
'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>
|
|
7515
|
+
/**
|
|
7516
|
+
* Disallow using `1` as the `depth` argument of `Array#flat()`.
|
|
7517
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unnecessary-array-flat-depth.md
|
|
7518
|
+
*/
|
|
7519
|
+
'unicorn/no-unnecessary-array-flat-depth'?: Linter.RuleEntry<[]>
|
|
7520
|
+
/**
|
|
7521
|
+
* Disallow using `.length` or `Infinity` as the `deleteCount` or `skipCount` argument of `Array#{splice,toSpliced}()`.
|
|
7522
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unnecessary-array-splice-count.md
|
|
7523
|
+
*/
|
|
7524
|
+
'unicorn/no-unnecessary-array-splice-count'?: Linter.RuleEntry<[]>
|
|
7501
7525
|
/**
|
|
7502
7526
|
* Disallow awaiting non-promise values.
|
|
7503
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7527
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unnecessary-await.md
|
|
7504
7528
|
*/
|
|
7505
7529
|
'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>
|
|
7506
7530
|
/**
|
|
7507
7531
|
* Enforce the use of built-in methods instead of unnecessary polyfills.
|
|
7508
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7532
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unnecessary-polyfills.md
|
|
7509
7533
|
*/
|
|
7510
7534
|
'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>
|
|
7535
|
+
/**
|
|
7536
|
+
* Disallow using `.length` or `Infinity` as the `end` argument of `{Array,String,TypedArray}#slice()`.
|
|
7537
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unnecessary-slice-end.md
|
|
7538
|
+
*/
|
|
7539
|
+
'unicorn/no-unnecessary-slice-end'?: Linter.RuleEntry<[]>
|
|
7511
7540
|
/**
|
|
7512
7541
|
* Disallow unreadable array destructuring.
|
|
7513
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7542
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unreadable-array-destructuring.md
|
|
7514
7543
|
*/
|
|
7515
7544
|
'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>
|
|
7516
7545
|
/**
|
|
7517
7546
|
* Disallow unreadable IIFEs.
|
|
7518
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7547
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unreadable-iife.md
|
|
7519
7548
|
*/
|
|
7520
7549
|
'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>
|
|
7521
7550
|
/**
|
|
7522
7551
|
* Disallow unused object properties.
|
|
7523
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7552
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unused-properties.md
|
|
7524
7553
|
*/
|
|
7525
7554
|
'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>
|
|
7526
7555
|
/**
|
|
7527
7556
|
* Disallow useless fallback when spreading in object literals.
|
|
7528
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7557
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-useless-fallback-in-spread.md
|
|
7529
7558
|
*/
|
|
7530
7559
|
'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>
|
|
7531
7560
|
/**
|
|
7532
7561
|
* Disallow useless array length check.
|
|
7533
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7562
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-useless-length-check.md
|
|
7534
7563
|
*/
|
|
7535
7564
|
'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>
|
|
7536
7565
|
/**
|
|
7537
7566
|
* Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
|
|
7538
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7567
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-useless-promise-resolve-reject.md
|
|
7539
7568
|
*/
|
|
7540
7569
|
'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>
|
|
7541
7570
|
/**
|
|
7542
7571
|
* Disallow unnecessary spread.
|
|
7543
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7572
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-useless-spread.md
|
|
7544
7573
|
*/
|
|
7545
7574
|
'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>
|
|
7546
7575
|
/**
|
|
7547
7576
|
* Disallow useless case in switch statements.
|
|
7548
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7577
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-useless-switch-case.md
|
|
7549
7578
|
*/
|
|
7550
7579
|
'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>
|
|
7551
7580
|
/**
|
|
7552
7581
|
* Disallow useless `undefined`.
|
|
7553
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7582
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-useless-undefined.md
|
|
7554
7583
|
*/
|
|
7555
7584
|
'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>
|
|
7556
7585
|
/**
|
|
7557
7586
|
* Disallow number literals with zero fractions or dangling dots.
|
|
7558
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7587
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-zero-fractions.md
|
|
7559
7588
|
*/
|
|
7560
7589
|
'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>
|
|
7561
7590
|
/**
|
|
7562
7591
|
* Enforce proper case for numeric literals.
|
|
7563
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7592
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/number-literal-case.md
|
|
7564
7593
|
*/
|
|
7565
7594
|
'unicorn/number-literal-case'?: Linter.RuleEntry<UnicornNumberLiteralCase>
|
|
7566
7595
|
/**
|
|
7567
7596
|
* Enforce the style of numeric separators by correctly grouping digits.
|
|
7568
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7597
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/numeric-separators-style.md
|
|
7569
7598
|
*/
|
|
7570
7599
|
'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>
|
|
7571
7600
|
/**
|
|
7572
7601
|
* Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
|
|
7573
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7602
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-add-event-listener.md
|
|
7574
7603
|
*/
|
|
7575
7604
|
'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>
|
|
7576
7605
|
/**
|
|
7577
7606
|
* Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
|
|
7578
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7607
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-array-find.md
|
|
7579
7608
|
*/
|
|
7580
7609
|
'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>
|
|
7581
7610
|
/**
|
|
7582
7611
|
* Prefer `Array#flat()` over legacy techniques to flatten arrays.
|
|
7583
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7612
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-array-flat.md
|
|
7584
7613
|
*/
|
|
7585
7614
|
'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>
|
|
7586
7615
|
/**
|
|
7587
7616
|
* Prefer `.flatMap(…)` over `.map(…).flat()`.
|
|
7588
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7617
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-array-flat-map.md
|
|
7589
7618
|
*/
|
|
7590
7619
|
'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>
|
|
7591
7620
|
/**
|
|
7592
7621
|
* Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
|
|
7593
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7622
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-array-index-of.md
|
|
7594
7623
|
*/
|
|
7595
7624
|
'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>
|
|
7596
7625
|
/**
|
|
7597
7626
|
* Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
|
|
7598
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7627
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-array-some.md
|
|
7599
7628
|
*/
|
|
7600
7629
|
'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>
|
|
7601
7630
|
/**
|
|
7602
7631
|
* Prefer `.at()` method for index access and `String#charAt()`.
|
|
7603
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7632
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-at.md
|
|
7604
7633
|
*/
|
|
7605
7634
|
'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>
|
|
7606
7635
|
/**
|
|
7607
7636
|
* Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
|
|
7608
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7637
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-blob-reading-methods.md
|
|
7609
7638
|
*/
|
|
7610
7639
|
'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>
|
|
7611
7640
|
/**
|
|
7612
7641
|
* Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
|
|
7613
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7642
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-code-point.md
|
|
7614
7643
|
*/
|
|
7615
7644
|
'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>
|
|
7616
7645
|
/**
|
|
7617
7646
|
* Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
|
|
7618
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7647
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-date-now.md
|
|
7619
7648
|
*/
|
|
7620
7649
|
'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>
|
|
7621
7650
|
/**
|
|
7622
7651
|
* Prefer default parameters over reassignment.
|
|
7623
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7652
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-default-parameters.md
|
|
7624
7653
|
*/
|
|
7625
7654
|
'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>
|
|
7626
7655
|
/**
|
|
7627
7656
|
* Prefer `Node#append()` over `Node#appendChild()`.
|
|
7628
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7657
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-dom-node-append.md
|
|
7629
7658
|
*/
|
|
7630
7659
|
'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>
|
|
7631
7660
|
/**
|
|
7632
7661
|
* Prefer using `.dataset` on DOM elements over calling attribute methods.
|
|
7633
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7662
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-dom-node-dataset.md
|
|
7634
7663
|
*/
|
|
7635
7664
|
'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>
|
|
7636
7665
|
/**
|
|
7637
7666
|
* Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
|
|
7638
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7667
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-dom-node-remove.md
|
|
7639
7668
|
*/
|
|
7640
7669
|
'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>
|
|
7641
7670
|
/**
|
|
7642
7671
|
* Prefer `.textContent` over `.innerText`.
|
|
7643
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7672
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-dom-node-text-content.md
|
|
7644
7673
|
*/
|
|
7645
7674
|
'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>
|
|
7646
7675
|
/**
|
|
7647
7676
|
* Prefer `EventTarget` over `EventEmitter`.
|
|
7648
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7677
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-event-target.md
|
|
7649
7678
|
*/
|
|
7650
7679
|
'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>
|
|
7651
7680
|
/**
|
|
7652
7681
|
* Prefer `export…from` when re-exporting.
|
|
7653
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7682
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-export-from.md
|
|
7654
7683
|
*/
|
|
7655
7684
|
'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>
|
|
7656
7685
|
/**
|
|
7657
7686
|
* Prefer `globalThis` over `window`, `self`, and `global`.
|
|
7658
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7687
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-global-this.md
|
|
7659
7688
|
*/
|
|
7660
7689
|
'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>
|
|
7690
|
+
/**
|
|
7691
|
+
* Prefer `import.meta.{dirname,filename}` over legacy techniques for getting file paths.
|
|
7692
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-import-meta-properties.md
|
|
7693
|
+
*/
|
|
7694
|
+
'unicorn/prefer-import-meta-properties'?: Linter.RuleEntry<[]>
|
|
7661
7695
|
/**
|
|
7662
7696
|
* Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
|
|
7663
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7697
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-includes.md
|
|
7664
7698
|
*/
|
|
7665
7699
|
'unicorn/prefer-includes'?: Linter.RuleEntry<[]>
|
|
7666
7700
|
/**
|
|
7667
7701
|
* Prefer reading a JSON file as a buffer.
|
|
7668
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7702
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-json-parse-buffer.md
|
|
7669
7703
|
*/
|
|
7670
7704
|
'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>
|
|
7671
7705
|
/**
|
|
7672
7706
|
* Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
|
|
7673
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7707
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-keyboard-event-key.md
|
|
7674
7708
|
*/
|
|
7675
7709
|
'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>
|
|
7676
7710
|
/**
|
|
7677
7711
|
* Prefer using a logical operator over a ternary.
|
|
7678
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7712
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-logical-operator-over-ternary.md
|
|
7679
7713
|
*/
|
|
7680
7714
|
'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>
|
|
7681
7715
|
/**
|
|
7682
7716
|
* Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
|
|
7683
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7717
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-math-min-max.md
|
|
7684
7718
|
*/
|
|
7685
7719
|
'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>
|
|
7686
7720
|
/**
|
|
7687
7721
|
* Enforce the use of `Math.trunc` instead of bitwise operators.
|
|
7688
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7722
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-math-trunc.md
|
|
7689
7723
|
*/
|
|
7690
7724
|
'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>
|
|
7691
7725
|
/**
|
|
7692
7726
|
* Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
|
|
7693
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7727
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-modern-dom-apis.md
|
|
7694
7728
|
*/
|
|
7695
7729
|
'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>
|
|
7696
7730
|
/**
|
|
7697
7731
|
* Prefer modern `Math` APIs over legacy patterns.
|
|
7698
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7732
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-modern-math-apis.md
|
|
7699
7733
|
*/
|
|
7700
7734
|
'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>
|
|
7701
7735
|
/**
|
|
7702
7736
|
* Prefer JavaScript modules (ESM) over CommonJS.
|
|
7703
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7737
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-module.md
|
|
7704
7738
|
*/
|
|
7705
7739
|
'unicorn/prefer-module'?: Linter.RuleEntry<[]>
|
|
7706
7740
|
/**
|
|
7707
7741
|
* Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
|
|
7708
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7742
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-native-coercion-functions.md
|
|
7709
7743
|
*/
|
|
7710
7744
|
'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>
|
|
7711
7745
|
/**
|
|
7712
7746
|
* Prefer negative index over `.length - index` when possible.
|
|
7713
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7747
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-negative-index.md
|
|
7714
7748
|
*/
|
|
7715
7749
|
'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>
|
|
7716
7750
|
/**
|
|
7717
7751
|
* Prefer using the `node:` protocol when importing Node.js builtin modules.
|
|
7718
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7752
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-node-protocol.md
|
|
7719
7753
|
*/
|
|
7720
7754
|
'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>
|
|
7721
7755
|
/**
|
|
7722
7756
|
* Prefer `Number` static properties over global ones.
|
|
7723
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7757
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-number-properties.md
|
|
7724
7758
|
*/
|
|
7725
7759
|
'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>
|
|
7726
7760
|
/**
|
|
7727
7761
|
* Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
|
|
7728
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7762
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-object-from-entries.md
|
|
7729
7763
|
*/
|
|
7730
7764
|
'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>
|
|
7731
7765
|
/**
|
|
7732
7766
|
* Prefer omitting the `catch` binding parameter.
|
|
7733
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7767
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-optional-catch-binding.md
|
|
7734
7768
|
*/
|
|
7735
7769
|
'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>
|
|
7736
7770
|
/**
|
|
7737
7771
|
* Prefer borrowing methods from the prototype instead of the instance.
|
|
7738
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7772
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-prototype-methods.md
|
|
7739
7773
|
*/
|
|
7740
7774
|
'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>
|
|
7741
7775
|
/**
|
|
7742
7776
|
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
|
|
7743
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7777
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-query-selector.md
|
|
7744
7778
|
*/
|
|
7745
7779
|
'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>
|
|
7746
7780
|
/**
|
|
7747
7781
|
* Prefer `Reflect.apply()` over `Function#apply()`.
|
|
7748
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7782
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-reflect-apply.md
|
|
7749
7783
|
*/
|
|
7750
7784
|
'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>
|
|
7751
7785
|
/**
|
|
7752
7786
|
* Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
|
|
7753
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7787
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-regexp-test.md
|
|
7754
7788
|
*/
|
|
7755
7789
|
'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>
|
|
7756
7790
|
/**
|
|
7757
7791
|
* Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
|
|
7758
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7792
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-set-has.md
|
|
7759
7793
|
*/
|
|
7760
7794
|
'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>
|
|
7761
7795
|
/**
|
|
7762
7796
|
* Prefer using `Set#size` instead of `Array#length`.
|
|
7763
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7797
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-set-size.md
|
|
7764
7798
|
*/
|
|
7765
7799
|
'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>
|
|
7800
|
+
/**
|
|
7801
|
+
* Enforce combining multiple `Array#push()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
|
|
7802
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-single-call.md
|
|
7803
|
+
*/
|
|
7804
|
+
'unicorn/prefer-single-call'?: Linter.RuleEntry<UnicornPreferSingleCall>
|
|
7766
7805
|
/**
|
|
7767
7806
|
* Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
|
|
7768
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7807
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-spread.md
|
|
7769
7808
|
*/
|
|
7770
7809
|
'unicorn/prefer-spread'?: Linter.RuleEntry<[]>
|
|
7771
7810
|
/**
|
|
7772
7811
|
* Prefer using the `String.raw` tag to avoid escaping `\`.
|
|
7773
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7812
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-string-raw.md
|
|
7774
7813
|
*/
|
|
7775
7814
|
'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>
|
|
7776
7815
|
/**
|
|
7777
7816
|
* Prefer `String#replaceAll()` over regex searches with the global flag.
|
|
7778
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7817
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-string-replace-all.md
|
|
7779
7818
|
*/
|
|
7780
7819
|
'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>
|
|
7781
7820
|
/**
|
|
7782
7821
|
* Prefer `String#slice()` over `String#substr()` and `String#substring()`.
|
|
7783
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7822
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-string-slice.md
|
|
7784
7823
|
*/
|
|
7785
7824
|
'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>
|
|
7786
7825
|
/**
|
|
7787
7826
|
* Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
|
|
7788
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7827
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-string-starts-ends-with.md
|
|
7789
7828
|
*/
|
|
7790
7829
|
'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>
|
|
7791
7830
|
/**
|
|
7792
7831
|
* Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
|
|
7793
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7832
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-string-trim-start-end.md
|
|
7794
7833
|
*/
|
|
7795
7834
|
'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>
|
|
7796
7835
|
/**
|
|
7797
7836
|
* Prefer using `structuredClone` to create a deep clone.
|
|
7798
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7837
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-structured-clone.md
|
|
7799
7838
|
*/
|
|
7800
7839
|
'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>
|
|
7801
7840
|
/**
|
|
7802
7841
|
* Prefer `switch` over multiple `else-if`.
|
|
7803
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7842
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-switch.md
|
|
7804
7843
|
*/
|
|
7805
7844
|
'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>
|
|
7806
7845
|
/**
|
|
7807
7846
|
* Prefer ternary expressions over simple `if-else` statements.
|
|
7808
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7847
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-ternary.md
|
|
7809
7848
|
*/
|
|
7810
7849
|
'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>
|
|
7811
7850
|
/**
|
|
7812
7851
|
* Prefer top-level await over top-level promises and async function calls.
|
|
7813
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7852
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-top-level-await.md
|
|
7814
7853
|
*/
|
|
7815
7854
|
'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>
|
|
7816
7855
|
/**
|
|
7817
7856
|
* Enforce throwing `TypeError` in type checking conditions.
|
|
7818
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7857
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-type-error.md
|
|
7819
7858
|
*/
|
|
7820
7859
|
'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>
|
|
7821
7860
|
/**
|
|
7822
7861
|
* Prevent abbreviations.
|
|
7823
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7862
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prevent-abbreviations.md
|
|
7824
7863
|
*/
|
|
7825
7864
|
'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>
|
|
7826
7865
|
/**
|
|
7827
7866
|
* Enforce consistent relative URL style.
|
|
7828
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7867
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/relative-url-style.md
|
|
7829
7868
|
*/
|
|
7830
7869
|
'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>
|
|
7831
7870
|
/**
|
|
7832
7871
|
* Enforce using the separator argument with `Array#join()`.
|
|
7833
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7872
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/require-array-join-separator.md
|
|
7834
7873
|
*/
|
|
7835
7874
|
'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>
|
|
7836
7875
|
/**
|
|
7837
7876
|
* Enforce using the digits argument with `Number#toFixed()`.
|
|
7838
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7877
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/require-number-to-fixed-digits-argument.md
|
|
7839
7878
|
*/
|
|
7840
7879
|
'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>
|
|
7841
7880
|
/**
|
|
7842
7881
|
* Enforce using the `targetOrigin` argument with `window.postMessage()`.
|
|
7843
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7882
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/require-post-message-target-origin.md
|
|
7844
7883
|
*/
|
|
7845
7884
|
'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>
|
|
7846
7885
|
/**
|
|
7847
7886
|
* Enforce better string content.
|
|
7848
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7887
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/string-content.md
|
|
7849
7888
|
*/
|
|
7850
7889
|
'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>
|
|
7851
7890
|
/**
|
|
7852
7891
|
* Enforce consistent brace style for `case` clauses.
|
|
7853
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7892
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/switch-case-braces.md
|
|
7854
7893
|
*/
|
|
7855
7894
|
'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>
|
|
7856
7895
|
/**
|
|
7857
7896
|
* Fix whitespace-insensitive template indentation.
|
|
7858
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7897
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/template-indent.md
|
|
7859
7898
|
*/
|
|
7860
7899
|
'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>
|
|
7861
7900
|
/**
|
|
7862
7901
|
* Enforce consistent case for text encoding identifiers.
|
|
7863
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7902
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/text-encoding-identifier-case.md
|
|
7864
7903
|
*/
|
|
7865
7904
|
'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>
|
|
7866
7905
|
/**
|
|
7867
7906
|
* Require `new` when creating an error.
|
|
7868
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
7907
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/throw-new-error.md
|
|
7869
7908
|
*/
|
|
7870
7909
|
'unicorn/throw-new-error'?: Linter.RuleEntry<[]>
|
|
7871
7910
|
/**
|
|
@@ -8033,6 +8072,11 @@ interface RuleOptions {
|
|
|
8033
8072
|
* @see https://eslint.vuejs.org/rules/define-props-declaration.html
|
|
8034
8073
|
*/
|
|
8035
8074
|
'vue/define-props-declaration'?: Linter.RuleEntry<VueDefinePropsDeclaration>
|
|
8075
|
+
/**
|
|
8076
|
+
* enforce consistent style for props destructuring
|
|
8077
|
+
* @see https://eslint.vuejs.org/rules/define-props-destructuring.html
|
|
8078
|
+
*/
|
|
8079
|
+
'vue/define-props-destructuring'?: Linter.RuleEntry<VueDefinePropsDestructuring>
|
|
8036
8080
|
/**
|
|
8037
8081
|
* Enforce consistent newlines before and after dots in `<template>`
|
|
8038
8082
|
* @see https://eslint.vuejs.org/rules/dot-location.html
|
|
@@ -8437,7 +8481,7 @@ interface RuleOptions {
|
|
|
8437
8481
|
* disallow adding multiple root nodes to the template
|
|
8438
8482
|
* @see https://eslint.vuejs.org/rules/no-multiple-template-root.html
|
|
8439
8483
|
*/
|
|
8440
|
-
'vue/no-multiple-template-root'?: Linter.RuleEntry<
|
|
8484
|
+
'vue/no-multiple-template-root'?: Linter.RuleEntry<VueNoMultipleTemplateRoot>
|
|
8441
8485
|
/**
|
|
8442
8486
|
* disallow mutation of component props
|
|
8443
8487
|
* @see https://eslint.vuejs.org/rules/no-mutating-props.html
|
|
@@ -9614,6 +9658,14 @@ type ImportExtensions = ([]|[("always" | "ignorePackages" | "never")] | []|[("al
|
|
|
9614
9658
|
}
|
|
9615
9659
|
ignorePackages?: boolean
|
|
9616
9660
|
checkTypeImports?: boolean
|
|
9661
|
+
pathGroupOverrides?: {
|
|
9662
|
+
pattern: string
|
|
9663
|
+
patternOptions?: {
|
|
9664
|
+
[k: string]: unknown | undefined
|
|
9665
|
+
}
|
|
9666
|
+
action: ("enforce" | "ignore")
|
|
9667
|
+
}[]
|
|
9668
|
+
fix?: boolean
|
|
9617
9669
|
[k: string]: unknown | undefined
|
|
9618
9670
|
}] | []|[{
|
|
9619
9671
|
pattern?: {
|
|
@@ -9621,6 +9673,14 @@ type ImportExtensions = ([]|[("always" | "ignorePackages" | "never")] | []|[("al
|
|
|
9621
9673
|
}
|
|
9622
9674
|
ignorePackages?: boolean
|
|
9623
9675
|
checkTypeImports?: boolean
|
|
9676
|
+
pathGroupOverrides?: {
|
|
9677
|
+
pattern: string
|
|
9678
|
+
patternOptions?: {
|
|
9679
|
+
[k: string]: unknown | undefined
|
|
9680
|
+
}
|
|
9681
|
+
action: ("enforce" | "ignore")
|
|
9682
|
+
}[]
|
|
9683
|
+
fix?: boolean
|
|
9624
9684
|
[k: string]: unknown | undefined
|
|
9625
9685
|
}] | []|[("always" | "ignorePackages" | "never")]|[("always" | "ignorePackages" | "never"), {
|
|
9626
9686
|
[k: string]: ("always" | "ignorePackages" | "never")
|
|
@@ -11197,7 +11257,7 @@ type NoEmpty = []|[{
|
|
|
11197
11257
|
}]
|
|
11198
11258
|
// ----- no-empty-function -----
|
|
11199
11259
|
type NoEmptyFunction = []|[{
|
|
11200
|
-
allow?: ("functions" | "arrowFunctions" | "generatorFunctions" | "methods" | "generatorMethods" | "getters" | "setters" | "constructors" | "asyncFunctions" | "asyncMethods")[]
|
|
11260
|
+
allow?: ("functions" | "arrowFunctions" | "generatorFunctions" | "methods" | "generatorMethods" | "getters" | "setters" | "constructors" | "asyncFunctions" | "asyncMethods" | "privateConstructors" | "protectedConstructors" | "decoratedFunctions" | "overrideMethods")[]
|
|
11201
11261
|
}]
|
|
11202
11262
|
// ----- no-empty-pattern -----
|
|
11203
11263
|
type NoEmptyPattern = []|[{
|
|
@@ -11399,13 +11459,9 @@ type NoRestrictedModules = ((string | {
|
|
|
11399
11459
|
}[])
|
|
11400
11460
|
// ----- no-restricted-properties -----
|
|
11401
11461
|
type NoRestrictedProperties = ({
|
|
11402
|
-
|
|
11403
|
-
property?: string
|
|
11404
|
-
message?: string
|
|
11462
|
+
[k: string]: unknown | undefined
|
|
11405
11463
|
} | {
|
|
11406
|
-
|
|
11407
|
-
property: string
|
|
11408
|
-
message?: string
|
|
11464
|
+
[k: string]: unknown | undefined
|
|
11409
11465
|
})[]
|
|
11410
11466
|
// ----- no-restricted-syntax -----
|
|
11411
11467
|
type NoRestrictedSyntax = (string | {
|
|
@@ -11429,6 +11485,10 @@ type NoShadow = []|[{
|
|
|
11429
11485
|
allow?: string[]
|
|
11430
11486
|
ignoreOnInitialization?: boolean
|
|
11431
11487
|
}]
|
|
11488
|
+
// ----- no-shadow-restricted-names -----
|
|
11489
|
+
type NoShadowRestrictedNames = []|[{
|
|
11490
|
+
reportGlobalThis?: boolean
|
|
11491
|
+
}]
|
|
11432
11492
|
// ----- no-sync -----
|
|
11433
11493
|
type NoSync = []|[{
|
|
11434
11494
|
allowAtRootLevel?: boolean
|
|
@@ -11480,6 +11540,7 @@ type NoUnusedExpressions = []|[{
|
|
|
11480
11540
|
allowTernary?: boolean
|
|
11481
11541
|
allowTaggedTemplates?: boolean
|
|
11482
11542
|
enforceForJSX?: boolean
|
|
11543
|
+
ignoreDirectives?: boolean
|
|
11483
11544
|
}]
|
|
11484
11545
|
// ----- no-unused-vars -----
|
|
11485
11546
|
type NoUnusedVars = []|[(("all" | "local") | {
|
|
@@ -11710,6 +11771,7 @@ type NodeNoUnpublishedImport = []|[{
|
|
|
11710
11771
|
resolverConfig?: {
|
|
11711
11772
|
[k: string]: unknown | undefined
|
|
11712
11773
|
}
|
|
11774
|
+
tryExtensions?: string[]
|
|
11713
11775
|
ignoreTypeImport?: boolean
|
|
11714
11776
|
ignorePrivate?: boolean
|
|
11715
11777
|
}]
|
|
@@ -11753,7 +11815,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
11753
11815
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
11754
11816
|
version?: string
|
|
11755
11817
|
allowExperimental?: boolean
|
|
11756
|
-
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename")[]
|
|
11818
|
+
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent" | "http.ClientRequest" | "http.Server" | "http.ServerResponse" | "http.IncomingMessage" | "http.OutgoingMessage" | "http.WebSocket" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.DatabaseSync" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename")[]
|
|
11757
11819
|
}]
|
|
11758
11820
|
// ----- node/prefer-global/buffer -----
|
|
11759
11821
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -11901,7 +11963,6 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11901
11963
|
order?: ("asc" | "desc")
|
|
11902
11964
|
|
|
11903
11965
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11904
|
-
[k: string]: unknown | undefined
|
|
11905
11966
|
}
|
|
11906
11967
|
|
|
11907
11968
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -11927,10 +11988,9 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11927
11988
|
order?: ("asc" | "desc")
|
|
11928
11989
|
|
|
11929
11990
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11930
|
-
[k: string]: unknown | undefined
|
|
11931
11991
|
}
|
|
11932
11992
|
|
|
11933
|
-
groupName
|
|
11993
|
+
groupName: string
|
|
11934
11994
|
|
|
11935
11995
|
order?: ("asc" | "desc")
|
|
11936
11996
|
|
|
@@ -11940,10 +12000,14 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11940
12000
|
selector?: ("literal" | "spread")
|
|
11941
12001
|
|
|
11942
12002
|
elementNamePattern?: (({
|
|
11943
|
-
|
|
12003
|
+
|
|
12004
|
+
pattern: string
|
|
12005
|
+
|
|
11944
12006
|
flags?: string
|
|
11945
12007
|
} | string)[] | ({
|
|
11946
|
-
|
|
12008
|
+
|
|
12009
|
+
pattern: string
|
|
12010
|
+
|
|
11947
12011
|
flags?: string
|
|
11948
12012
|
} | string))
|
|
11949
12013
|
}[]
|
|
@@ -11956,10 +12020,9 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11956
12020
|
order?: ("asc" | "desc")
|
|
11957
12021
|
|
|
11958
12022
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11959
|
-
[k: string]: unknown | undefined
|
|
11960
12023
|
}
|
|
11961
12024
|
|
|
11962
|
-
groupName
|
|
12025
|
+
groupName: string
|
|
11963
12026
|
|
|
11964
12027
|
order?: ("asc" | "desc")
|
|
11965
12028
|
|
|
@@ -11968,43 +12031,66 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11968
12031
|
selector?: ("literal" | "spread")
|
|
11969
12032
|
|
|
11970
12033
|
elementNamePattern?: (({
|
|
11971
|
-
|
|
12034
|
+
|
|
12035
|
+
pattern: string
|
|
12036
|
+
|
|
11972
12037
|
flags?: string
|
|
11973
12038
|
} | string)[] | ({
|
|
11974
|
-
|
|
12039
|
+
|
|
12040
|
+
pattern: string
|
|
12041
|
+
|
|
11975
12042
|
flags?: string
|
|
11976
12043
|
} | string))
|
|
11977
12044
|
})[]
|
|
12045
|
+
|
|
11978
12046
|
useConfigurationIf?: {
|
|
11979
12047
|
|
|
11980
12048
|
allNamesMatchPattern?: (({
|
|
11981
|
-
|
|
12049
|
+
|
|
12050
|
+
pattern: string
|
|
12051
|
+
|
|
11982
12052
|
flags?: string
|
|
11983
12053
|
} | string)[] | ({
|
|
11984
|
-
|
|
12054
|
+
|
|
12055
|
+
pattern: string
|
|
12056
|
+
|
|
11985
12057
|
flags?: string
|
|
11986
12058
|
} | string))
|
|
11987
12059
|
}
|
|
11988
12060
|
|
|
11989
12061
|
partitionByComment?: (boolean | (({
|
|
11990
|
-
|
|
12062
|
+
|
|
12063
|
+
pattern: string
|
|
12064
|
+
|
|
11991
12065
|
flags?: string
|
|
11992
12066
|
} | string)[] | ({
|
|
11993
|
-
|
|
12067
|
+
|
|
12068
|
+
pattern: string
|
|
12069
|
+
|
|
11994
12070
|
flags?: string
|
|
11995
12071
|
} | string)) | {
|
|
12072
|
+
|
|
11996
12073
|
block?: (boolean | (({
|
|
11997
|
-
|
|
12074
|
+
|
|
12075
|
+
pattern: string
|
|
12076
|
+
|
|
11998
12077
|
flags?: string
|
|
11999
12078
|
} | string)[] | ({
|
|
12000
|
-
|
|
12079
|
+
|
|
12080
|
+
pattern: string
|
|
12081
|
+
|
|
12001
12082
|
flags?: string
|
|
12002
12083
|
} | string)))
|
|
12084
|
+
|
|
12003
12085
|
line?: (boolean | (({
|
|
12004
|
-
|
|
12086
|
+
|
|
12087
|
+
pattern: string
|
|
12088
|
+
|
|
12005
12089
|
flags?: string
|
|
12006
12090
|
} | string)[] | ({
|
|
12007
|
-
|
|
12091
|
+
|
|
12092
|
+
pattern: string
|
|
12093
|
+
|
|
12008
12094
|
flags?: string
|
|
12009
12095
|
} | string)))
|
|
12010
12096
|
})
|
|
@@ -12015,7 +12101,7 @@ type PerfectionistSortArrayIncludes = {
|
|
|
12015
12101
|
|
|
12016
12102
|
groups?: (string | string[] | {
|
|
12017
12103
|
|
|
12018
|
-
newlinesBetween
|
|
12104
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12019
12105
|
})[]
|
|
12020
12106
|
}[]
|
|
12021
12107
|
// ----- perfectionist/sort-classes -----
|
|
@@ -12026,7 +12112,6 @@ type PerfectionistSortClasses = []|[{
|
|
|
12026
12112
|
order?: ("asc" | "desc")
|
|
12027
12113
|
|
|
12028
12114
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12029
|
-
[k: string]: unknown | undefined
|
|
12030
12115
|
}
|
|
12031
12116
|
|
|
12032
12117
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12050,10 +12135,9 @@ type PerfectionistSortClasses = []|[{
|
|
|
12050
12135
|
order?: ("asc" | "desc")
|
|
12051
12136
|
|
|
12052
12137
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12053
|
-
[k: string]: unknown | undefined
|
|
12054
12138
|
}
|
|
12055
12139
|
|
|
12056
|
-
groupName
|
|
12140
|
+
groupName: string
|
|
12057
12141
|
|
|
12058
12142
|
order?: ("asc" | "desc")
|
|
12059
12143
|
|
|
@@ -12065,26 +12149,38 @@ type PerfectionistSortClasses = []|[{
|
|
|
12065
12149
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
12066
12150
|
|
|
12067
12151
|
decoratorNamePattern?: (({
|
|
12068
|
-
|
|
12152
|
+
|
|
12153
|
+
pattern: string
|
|
12154
|
+
|
|
12069
12155
|
flags?: string
|
|
12070
12156
|
} | string)[] | ({
|
|
12071
|
-
|
|
12157
|
+
|
|
12158
|
+
pattern: string
|
|
12159
|
+
|
|
12072
12160
|
flags?: string
|
|
12073
12161
|
} | string))
|
|
12074
12162
|
|
|
12075
12163
|
elementValuePattern?: (({
|
|
12076
|
-
|
|
12164
|
+
|
|
12165
|
+
pattern: string
|
|
12166
|
+
|
|
12077
12167
|
flags?: string
|
|
12078
12168
|
} | string)[] | ({
|
|
12079
|
-
|
|
12169
|
+
|
|
12170
|
+
pattern: string
|
|
12171
|
+
|
|
12080
12172
|
flags?: string
|
|
12081
12173
|
} | string))
|
|
12082
12174
|
|
|
12083
12175
|
elementNamePattern?: (({
|
|
12084
|
-
|
|
12176
|
+
|
|
12177
|
+
pattern: string
|
|
12178
|
+
|
|
12085
12179
|
flags?: string
|
|
12086
12180
|
} | string)[] | ({
|
|
12087
|
-
|
|
12181
|
+
|
|
12182
|
+
pattern: string
|
|
12183
|
+
|
|
12088
12184
|
flags?: string
|
|
12089
12185
|
} | string))
|
|
12090
12186
|
}[]
|
|
@@ -12097,10 +12193,9 @@ type PerfectionistSortClasses = []|[{
|
|
|
12097
12193
|
order?: ("asc" | "desc")
|
|
12098
12194
|
|
|
12099
12195
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12100
|
-
[k: string]: unknown | undefined
|
|
12101
12196
|
}
|
|
12102
12197
|
|
|
12103
|
-
groupName
|
|
12198
|
+
groupName: string
|
|
12104
12199
|
|
|
12105
12200
|
order?: ("asc" | "desc")
|
|
12106
12201
|
|
|
@@ -12111,57 +12206,87 @@ type PerfectionistSortClasses = []|[{
|
|
|
12111
12206
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
12112
12207
|
|
|
12113
12208
|
decoratorNamePattern?: (({
|
|
12114
|
-
|
|
12209
|
+
|
|
12210
|
+
pattern: string
|
|
12211
|
+
|
|
12115
12212
|
flags?: string
|
|
12116
12213
|
} | string)[] | ({
|
|
12117
|
-
|
|
12214
|
+
|
|
12215
|
+
pattern: string
|
|
12216
|
+
|
|
12118
12217
|
flags?: string
|
|
12119
12218
|
} | string))
|
|
12120
12219
|
|
|
12121
12220
|
elementValuePattern?: (({
|
|
12122
|
-
|
|
12221
|
+
|
|
12222
|
+
pattern: string
|
|
12223
|
+
|
|
12123
12224
|
flags?: string
|
|
12124
12225
|
} | string)[] | ({
|
|
12125
|
-
|
|
12226
|
+
|
|
12227
|
+
pattern: string
|
|
12228
|
+
|
|
12126
12229
|
flags?: string
|
|
12127
12230
|
} | string))
|
|
12128
12231
|
|
|
12129
12232
|
elementNamePattern?: (({
|
|
12130
|
-
|
|
12233
|
+
|
|
12234
|
+
pattern: string
|
|
12235
|
+
|
|
12131
12236
|
flags?: string
|
|
12132
12237
|
} | string)[] | ({
|
|
12133
|
-
|
|
12238
|
+
|
|
12239
|
+
pattern: string
|
|
12240
|
+
|
|
12134
12241
|
flags?: string
|
|
12135
12242
|
} | string))
|
|
12136
12243
|
})[]
|
|
12137
12244
|
|
|
12138
12245
|
ignoreCallbackDependenciesPatterns?: (({
|
|
12139
|
-
|
|
12246
|
+
|
|
12247
|
+
pattern: string
|
|
12248
|
+
|
|
12140
12249
|
flags?: string
|
|
12141
12250
|
} | string)[] | ({
|
|
12142
|
-
|
|
12251
|
+
|
|
12252
|
+
pattern: string
|
|
12253
|
+
|
|
12143
12254
|
flags?: string
|
|
12144
12255
|
} | string))
|
|
12145
12256
|
|
|
12146
12257
|
partitionByComment?: (boolean | (({
|
|
12147
|
-
|
|
12258
|
+
|
|
12259
|
+
pattern: string
|
|
12260
|
+
|
|
12148
12261
|
flags?: string
|
|
12149
12262
|
} | string)[] | ({
|
|
12150
|
-
|
|
12263
|
+
|
|
12264
|
+
pattern: string
|
|
12265
|
+
|
|
12151
12266
|
flags?: string
|
|
12152
12267
|
} | string)) | {
|
|
12268
|
+
|
|
12153
12269
|
block?: (boolean | (({
|
|
12154
|
-
|
|
12270
|
+
|
|
12271
|
+
pattern: string
|
|
12272
|
+
|
|
12155
12273
|
flags?: string
|
|
12156
12274
|
} | string)[] | ({
|
|
12157
|
-
|
|
12275
|
+
|
|
12276
|
+
pattern: string
|
|
12277
|
+
|
|
12158
12278
|
flags?: string
|
|
12159
12279
|
} | string)))
|
|
12280
|
+
|
|
12160
12281
|
line?: (boolean | (({
|
|
12161
|
-
|
|
12282
|
+
|
|
12283
|
+
pattern: string
|
|
12284
|
+
|
|
12162
12285
|
flags?: string
|
|
12163
12286
|
} | string)[] | ({
|
|
12164
|
-
|
|
12287
|
+
|
|
12288
|
+
pattern: string
|
|
12289
|
+
|
|
12165
12290
|
flags?: string
|
|
12166
12291
|
} | string)))
|
|
12167
12292
|
})
|
|
@@ -12172,7 +12297,7 @@ type PerfectionistSortClasses = []|[{
|
|
|
12172
12297
|
|
|
12173
12298
|
groups?: (string | string[] | {
|
|
12174
12299
|
|
|
12175
|
-
newlinesBetween
|
|
12300
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12176
12301
|
})[]
|
|
12177
12302
|
}]
|
|
12178
12303
|
// ----- perfectionist/sort-decorators -----
|
|
@@ -12183,7 +12308,6 @@ type PerfectionistSortDecorators = []|[{
|
|
|
12183
12308
|
order?: ("asc" | "desc")
|
|
12184
12309
|
|
|
12185
12310
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12186
|
-
[k: string]: unknown | undefined
|
|
12187
12311
|
}
|
|
12188
12312
|
|
|
12189
12313
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12209,24 +12333,38 @@ type PerfectionistSortDecorators = []|[{
|
|
|
12209
12333
|
sortOnClasses?: boolean
|
|
12210
12334
|
|
|
12211
12335
|
partitionByComment?: (boolean | (({
|
|
12212
|
-
|
|
12336
|
+
|
|
12337
|
+
pattern: string
|
|
12338
|
+
|
|
12213
12339
|
flags?: string
|
|
12214
12340
|
} | string)[] | ({
|
|
12215
|
-
|
|
12341
|
+
|
|
12342
|
+
pattern: string
|
|
12343
|
+
|
|
12216
12344
|
flags?: string
|
|
12217
12345
|
} | string)) | {
|
|
12346
|
+
|
|
12218
12347
|
block?: (boolean | (({
|
|
12219
|
-
|
|
12348
|
+
|
|
12349
|
+
pattern: string
|
|
12350
|
+
|
|
12220
12351
|
flags?: string
|
|
12221
12352
|
} | string)[] | ({
|
|
12222
|
-
|
|
12353
|
+
|
|
12354
|
+
pattern: string
|
|
12355
|
+
|
|
12223
12356
|
flags?: string
|
|
12224
12357
|
} | string)))
|
|
12358
|
+
|
|
12225
12359
|
line?: (boolean | (({
|
|
12226
|
-
|
|
12360
|
+
|
|
12361
|
+
pattern: string
|
|
12362
|
+
|
|
12227
12363
|
flags?: string
|
|
12228
12364
|
} | string)[] | ({
|
|
12229
|
-
|
|
12365
|
+
|
|
12366
|
+
pattern: string
|
|
12367
|
+
|
|
12230
12368
|
flags?: string
|
|
12231
12369
|
} | string)))
|
|
12232
12370
|
})
|
|
@@ -12237,7 +12375,7 @@ type PerfectionistSortDecorators = []|[{
|
|
|
12237
12375
|
|
|
12238
12376
|
groups?: (string | string[] | {
|
|
12239
12377
|
|
|
12240
|
-
newlinesBetween
|
|
12378
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12241
12379
|
})[]
|
|
12242
12380
|
}]
|
|
12243
12381
|
// ----- perfectionist/sort-enums -----
|
|
@@ -12248,7 +12386,6 @@ type PerfectionistSortEnums = []|[{
|
|
|
12248
12386
|
order?: ("asc" | "desc")
|
|
12249
12387
|
|
|
12250
12388
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12251
|
-
[k: string]: unknown | undefined
|
|
12252
12389
|
}
|
|
12253
12390
|
|
|
12254
12391
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12262,8 +12399,6 @@ type PerfectionistSortEnums = []|[{
|
|
|
12262
12399
|
order?: ("asc" | "desc")
|
|
12263
12400
|
|
|
12264
12401
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12265
|
-
|
|
12266
|
-
forceNumericSort?: boolean
|
|
12267
12402
|
customGroups?: ({
|
|
12268
12403
|
[k: string]: (string | string[]) | undefined
|
|
12269
12404
|
} | ({
|
|
@@ -12275,10 +12410,9 @@ type PerfectionistSortEnums = []|[{
|
|
|
12275
12410
|
order?: ("asc" | "desc")
|
|
12276
12411
|
|
|
12277
12412
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12278
|
-
[k: string]: unknown | undefined
|
|
12279
12413
|
}
|
|
12280
12414
|
|
|
12281
|
-
groupName
|
|
12415
|
+
groupName: string
|
|
12282
12416
|
|
|
12283
12417
|
order?: ("asc" | "desc")
|
|
12284
12418
|
|
|
@@ -12286,18 +12420,26 @@ type PerfectionistSortEnums = []|[{
|
|
|
12286
12420
|
anyOf?: {
|
|
12287
12421
|
|
|
12288
12422
|
elementValuePattern?: (({
|
|
12289
|
-
|
|
12423
|
+
|
|
12424
|
+
pattern: string
|
|
12425
|
+
|
|
12290
12426
|
flags?: string
|
|
12291
12427
|
} | string)[] | ({
|
|
12292
|
-
|
|
12428
|
+
|
|
12429
|
+
pattern: string
|
|
12430
|
+
|
|
12293
12431
|
flags?: string
|
|
12294
12432
|
} | string))
|
|
12295
12433
|
|
|
12296
12434
|
elementNamePattern?: (({
|
|
12297
|
-
|
|
12435
|
+
|
|
12436
|
+
pattern: string
|
|
12437
|
+
|
|
12298
12438
|
flags?: string
|
|
12299
12439
|
} | string)[] | ({
|
|
12300
|
-
|
|
12440
|
+
|
|
12441
|
+
pattern: string
|
|
12442
|
+
|
|
12301
12443
|
flags?: string
|
|
12302
12444
|
} | string))
|
|
12303
12445
|
}[]
|
|
@@ -12310,53 +12452,76 @@ type PerfectionistSortEnums = []|[{
|
|
|
12310
12452
|
order?: ("asc" | "desc")
|
|
12311
12453
|
|
|
12312
12454
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12313
|
-
[k: string]: unknown | undefined
|
|
12314
12455
|
}
|
|
12315
12456
|
|
|
12316
|
-
groupName
|
|
12457
|
+
groupName: string
|
|
12317
12458
|
|
|
12318
12459
|
order?: ("asc" | "desc")
|
|
12319
12460
|
|
|
12320
12461
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12321
12462
|
|
|
12322
12463
|
elementValuePattern?: (({
|
|
12323
|
-
|
|
12464
|
+
|
|
12465
|
+
pattern: string
|
|
12466
|
+
|
|
12324
12467
|
flags?: string
|
|
12325
12468
|
} | string)[] | ({
|
|
12326
|
-
|
|
12469
|
+
|
|
12470
|
+
pattern: string
|
|
12471
|
+
|
|
12327
12472
|
flags?: string
|
|
12328
12473
|
} | string))
|
|
12329
12474
|
|
|
12330
12475
|
elementNamePattern?: (({
|
|
12331
|
-
|
|
12476
|
+
|
|
12477
|
+
pattern: string
|
|
12478
|
+
|
|
12332
12479
|
flags?: string
|
|
12333
12480
|
} | string)[] | ({
|
|
12334
|
-
|
|
12481
|
+
|
|
12482
|
+
pattern: string
|
|
12483
|
+
|
|
12335
12484
|
flags?: string
|
|
12336
12485
|
} | string))
|
|
12337
12486
|
})[])
|
|
12338
12487
|
|
|
12488
|
+
forceNumericSort?: boolean
|
|
12489
|
+
|
|
12339
12490
|
sortByValue?: boolean
|
|
12340
12491
|
|
|
12341
12492
|
partitionByComment?: (boolean | (({
|
|
12342
|
-
|
|
12493
|
+
|
|
12494
|
+
pattern: string
|
|
12495
|
+
|
|
12343
12496
|
flags?: string
|
|
12344
12497
|
} | string)[] | ({
|
|
12345
|
-
|
|
12498
|
+
|
|
12499
|
+
pattern: string
|
|
12500
|
+
|
|
12346
12501
|
flags?: string
|
|
12347
12502
|
} | string)) | {
|
|
12503
|
+
|
|
12348
12504
|
block?: (boolean | (({
|
|
12349
|
-
|
|
12505
|
+
|
|
12506
|
+
pattern: string
|
|
12507
|
+
|
|
12350
12508
|
flags?: string
|
|
12351
12509
|
} | string)[] | ({
|
|
12352
|
-
|
|
12510
|
+
|
|
12511
|
+
pattern: string
|
|
12512
|
+
|
|
12353
12513
|
flags?: string
|
|
12354
12514
|
} | string)))
|
|
12515
|
+
|
|
12355
12516
|
line?: (boolean | (({
|
|
12356
|
-
|
|
12517
|
+
|
|
12518
|
+
pattern: string
|
|
12519
|
+
|
|
12357
12520
|
flags?: string
|
|
12358
12521
|
} | string)[] | ({
|
|
12359
|
-
|
|
12522
|
+
|
|
12523
|
+
pattern: string
|
|
12524
|
+
|
|
12360
12525
|
flags?: string
|
|
12361
12526
|
} | string)))
|
|
12362
12527
|
})
|
|
@@ -12367,7 +12532,7 @@ type PerfectionistSortEnums = []|[{
|
|
|
12367
12532
|
|
|
12368
12533
|
groups?: (string | string[] | {
|
|
12369
12534
|
|
|
12370
|
-
newlinesBetween
|
|
12535
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12371
12536
|
})[]
|
|
12372
12537
|
}]
|
|
12373
12538
|
// ----- perfectionist/sort-exports -----
|
|
@@ -12378,7 +12543,6 @@ type PerfectionistSortExports = {
|
|
|
12378
12543
|
order?: ("asc" | "desc")
|
|
12379
12544
|
|
|
12380
12545
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12381
|
-
[k: string]: unknown | undefined
|
|
12382
12546
|
}
|
|
12383
12547
|
|
|
12384
12548
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12404,10 +12568,9 @@ type PerfectionistSortExports = {
|
|
|
12404
12568
|
order?: ("asc" | "desc")
|
|
12405
12569
|
|
|
12406
12570
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12407
|
-
[k: string]: unknown | undefined
|
|
12408
12571
|
}
|
|
12409
12572
|
|
|
12410
|
-
groupName
|
|
12573
|
+
groupName: string
|
|
12411
12574
|
|
|
12412
12575
|
order?: ("asc" | "desc")
|
|
12413
12576
|
|
|
@@ -12419,10 +12582,14 @@ type PerfectionistSortExports = {
|
|
|
12419
12582
|
selector?: "export"
|
|
12420
12583
|
|
|
12421
12584
|
elementNamePattern?: (({
|
|
12422
|
-
|
|
12585
|
+
|
|
12586
|
+
pattern: string
|
|
12587
|
+
|
|
12423
12588
|
flags?: string
|
|
12424
12589
|
} | string)[] | ({
|
|
12425
|
-
|
|
12590
|
+
|
|
12591
|
+
pattern: string
|
|
12592
|
+
|
|
12426
12593
|
flags?: string
|
|
12427
12594
|
} | string))
|
|
12428
12595
|
}[]
|
|
@@ -12435,10 +12602,9 @@ type PerfectionistSortExports = {
|
|
|
12435
12602
|
order?: ("asc" | "desc")
|
|
12436
12603
|
|
|
12437
12604
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12438
|
-
[k: string]: unknown | undefined
|
|
12439
12605
|
}
|
|
12440
12606
|
|
|
12441
|
-
groupName
|
|
12607
|
+
groupName: string
|
|
12442
12608
|
|
|
12443
12609
|
order?: ("asc" | "desc")
|
|
12444
12610
|
|
|
@@ -12449,33 +12615,51 @@ type PerfectionistSortExports = {
|
|
|
12449
12615
|
selector?: "export"
|
|
12450
12616
|
|
|
12451
12617
|
elementNamePattern?: (({
|
|
12452
|
-
|
|
12618
|
+
|
|
12619
|
+
pattern: string
|
|
12620
|
+
|
|
12453
12621
|
flags?: string
|
|
12454
12622
|
} | string)[] | ({
|
|
12455
|
-
|
|
12623
|
+
|
|
12624
|
+
pattern: string
|
|
12625
|
+
|
|
12456
12626
|
flags?: string
|
|
12457
12627
|
} | string))
|
|
12458
12628
|
})[]
|
|
12459
12629
|
|
|
12460
12630
|
partitionByComment?: (boolean | (({
|
|
12461
|
-
|
|
12631
|
+
|
|
12632
|
+
pattern: string
|
|
12633
|
+
|
|
12462
12634
|
flags?: string
|
|
12463
12635
|
} | string)[] | ({
|
|
12464
|
-
|
|
12636
|
+
|
|
12637
|
+
pattern: string
|
|
12638
|
+
|
|
12465
12639
|
flags?: string
|
|
12466
12640
|
} | string)) | {
|
|
12641
|
+
|
|
12467
12642
|
block?: (boolean | (({
|
|
12468
|
-
|
|
12643
|
+
|
|
12644
|
+
pattern: string
|
|
12645
|
+
|
|
12469
12646
|
flags?: string
|
|
12470
12647
|
} | string)[] | ({
|
|
12471
|
-
|
|
12648
|
+
|
|
12649
|
+
pattern: string
|
|
12650
|
+
|
|
12472
12651
|
flags?: string
|
|
12473
12652
|
} | string)))
|
|
12653
|
+
|
|
12474
12654
|
line?: (boolean | (({
|
|
12475
|
-
|
|
12655
|
+
|
|
12656
|
+
pattern: string
|
|
12657
|
+
|
|
12476
12658
|
flags?: string
|
|
12477
12659
|
} | string)[] | ({
|
|
12478
|
-
|
|
12660
|
+
|
|
12661
|
+
pattern: string
|
|
12662
|
+
|
|
12479
12663
|
flags?: string
|
|
12480
12664
|
} | string)))
|
|
12481
12665
|
})
|
|
@@ -12486,7 +12670,7 @@ type PerfectionistSortExports = {
|
|
|
12486
12670
|
|
|
12487
12671
|
groups?: (string | string[] | {
|
|
12488
12672
|
|
|
12489
|
-
newlinesBetween
|
|
12673
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12490
12674
|
})[]
|
|
12491
12675
|
}[]
|
|
12492
12676
|
// ----- perfectionist/sort-heritage-clauses -----
|
|
@@ -12497,7 +12681,6 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
12497
12681
|
order?: ("asc" | "desc")
|
|
12498
12682
|
|
|
12499
12683
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12500
|
-
[k: string]: unknown | undefined
|
|
12501
12684
|
}
|
|
12502
12685
|
|
|
12503
12686
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12518,19 +12701,17 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
12518
12701
|
|
|
12519
12702
|
groups?: (string | string[] | {
|
|
12520
12703
|
|
|
12521
|
-
newlinesBetween
|
|
12704
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12522
12705
|
})[]
|
|
12523
12706
|
}]
|
|
12524
12707
|
// ----- perfectionist/sort-imports -----
|
|
12525
|
-
type PerfectionistSortImports =
|
|
12526
|
-
type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
|
|
12708
|
+
type PerfectionistSortImports = {
|
|
12527
12709
|
|
|
12528
12710
|
fallbackSort?: {
|
|
12529
12711
|
|
|
12530
12712
|
order?: ("asc" | "desc")
|
|
12531
12713
|
|
|
12532
12714
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12533
|
-
[k: string]: unknown | undefined
|
|
12534
12715
|
}
|
|
12535
12716
|
|
|
12536
12717
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12544,97 +12725,15 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
12544
12725
|
order?: ("asc" | "desc")
|
|
12545
12726
|
|
|
12546
12727
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12547
|
-
|
|
12548
|
-
customGroups?: {
|
|
12728
|
+
customGroups?: ({
|
|
12549
12729
|
|
|
12550
12730
|
value?: {
|
|
12551
|
-
[k: string]:
|
|
12731
|
+
[k: string]: (string | string[]) | undefined
|
|
12552
12732
|
}
|
|
12553
12733
|
|
|
12554
12734
|
type?: {
|
|
12555
|
-
[k: string]:
|
|
12735
|
+
[k: string]: (string | string[]) | undefined
|
|
12556
12736
|
}
|
|
12557
|
-
}
|
|
12558
|
-
|
|
12559
|
-
maxLineLength?: number
|
|
12560
|
-
|
|
12561
|
-
sortSideEffects?: boolean
|
|
12562
|
-
|
|
12563
|
-
environment?: ("node" | "bun")
|
|
12564
|
-
|
|
12565
|
-
tsconfigRootDir?: string
|
|
12566
|
-
|
|
12567
|
-
partitionByComment?: (boolean | (({
|
|
12568
|
-
pattern?: string
|
|
12569
|
-
flags?: string
|
|
12570
|
-
} | string)[] | ({
|
|
12571
|
-
pattern?: string
|
|
12572
|
-
flags?: string
|
|
12573
|
-
} | string)) | {
|
|
12574
|
-
block?: (boolean | (({
|
|
12575
|
-
pattern?: string
|
|
12576
|
-
flags?: string
|
|
12577
|
-
} | string)[] | ({
|
|
12578
|
-
pattern?: string
|
|
12579
|
-
flags?: string
|
|
12580
|
-
} | string)))
|
|
12581
|
-
line?: (boolean | (({
|
|
12582
|
-
pattern?: string
|
|
12583
|
-
flags?: string
|
|
12584
|
-
} | string)[] | ({
|
|
12585
|
-
pattern?: string
|
|
12586
|
-
flags?: string
|
|
12587
|
-
} | string)))
|
|
12588
|
-
})
|
|
12589
|
-
|
|
12590
|
-
partitionByNewLine?: boolean
|
|
12591
|
-
|
|
12592
|
-
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12593
|
-
|
|
12594
|
-
internalPattern?: (({
|
|
12595
|
-
pattern?: string
|
|
12596
|
-
flags?: string
|
|
12597
|
-
} | string)[] | ({
|
|
12598
|
-
pattern?: string
|
|
12599
|
-
flags?: string
|
|
12600
|
-
} | string))
|
|
12601
|
-
|
|
12602
|
-
groups?: (string | string[] | {
|
|
12603
|
-
|
|
12604
|
-
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12605
|
-
})[]
|
|
12606
|
-
})
|
|
12607
|
-
type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
|
|
12608
|
-
[k: string]: unknown | undefined
|
|
12609
|
-
} | _PerfectionistSortImports_IsLineLength)
|
|
12610
|
-
interface _PerfectionistSortImports_IsLineLength {
|
|
12611
|
-
type: "line-length"
|
|
12612
|
-
[k: string]: unknown | undefined
|
|
12613
|
-
}
|
|
12614
|
-
// ----- perfectionist/sort-interfaces -----
|
|
12615
|
-
type PerfectionistSortInterfaces = {
|
|
12616
|
-
|
|
12617
|
-
fallbackSort?: {
|
|
12618
|
-
|
|
12619
|
-
order?: ("asc" | "desc")
|
|
12620
|
-
|
|
12621
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12622
|
-
[k: string]: unknown | undefined
|
|
12623
|
-
}
|
|
12624
|
-
|
|
12625
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12626
|
-
|
|
12627
|
-
ignoreCase?: boolean
|
|
12628
|
-
|
|
12629
|
-
alphabet?: string
|
|
12630
|
-
|
|
12631
|
-
locales?: (string | string[])
|
|
12632
|
-
|
|
12633
|
-
order?: ("asc" | "desc")
|
|
12634
|
-
|
|
12635
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12636
|
-
customGroups?: ({
|
|
12637
|
-
[k: string]: (string | string[]) | undefined
|
|
12638
12737
|
} | ({
|
|
12639
12738
|
|
|
12640
12739
|
newlinesInside?: ("always" | "never")
|
|
@@ -12644,37 +12743,42 @@ type PerfectionistSortInterfaces = {
|
|
|
12644
12743
|
order?: ("asc" | "desc")
|
|
12645
12744
|
|
|
12646
12745
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12647
|
-
sortBy?: ("name" | "value")
|
|
12648
|
-
[k: string]: unknown | undefined
|
|
12649
12746
|
}
|
|
12650
12747
|
|
|
12651
|
-
groupName
|
|
12748
|
+
groupName: string
|
|
12652
12749
|
|
|
12653
12750
|
order?: ("asc" | "desc")
|
|
12654
12751
|
|
|
12655
12752
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12656
12753
|
anyOf?: {
|
|
12657
12754
|
|
|
12658
|
-
modifiers?: ("
|
|
12755
|
+
modifiers?: ("default" | "named" | "require" | "side-effect" | "ts-equals" | "type" | "value" | "wildcard")[]
|
|
12659
12756
|
|
|
12660
|
-
selector?: ("
|
|
12757
|
+
selector?: ("side-effect-style" | "tsconfig-path" | "side-effect" | "external" | "internal" | "builtin" | "sibling" | "subpath" | "import" | "parent" | "index" | "style" | "type")
|
|
12661
12758
|
|
|
12662
12759
|
elementValuePattern?: (({
|
|
12663
|
-
|
|
12760
|
+
|
|
12761
|
+
pattern: string
|
|
12762
|
+
|
|
12664
12763
|
flags?: string
|
|
12665
12764
|
} | string)[] | ({
|
|
12666
|
-
|
|
12765
|
+
|
|
12766
|
+
pattern: string
|
|
12767
|
+
|
|
12667
12768
|
flags?: string
|
|
12668
12769
|
} | string))
|
|
12669
12770
|
|
|
12670
12771
|
elementNamePattern?: (({
|
|
12671
|
-
|
|
12772
|
+
|
|
12773
|
+
pattern: string
|
|
12774
|
+
|
|
12672
12775
|
flags?: string
|
|
12673
12776
|
} | string)[] | ({
|
|
12674
|
-
|
|
12777
|
+
|
|
12778
|
+
pattern: string
|
|
12779
|
+
|
|
12675
12780
|
flags?: string
|
|
12676
12781
|
} | string))
|
|
12677
|
-
sortBy?: ("name" | "value")
|
|
12678
12782
|
}[]
|
|
12679
12783
|
} | {
|
|
12680
12784
|
|
|
@@ -12685,77 +12789,291 @@ type PerfectionistSortInterfaces = {
|
|
|
12685
12789
|
order?: ("asc" | "desc")
|
|
12686
12790
|
|
|
12687
12791
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12688
|
-
sortBy?: ("name" | "value")
|
|
12689
|
-
[k: string]: unknown | undefined
|
|
12690
12792
|
}
|
|
12691
12793
|
|
|
12692
|
-
groupName
|
|
12794
|
+
groupName: string
|
|
12693
12795
|
|
|
12694
12796
|
order?: ("asc" | "desc")
|
|
12695
12797
|
|
|
12696
12798
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12697
12799
|
|
|
12698
|
-
modifiers?: ("
|
|
12800
|
+
modifiers?: ("default" | "named" | "require" | "side-effect" | "ts-equals" | "type" | "value" | "wildcard")[]
|
|
12699
12801
|
|
|
12700
|
-
selector?: ("
|
|
12802
|
+
selector?: ("side-effect-style" | "tsconfig-path" | "side-effect" | "external" | "internal" | "builtin" | "sibling" | "subpath" | "import" | "parent" | "index" | "style" | "type")
|
|
12701
12803
|
|
|
12702
12804
|
elementValuePattern?: (({
|
|
12703
|
-
|
|
12805
|
+
|
|
12806
|
+
pattern: string
|
|
12807
|
+
|
|
12704
12808
|
flags?: string
|
|
12705
12809
|
} | string)[] | ({
|
|
12706
|
-
|
|
12810
|
+
|
|
12811
|
+
pattern: string
|
|
12812
|
+
|
|
12707
12813
|
flags?: string
|
|
12708
12814
|
} | string))
|
|
12709
12815
|
|
|
12710
12816
|
elementNamePattern?: (({
|
|
12711
|
-
|
|
12817
|
+
|
|
12818
|
+
pattern: string
|
|
12819
|
+
|
|
12712
12820
|
flags?: string
|
|
12713
12821
|
} | string)[] | ({
|
|
12714
|
-
|
|
12822
|
+
|
|
12823
|
+
pattern: string
|
|
12824
|
+
|
|
12825
|
+
flags?: string
|
|
12826
|
+
} | string))
|
|
12827
|
+
})[])
|
|
12828
|
+
|
|
12829
|
+
maxLineLength?: number
|
|
12830
|
+
|
|
12831
|
+
sortSideEffects?: boolean
|
|
12832
|
+
|
|
12833
|
+
environment?: ("node" | "bun")
|
|
12834
|
+
|
|
12835
|
+
tsconfigRootDir?: string
|
|
12836
|
+
|
|
12837
|
+
partitionByComment?: (boolean | (({
|
|
12838
|
+
|
|
12839
|
+
pattern: string
|
|
12840
|
+
|
|
12841
|
+
flags?: string
|
|
12842
|
+
} | string)[] | ({
|
|
12843
|
+
|
|
12844
|
+
pattern: string
|
|
12845
|
+
|
|
12846
|
+
flags?: string
|
|
12847
|
+
} | string)) | {
|
|
12848
|
+
|
|
12849
|
+
block?: (boolean | (({
|
|
12850
|
+
|
|
12851
|
+
pattern: string
|
|
12852
|
+
|
|
12853
|
+
flags?: string
|
|
12854
|
+
} | string)[] | ({
|
|
12855
|
+
|
|
12856
|
+
pattern: string
|
|
12857
|
+
|
|
12858
|
+
flags?: string
|
|
12859
|
+
} | string)))
|
|
12860
|
+
|
|
12861
|
+
line?: (boolean | (({
|
|
12862
|
+
|
|
12863
|
+
pattern: string
|
|
12864
|
+
|
|
12865
|
+
flags?: string
|
|
12866
|
+
} | string)[] | ({
|
|
12867
|
+
|
|
12868
|
+
pattern: string
|
|
12869
|
+
|
|
12870
|
+
flags?: string
|
|
12871
|
+
} | string)))
|
|
12872
|
+
})
|
|
12873
|
+
|
|
12874
|
+
partitionByNewLine?: boolean
|
|
12875
|
+
|
|
12876
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12877
|
+
|
|
12878
|
+
internalPattern?: (({
|
|
12879
|
+
|
|
12880
|
+
pattern: string
|
|
12881
|
+
|
|
12882
|
+
flags?: string
|
|
12883
|
+
} | string)[] | ({
|
|
12884
|
+
|
|
12885
|
+
pattern: string
|
|
12886
|
+
|
|
12887
|
+
flags?: string
|
|
12888
|
+
} | string))
|
|
12889
|
+
|
|
12890
|
+
groups?: (string | string[] | {
|
|
12891
|
+
|
|
12892
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12893
|
+
})[]
|
|
12894
|
+
}[]
|
|
12895
|
+
// ----- perfectionist/sort-interfaces -----
|
|
12896
|
+
type PerfectionistSortInterfaces = {
|
|
12897
|
+
|
|
12898
|
+
fallbackSort?: {
|
|
12899
|
+
|
|
12900
|
+
order?: ("asc" | "desc")
|
|
12901
|
+
|
|
12902
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12903
|
+
sortBy?: ("name" | "value")
|
|
12904
|
+
}
|
|
12905
|
+
|
|
12906
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12907
|
+
|
|
12908
|
+
ignoreCase?: boolean
|
|
12909
|
+
|
|
12910
|
+
alphabet?: string
|
|
12911
|
+
|
|
12912
|
+
locales?: (string | string[])
|
|
12913
|
+
|
|
12914
|
+
order?: ("asc" | "desc")
|
|
12915
|
+
|
|
12916
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12917
|
+
customGroups?: ({
|
|
12918
|
+
[k: string]: (string | string[]) | undefined
|
|
12919
|
+
} | ({
|
|
12920
|
+
|
|
12921
|
+
newlinesInside?: ("always" | "never")
|
|
12922
|
+
|
|
12923
|
+
fallbackSort?: {
|
|
12924
|
+
|
|
12925
|
+
order?: ("asc" | "desc")
|
|
12926
|
+
|
|
12927
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12928
|
+
sortBy?: ("name" | "value")
|
|
12929
|
+
}
|
|
12930
|
+
|
|
12931
|
+
groupName: string
|
|
12932
|
+
|
|
12933
|
+
order?: ("asc" | "desc")
|
|
12934
|
+
|
|
12935
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12936
|
+
anyOf?: {
|
|
12937
|
+
|
|
12938
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
12939
|
+
|
|
12940
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
12941
|
+
|
|
12942
|
+
elementValuePattern?: (({
|
|
12943
|
+
|
|
12944
|
+
pattern: string
|
|
12945
|
+
|
|
12946
|
+
flags?: string
|
|
12947
|
+
} | string)[] | ({
|
|
12948
|
+
|
|
12949
|
+
pattern: string
|
|
12950
|
+
|
|
12951
|
+
flags?: string
|
|
12952
|
+
} | string))
|
|
12953
|
+
|
|
12954
|
+
elementNamePattern?: (({
|
|
12955
|
+
|
|
12956
|
+
pattern: string
|
|
12957
|
+
|
|
12958
|
+
flags?: string
|
|
12959
|
+
} | string)[] | ({
|
|
12960
|
+
|
|
12961
|
+
pattern: string
|
|
12962
|
+
|
|
12963
|
+
flags?: string
|
|
12964
|
+
} | string))
|
|
12965
|
+
sortBy?: ("name" | "value")
|
|
12966
|
+
}[]
|
|
12967
|
+
} | {
|
|
12968
|
+
|
|
12969
|
+
newlinesInside?: ("always" | "never")
|
|
12970
|
+
|
|
12971
|
+
fallbackSort?: {
|
|
12972
|
+
|
|
12973
|
+
order?: ("asc" | "desc")
|
|
12974
|
+
|
|
12975
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12976
|
+
sortBy?: ("name" | "value")
|
|
12977
|
+
}
|
|
12978
|
+
|
|
12979
|
+
groupName: string
|
|
12980
|
+
|
|
12981
|
+
order?: ("asc" | "desc")
|
|
12982
|
+
|
|
12983
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12984
|
+
|
|
12985
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
12986
|
+
|
|
12987
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
12988
|
+
|
|
12989
|
+
elementValuePattern?: (({
|
|
12990
|
+
|
|
12991
|
+
pattern: string
|
|
12992
|
+
|
|
12993
|
+
flags?: string
|
|
12994
|
+
} | string)[] | ({
|
|
12995
|
+
|
|
12996
|
+
pattern: string
|
|
12997
|
+
|
|
12998
|
+
flags?: string
|
|
12999
|
+
} | string))
|
|
13000
|
+
|
|
13001
|
+
elementNamePattern?: (({
|
|
13002
|
+
|
|
13003
|
+
pattern: string
|
|
13004
|
+
|
|
13005
|
+
flags?: string
|
|
13006
|
+
} | string)[] | ({
|
|
13007
|
+
|
|
13008
|
+
pattern: string
|
|
13009
|
+
|
|
12715
13010
|
flags?: string
|
|
12716
13011
|
} | string))
|
|
12717
13012
|
sortBy?: ("name" | "value")
|
|
12718
13013
|
})[])
|
|
12719
13014
|
|
|
12720
13015
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
13016
|
+
|
|
12721
13017
|
useConfigurationIf?: {
|
|
12722
13018
|
|
|
12723
13019
|
allNamesMatchPattern?: (({
|
|
12724
|
-
|
|
13020
|
+
|
|
13021
|
+
pattern: string
|
|
13022
|
+
|
|
12725
13023
|
flags?: string
|
|
12726
13024
|
} | string)[] | ({
|
|
12727
|
-
|
|
13025
|
+
|
|
13026
|
+
pattern: string
|
|
13027
|
+
|
|
12728
13028
|
flags?: string
|
|
12729
13029
|
} | string))
|
|
12730
13030
|
|
|
12731
13031
|
declarationMatchesPattern?: (({
|
|
12732
|
-
|
|
13032
|
+
|
|
13033
|
+
pattern: string
|
|
13034
|
+
|
|
12733
13035
|
flags?: string
|
|
12734
13036
|
} | string)[] | ({
|
|
12735
|
-
|
|
13037
|
+
|
|
13038
|
+
pattern: string
|
|
13039
|
+
|
|
12736
13040
|
flags?: string
|
|
12737
13041
|
} | string))
|
|
12738
13042
|
}
|
|
12739
13043
|
|
|
12740
13044
|
partitionByComment?: (boolean | (({
|
|
12741
|
-
|
|
13045
|
+
|
|
13046
|
+
pattern: string
|
|
13047
|
+
|
|
12742
13048
|
flags?: string
|
|
12743
13049
|
} | string)[] | ({
|
|
12744
|
-
|
|
13050
|
+
|
|
13051
|
+
pattern: string
|
|
13052
|
+
|
|
12745
13053
|
flags?: string
|
|
12746
13054
|
} | string)) | {
|
|
13055
|
+
|
|
12747
13056
|
block?: (boolean | (({
|
|
12748
|
-
|
|
13057
|
+
|
|
13058
|
+
pattern: string
|
|
13059
|
+
|
|
12749
13060
|
flags?: string
|
|
12750
13061
|
} | string)[] | ({
|
|
12751
|
-
|
|
13062
|
+
|
|
13063
|
+
pattern: string
|
|
13064
|
+
|
|
12752
13065
|
flags?: string
|
|
12753
13066
|
} | string)))
|
|
13067
|
+
|
|
12754
13068
|
line?: (boolean | (({
|
|
12755
|
-
|
|
13069
|
+
|
|
13070
|
+
pattern: string
|
|
13071
|
+
|
|
12756
13072
|
flags?: string
|
|
12757
13073
|
} | string)[] | ({
|
|
12758
|
-
|
|
13074
|
+
|
|
13075
|
+
pattern: string
|
|
13076
|
+
|
|
12759
13077
|
flags?: string
|
|
12760
13078
|
} | string)))
|
|
12761
13079
|
})
|
|
@@ -12765,28 +13083,31 @@ type PerfectionistSortInterfaces = {
|
|
|
12765
13083
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12766
13084
|
|
|
12767
13085
|
ignorePattern?: (({
|
|
12768
|
-
|
|
13086
|
+
|
|
13087
|
+
pattern: string
|
|
13088
|
+
|
|
12769
13089
|
flags?: string
|
|
12770
13090
|
} | string)[] | ({
|
|
12771
|
-
|
|
13091
|
+
|
|
13092
|
+
pattern: string
|
|
13093
|
+
|
|
12772
13094
|
flags?: string
|
|
12773
13095
|
} | string))
|
|
12774
13096
|
sortBy?: ("name" | "value")
|
|
12775
13097
|
|
|
12776
13098
|
groups?: (string | string[] | {
|
|
12777
13099
|
|
|
12778
|
-
newlinesBetween
|
|
13100
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12779
13101
|
})[]
|
|
12780
13102
|
}[]
|
|
12781
13103
|
// ----- perfectionist/sort-intersection-types -----
|
|
12782
|
-
type PerfectionistSortIntersectionTypes =
|
|
13104
|
+
type PerfectionistSortIntersectionTypes = {
|
|
12783
13105
|
|
|
12784
13106
|
fallbackSort?: {
|
|
12785
13107
|
|
|
12786
13108
|
order?: ("asc" | "desc")
|
|
12787
13109
|
|
|
12788
13110
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12789
|
-
[k: string]: unknown | undefined
|
|
12790
13111
|
}
|
|
12791
13112
|
|
|
12792
13113
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12801,25 +13122,103 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
12801
13122
|
|
|
12802
13123
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12803
13124
|
|
|
13125
|
+
customGroups?: ({
|
|
13126
|
+
|
|
13127
|
+
newlinesInside?: ("always" | "never")
|
|
13128
|
+
|
|
13129
|
+
fallbackSort?: {
|
|
13130
|
+
|
|
13131
|
+
order?: ("asc" | "desc")
|
|
13132
|
+
|
|
13133
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13134
|
+
}
|
|
13135
|
+
|
|
13136
|
+
groupName: string
|
|
13137
|
+
|
|
13138
|
+
order?: ("asc" | "desc")
|
|
13139
|
+
|
|
13140
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13141
|
+
anyOf?: {
|
|
13142
|
+
|
|
13143
|
+
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
|
|
13144
|
+
|
|
13145
|
+
elementNamePattern?: (({
|
|
13146
|
+
|
|
13147
|
+
pattern: string
|
|
13148
|
+
|
|
13149
|
+
flags?: string
|
|
13150
|
+
} | string)[] | ({
|
|
13151
|
+
|
|
13152
|
+
pattern: string
|
|
13153
|
+
|
|
13154
|
+
flags?: string
|
|
13155
|
+
} | string))
|
|
13156
|
+
}[]
|
|
13157
|
+
} | {
|
|
13158
|
+
|
|
13159
|
+
newlinesInside?: ("always" | "never")
|
|
13160
|
+
|
|
13161
|
+
fallbackSort?: {
|
|
13162
|
+
|
|
13163
|
+
order?: ("asc" | "desc")
|
|
13164
|
+
|
|
13165
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13166
|
+
}
|
|
13167
|
+
|
|
13168
|
+
groupName: string
|
|
13169
|
+
|
|
13170
|
+
order?: ("asc" | "desc")
|
|
13171
|
+
|
|
13172
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13173
|
+
|
|
13174
|
+
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
|
|
13175
|
+
|
|
13176
|
+
elementNamePattern?: (({
|
|
13177
|
+
|
|
13178
|
+
pattern: string
|
|
13179
|
+
|
|
13180
|
+
flags?: string
|
|
13181
|
+
} | string)[] | ({
|
|
13182
|
+
|
|
13183
|
+
pattern: string
|
|
13184
|
+
|
|
13185
|
+
flags?: string
|
|
13186
|
+
} | string))
|
|
13187
|
+
})[]
|
|
13188
|
+
|
|
12804
13189
|
partitionByComment?: (boolean | (({
|
|
12805
|
-
|
|
13190
|
+
|
|
13191
|
+
pattern: string
|
|
13192
|
+
|
|
12806
13193
|
flags?: string
|
|
12807
13194
|
} | string)[] | ({
|
|
12808
|
-
|
|
13195
|
+
|
|
13196
|
+
pattern: string
|
|
13197
|
+
|
|
12809
13198
|
flags?: string
|
|
12810
13199
|
} | string)) | {
|
|
13200
|
+
|
|
12811
13201
|
block?: (boolean | (({
|
|
12812
|
-
|
|
13202
|
+
|
|
13203
|
+
pattern: string
|
|
13204
|
+
|
|
12813
13205
|
flags?: string
|
|
12814
13206
|
} | string)[] | ({
|
|
12815
|
-
|
|
13207
|
+
|
|
13208
|
+
pattern: string
|
|
13209
|
+
|
|
12816
13210
|
flags?: string
|
|
12817
13211
|
} | string)))
|
|
13212
|
+
|
|
12818
13213
|
line?: (boolean | (({
|
|
12819
|
-
|
|
13214
|
+
|
|
13215
|
+
pattern: string
|
|
13216
|
+
|
|
12820
13217
|
flags?: string
|
|
12821
13218
|
} | string)[] | ({
|
|
12822
|
-
|
|
13219
|
+
|
|
13220
|
+
pattern: string
|
|
13221
|
+
|
|
12823
13222
|
flags?: string
|
|
12824
13223
|
} | string)))
|
|
12825
13224
|
})
|
|
@@ -12830,9 +13229,9 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
12830
13229
|
|
|
12831
13230
|
groups?: (string | string[] | {
|
|
12832
13231
|
|
|
12833
|
-
newlinesBetween
|
|
13232
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12834
13233
|
})[]
|
|
12835
|
-
}]
|
|
13234
|
+
}[]
|
|
12836
13235
|
// ----- perfectionist/sort-jsx-props -----
|
|
12837
13236
|
type PerfectionistSortJsxProps = {
|
|
12838
13237
|
|
|
@@ -12841,7 +13240,6 @@ type PerfectionistSortJsxProps = {
|
|
|
12841
13240
|
order?: ("asc" | "desc")
|
|
12842
13241
|
|
|
12843
13242
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12844
|
-
[k: string]: unknown | undefined
|
|
12845
13243
|
}
|
|
12846
13244
|
|
|
12847
13245
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12866,10 +13264,9 @@ type PerfectionistSortJsxProps = {
|
|
|
12866
13264
|
order?: ("asc" | "desc")
|
|
12867
13265
|
|
|
12868
13266
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12869
|
-
[k: string]: unknown | undefined
|
|
12870
13267
|
}
|
|
12871
13268
|
|
|
12872
|
-
groupName
|
|
13269
|
+
groupName: string
|
|
12873
13270
|
|
|
12874
13271
|
order?: ("asc" | "desc")
|
|
12875
13272
|
|
|
@@ -12881,18 +13278,26 @@ type PerfectionistSortJsxProps = {
|
|
|
12881
13278
|
selector?: ("multiline" | "prop" | "shorthand")
|
|
12882
13279
|
|
|
12883
13280
|
elementValuePattern?: (({
|
|
12884
|
-
|
|
13281
|
+
|
|
13282
|
+
pattern: string
|
|
13283
|
+
|
|
12885
13284
|
flags?: string
|
|
12886
13285
|
} | string)[] | ({
|
|
12887
|
-
|
|
13286
|
+
|
|
13287
|
+
pattern: string
|
|
13288
|
+
|
|
12888
13289
|
flags?: string
|
|
12889
13290
|
} | string))
|
|
12890
13291
|
|
|
12891
13292
|
elementNamePattern?: (({
|
|
12892
|
-
|
|
13293
|
+
|
|
13294
|
+
pattern: string
|
|
13295
|
+
|
|
12893
13296
|
flags?: string
|
|
12894
13297
|
} | string)[] | ({
|
|
12895
|
-
|
|
13298
|
+
|
|
13299
|
+
pattern: string
|
|
13300
|
+
|
|
12896
13301
|
flags?: string
|
|
12897
13302
|
} | string))
|
|
12898
13303
|
}[]
|
|
@@ -12905,10 +13310,9 @@ type PerfectionistSortJsxProps = {
|
|
|
12905
13310
|
order?: ("asc" | "desc")
|
|
12906
13311
|
|
|
12907
13312
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12908
|
-
[k: string]: unknown | undefined
|
|
12909
13313
|
}
|
|
12910
13314
|
|
|
12911
|
-
groupName
|
|
13315
|
+
groupName: string
|
|
12912
13316
|
|
|
12913
13317
|
order?: ("asc" | "desc")
|
|
12914
13318
|
|
|
@@ -12919,36 +13323,53 @@ type PerfectionistSortJsxProps = {
|
|
|
12919
13323
|
selector?: ("multiline" | "prop" | "shorthand")
|
|
12920
13324
|
|
|
12921
13325
|
elementValuePattern?: (({
|
|
12922
|
-
|
|
13326
|
+
|
|
13327
|
+
pattern: string
|
|
13328
|
+
|
|
12923
13329
|
flags?: string
|
|
12924
13330
|
} | string)[] | ({
|
|
12925
|
-
|
|
13331
|
+
|
|
13332
|
+
pattern: string
|
|
13333
|
+
|
|
12926
13334
|
flags?: string
|
|
12927
13335
|
} | string))
|
|
12928
13336
|
|
|
12929
13337
|
elementNamePattern?: (({
|
|
12930
|
-
|
|
13338
|
+
|
|
13339
|
+
pattern: string
|
|
13340
|
+
|
|
12931
13341
|
flags?: string
|
|
12932
13342
|
} | string)[] | ({
|
|
12933
|
-
|
|
13343
|
+
|
|
13344
|
+
pattern: string
|
|
13345
|
+
|
|
12934
13346
|
flags?: string
|
|
12935
13347
|
} | string))
|
|
12936
13348
|
})[])
|
|
13349
|
+
|
|
12937
13350
|
useConfigurationIf?: {
|
|
12938
13351
|
|
|
12939
13352
|
allNamesMatchPattern?: (({
|
|
12940
|
-
|
|
13353
|
+
|
|
13354
|
+
pattern: string
|
|
13355
|
+
|
|
12941
13356
|
flags?: string
|
|
12942
13357
|
} | string)[] | ({
|
|
12943
|
-
|
|
13358
|
+
|
|
13359
|
+
pattern: string
|
|
13360
|
+
|
|
12944
13361
|
flags?: string
|
|
12945
13362
|
} | string))
|
|
12946
13363
|
|
|
12947
13364
|
tagMatchesPattern?: (({
|
|
12948
|
-
|
|
13365
|
+
|
|
13366
|
+
pattern: string
|
|
13367
|
+
|
|
12949
13368
|
flags?: string
|
|
12950
13369
|
} | string)[] | ({
|
|
12951
|
-
|
|
13370
|
+
|
|
13371
|
+
pattern: string
|
|
13372
|
+
|
|
12952
13373
|
flags?: string
|
|
12953
13374
|
} | string))
|
|
12954
13375
|
}
|
|
@@ -12958,16 +13379,20 @@ type PerfectionistSortJsxProps = {
|
|
|
12958
13379
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12959
13380
|
|
|
12960
13381
|
ignorePattern?: (({
|
|
12961
|
-
|
|
13382
|
+
|
|
13383
|
+
pattern: string
|
|
13384
|
+
|
|
12962
13385
|
flags?: string
|
|
12963
13386
|
} | string)[] | ({
|
|
12964
|
-
|
|
13387
|
+
|
|
13388
|
+
pattern: string
|
|
13389
|
+
|
|
12965
13390
|
flags?: string
|
|
12966
13391
|
} | string))
|
|
12967
13392
|
|
|
12968
13393
|
groups?: (string | string[] | {
|
|
12969
13394
|
|
|
12970
|
-
newlinesBetween
|
|
13395
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12971
13396
|
})[]
|
|
12972
13397
|
}[]
|
|
12973
13398
|
// ----- perfectionist/sort-maps -----
|
|
@@ -12978,7 +13403,6 @@ type PerfectionistSortMaps = {
|
|
|
12978
13403
|
order?: ("asc" | "desc")
|
|
12979
13404
|
|
|
12980
13405
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12981
|
-
[k: string]: unknown | undefined
|
|
12982
13406
|
}
|
|
12983
13407
|
|
|
12984
13408
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13002,10 +13426,9 @@ type PerfectionistSortMaps = {
|
|
|
13002
13426
|
order?: ("asc" | "desc")
|
|
13003
13427
|
|
|
13004
13428
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13005
|
-
[k: string]: unknown | undefined
|
|
13006
13429
|
}
|
|
13007
13430
|
|
|
13008
|
-
groupName
|
|
13431
|
+
groupName: string
|
|
13009
13432
|
|
|
13010
13433
|
order?: ("asc" | "desc")
|
|
13011
13434
|
|
|
@@ -13013,10 +13436,14 @@ type PerfectionistSortMaps = {
|
|
|
13013
13436
|
anyOf?: {
|
|
13014
13437
|
|
|
13015
13438
|
elementNamePattern?: (({
|
|
13016
|
-
|
|
13439
|
+
|
|
13440
|
+
pattern: string
|
|
13441
|
+
|
|
13017
13442
|
flags?: string
|
|
13018
13443
|
} | string)[] | ({
|
|
13019
|
-
|
|
13444
|
+
|
|
13445
|
+
pattern: string
|
|
13446
|
+
|
|
13020
13447
|
flags?: string
|
|
13021
13448
|
} | string))
|
|
13022
13449
|
}[]
|
|
@@ -13029,53 +13456,75 @@ type PerfectionistSortMaps = {
|
|
|
13029
13456
|
order?: ("asc" | "desc")
|
|
13030
13457
|
|
|
13031
13458
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13032
|
-
[k: string]: unknown | undefined
|
|
13033
13459
|
}
|
|
13034
13460
|
|
|
13035
|
-
groupName
|
|
13461
|
+
groupName: string
|
|
13036
13462
|
|
|
13037
13463
|
order?: ("asc" | "desc")
|
|
13038
13464
|
|
|
13039
13465
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13040
13466
|
|
|
13041
13467
|
elementNamePattern?: (({
|
|
13042
|
-
|
|
13468
|
+
|
|
13469
|
+
pattern: string
|
|
13470
|
+
|
|
13043
13471
|
flags?: string
|
|
13044
13472
|
} | string)[] | ({
|
|
13045
|
-
|
|
13473
|
+
|
|
13474
|
+
pattern: string
|
|
13475
|
+
|
|
13046
13476
|
flags?: string
|
|
13047
13477
|
} | string))
|
|
13048
13478
|
})[]
|
|
13479
|
+
|
|
13049
13480
|
useConfigurationIf?: {
|
|
13050
13481
|
|
|
13051
13482
|
allNamesMatchPattern?: (({
|
|
13052
|
-
|
|
13483
|
+
|
|
13484
|
+
pattern: string
|
|
13485
|
+
|
|
13053
13486
|
flags?: string
|
|
13054
13487
|
} | string)[] | ({
|
|
13055
|
-
|
|
13488
|
+
|
|
13489
|
+
pattern: string
|
|
13490
|
+
|
|
13056
13491
|
flags?: string
|
|
13057
13492
|
} | string))
|
|
13058
13493
|
}
|
|
13059
13494
|
|
|
13060
13495
|
partitionByComment?: (boolean | (({
|
|
13061
|
-
|
|
13496
|
+
|
|
13497
|
+
pattern: string
|
|
13498
|
+
|
|
13062
13499
|
flags?: string
|
|
13063
13500
|
} | string)[] | ({
|
|
13064
|
-
|
|
13501
|
+
|
|
13502
|
+
pattern: string
|
|
13503
|
+
|
|
13065
13504
|
flags?: string
|
|
13066
13505
|
} | string)) | {
|
|
13506
|
+
|
|
13067
13507
|
block?: (boolean | (({
|
|
13068
|
-
|
|
13508
|
+
|
|
13509
|
+
pattern: string
|
|
13510
|
+
|
|
13069
13511
|
flags?: string
|
|
13070
13512
|
} | string)[] | ({
|
|
13071
|
-
|
|
13513
|
+
|
|
13514
|
+
pattern: string
|
|
13515
|
+
|
|
13072
13516
|
flags?: string
|
|
13073
13517
|
} | string)))
|
|
13518
|
+
|
|
13074
13519
|
line?: (boolean | (({
|
|
13075
|
-
|
|
13520
|
+
|
|
13521
|
+
pattern: string
|
|
13522
|
+
|
|
13076
13523
|
flags?: string
|
|
13077
13524
|
} | string)[] | ({
|
|
13078
|
-
|
|
13525
|
+
|
|
13526
|
+
pattern: string
|
|
13527
|
+
|
|
13079
13528
|
flags?: string
|
|
13080
13529
|
} | string)))
|
|
13081
13530
|
})
|
|
@@ -13086,7 +13535,7 @@ type PerfectionistSortMaps = {
|
|
|
13086
13535
|
|
|
13087
13536
|
groups?: (string | string[] | {
|
|
13088
13537
|
|
|
13089
|
-
newlinesBetween
|
|
13538
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13090
13539
|
})[]
|
|
13091
13540
|
}[]
|
|
13092
13541
|
// ----- perfectionist/sort-modules -----
|
|
@@ -13097,7 +13546,6 @@ type PerfectionistSortModules = []|[{
|
|
|
13097
13546
|
order?: ("asc" | "desc")
|
|
13098
13547
|
|
|
13099
13548
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13100
|
-
[k: string]: unknown | undefined
|
|
13101
13549
|
}
|
|
13102
13550
|
|
|
13103
13551
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13121,10 +13569,9 @@ type PerfectionistSortModules = []|[{
|
|
|
13121
13569
|
order?: ("asc" | "desc")
|
|
13122
13570
|
|
|
13123
13571
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13124
|
-
[k: string]: unknown | undefined
|
|
13125
13572
|
}
|
|
13126
13573
|
|
|
13127
|
-
groupName
|
|
13574
|
+
groupName: string
|
|
13128
13575
|
|
|
13129
13576
|
order?: ("asc" | "desc")
|
|
13130
13577
|
|
|
@@ -13136,18 +13583,26 @@ type PerfectionistSortModules = []|[{
|
|
|
13136
13583
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
13137
13584
|
|
|
13138
13585
|
decoratorNamePattern?: (({
|
|
13139
|
-
|
|
13586
|
+
|
|
13587
|
+
pattern: string
|
|
13588
|
+
|
|
13140
13589
|
flags?: string
|
|
13141
13590
|
} | string)[] | ({
|
|
13142
|
-
|
|
13591
|
+
|
|
13592
|
+
pattern: string
|
|
13593
|
+
|
|
13143
13594
|
flags?: string
|
|
13144
13595
|
} | string))
|
|
13145
13596
|
|
|
13146
13597
|
elementNamePattern?: (({
|
|
13147
|
-
|
|
13598
|
+
|
|
13599
|
+
pattern: string
|
|
13600
|
+
|
|
13148
13601
|
flags?: string
|
|
13149
13602
|
} | string)[] | ({
|
|
13150
|
-
|
|
13603
|
+
|
|
13604
|
+
pattern: string
|
|
13605
|
+
|
|
13151
13606
|
flags?: string
|
|
13152
13607
|
} | string))
|
|
13153
13608
|
}[]
|
|
@@ -13160,10 +13615,9 @@ type PerfectionistSortModules = []|[{
|
|
|
13160
13615
|
order?: ("asc" | "desc")
|
|
13161
13616
|
|
|
13162
13617
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13163
|
-
[k: string]: unknown | undefined
|
|
13164
13618
|
}
|
|
13165
13619
|
|
|
13166
|
-
groupName
|
|
13620
|
+
groupName: string
|
|
13167
13621
|
|
|
13168
13622
|
order?: ("asc" | "desc")
|
|
13169
13623
|
|
|
@@ -13174,41 +13628,63 @@ type PerfectionistSortModules = []|[{
|
|
|
13174
13628
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
13175
13629
|
|
|
13176
13630
|
decoratorNamePattern?: (({
|
|
13177
|
-
|
|
13631
|
+
|
|
13632
|
+
pattern: string
|
|
13633
|
+
|
|
13178
13634
|
flags?: string
|
|
13179
13635
|
} | string)[] | ({
|
|
13180
|
-
|
|
13636
|
+
|
|
13637
|
+
pattern: string
|
|
13638
|
+
|
|
13181
13639
|
flags?: string
|
|
13182
13640
|
} | string))
|
|
13183
13641
|
|
|
13184
13642
|
elementNamePattern?: (({
|
|
13185
|
-
|
|
13643
|
+
|
|
13644
|
+
pattern: string
|
|
13645
|
+
|
|
13186
13646
|
flags?: string
|
|
13187
13647
|
} | string)[] | ({
|
|
13188
|
-
|
|
13648
|
+
|
|
13649
|
+
pattern: string
|
|
13650
|
+
|
|
13189
13651
|
flags?: string
|
|
13190
13652
|
} | string))
|
|
13191
13653
|
})[]
|
|
13192
13654
|
|
|
13193
13655
|
partitionByComment?: (boolean | (({
|
|
13194
|
-
|
|
13656
|
+
|
|
13657
|
+
pattern: string
|
|
13658
|
+
|
|
13195
13659
|
flags?: string
|
|
13196
13660
|
} | string)[] | ({
|
|
13197
|
-
|
|
13661
|
+
|
|
13662
|
+
pattern: string
|
|
13663
|
+
|
|
13198
13664
|
flags?: string
|
|
13199
13665
|
} | string)) | {
|
|
13666
|
+
|
|
13200
13667
|
block?: (boolean | (({
|
|
13201
|
-
|
|
13668
|
+
|
|
13669
|
+
pattern: string
|
|
13670
|
+
|
|
13202
13671
|
flags?: string
|
|
13203
13672
|
} | string)[] | ({
|
|
13204
|
-
|
|
13673
|
+
|
|
13674
|
+
pattern: string
|
|
13675
|
+
|
|
13205
13676
|
flags?: string
|
|
13206
13677
|
} | string)))
|
|
13678
|
+
|
|
13207
13679
|
line?: (boolean | (({
|
|
13208
|
-
|
|
13680
|
+
|
|
13681
|
+
pattern: string
|
|
13682
|
+
|
|
13209
13683
|
flags?: string
|
|
13210
13684
|
} | string)[] | ({
|
|
13211
|
-
|
|
13685
|
+
|
|
13686
|
+
pattern: string
|
|
13687
|
+
|
|
13212
13688
|
flags?: string
|
|
13213
13689
|
} | string)))
|
|
13214
13690
|
})
|
|
@@ -13219,18 +13695,17 @@ type PerfectionistSortModules = []|[{
|
|
|
13219
13695
|
|
|
13220
13696
|
groups?: (string | string[] | {
|
|
13221
13697
|
|
|
13222
|
-
newlinesBetween
|
|
13698
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13223
13699
|
})[]
|
|
13224
13700
|
}]
|
|
13225
13701
|
// ----- perfectionist/sort-named-exports -----
|
|
13226
|
-
type PerfectionistSortNamedExports =
|
|
13702
|
+
type PerfectionistSortNamedExports = {
|
|
13227
13703
|
|
|
13228
13704
|
fallbackSort?: {
|
|
13229
13705
|
|
|
13230
13706
|
order?: ("asc" | "desc")
|
|
13231
13707
|
|
|
13232
13708
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13233
|
-
[k: string]: unknown | undefined
|
|
13234
13709
|
}
|
|
13235
13710
|
|
|
13236
13711
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13249,40 +13724,128 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
13249
13724
|
|
|
13250
13725
|
ignoreAlias?: boolean
|
|
13251
13726
|
|
|
13727
|
+
customGroups?: ({
|
|
13728
|
+
|
|
13729
|
+
newlinesInside?: ("always" | "never")
|
|
13730
|
+
|
|
13731
|
+
fallbackSort?: {
|
|
13732
|
+
|
|
13733
|
+
order?: ("asc" | "desc")
|
|
13734
|
+
|
|
13735
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13736
|
+
}
|
|
13737
|
+
|
|
13738
|
+
groupName: string
|
|
13739
|
+
|
|
13740
|
+
order?: ("asc" | "desc")
|
|
13741
|
+
|
|
13742
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13743
|
+
anyOf?: {
|
|
13744
|
+
|
|
13745
|
+
modifiers?: ("value" | "type")[]
|
|
13746
|
+
|
|
13747
|
+
selector?: "export"
|
|
13748
|
+
|
|
13749
|
+
elementNamePattern?: (({
|
|
13750
|
+
|
|
13751
|
+
pattern: string
|
|
13752
|
+
|
|
13753
|
+
flags?: string
|
|
13754
|
+
} | string)[] | ({
|
|
13755
|
+
|
|
13756
|
+
pattern: string
|
|
13757
|
+
|
|
13758
|
+
flags?: string
|
|
13759
|
+
} | string))
|
|
13760
|
+
}[]
|
|
13761
|
+
} | {
|
|
13762
|
+
|
|
13763
|
+
newlinesInside?: ("always" | "never")
|
|
13764
|
+
|
|
13765
|
+
fallbackSort?: {
|
|
13766
|
+
|
|
13767
|
+
order?: ("asc" | "desc")
|
|
13768
|
+
|
|
13769
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13770
|
+
}
|
|
13771
|
+
|
|
13772
|
+
groupName: string
|
|
13773
|
+
|
|
13774
|
+
order?: ("asc" | "desc")
|
|
13775
|
+
|
|
13776
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13777
|
+
|
|
13778
|
+
modifiers?: ("value" | "type")[]
|
|
13779
|
+
|
|
13780
|
+
selector?: "export"
|
|
13781
|
+
|
|
13782
|
+
elementNamePattern?: (({
|
|
13783
|
+
|
|
13784
|
+
pattern: string
|
|
13785
|
+
|
|
13786
|
+
flags?: string
|
|
13787
|
+
} | string)[] | ({
|
|
13788
|
+
|
|
13789
|
+
pattern: string
|
|
13790
|
+
|
|
13791
|
+
flags?: string
|
|
13792
|
+
} | string))
|
|
13793
|
+
})[]
|
|
13794
|
+
|
|
13252
13795
|
partitionByComment?: (boolean | (({
|
|
13253
|
-
|
|
13796
|
+
|
|
13797
|
+
pattern: string
|
|
13798
|
+
|
|
13254
13799
|
flags?: string
|
|
13255
13800
|
} | string)[] | ({
|
|
13256
|
-
|
|
13801
|
+
|
|
13802
|
+
pattern: string
|
|
13803
|
+
|
|
13257
13804
|
flags?: string
|
|
13258
13805
|
} | string)) | {
|
|
13806
|
+
|
|
13259
13807
|
block?: (boolean | (({
|
|
13260
|
-
|
|
13808
|
+
|
|
13809
|
+
pattern: string
|
|
13810
|
+
|
|
13261
13811
|
flags?: string
|
|
13262
13812
|
} | string)[] | ({
|
|
13263
|
-
|
|
13813
|
+
|
|
13814
|
+
pattern: string
|
|
13815
|
+
|
|
13264
13816
|
flags?: string
|
|
13265
13817
|
} | string)))
|
|
13818
|
+
|
|
13266
13819
|
line?: (boolean | (({
|
|
13267
|
-
|
|
13820
|
+
|
|
13821
|
+
pattern: string
|
|
13822
|
+
|
|
13268
13823
|
flags?: string
|
|
13269
13824
|
} | string)[] | ({
|
|
13270
|
-
|
|
13825
|
+
|
|
13826
|
+
pattern: string
|
|
13827
|
+
|
|
13271
13828
|
flags?: string
|
|
13272
13829
|
} | string)))
|
|
13273
13830
|
})
|
|
13274
13831
|
|
|
13275
13832
|
partitionByNewLine?: boolean
|
|
13276
|
-
|
|
13833
|
+
|
|
13834
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
13835
|
+
|
|
13836
|
+
groups?: (string | string[] | {
|
|
13837
|
+
|
|
13838
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13839
|
+
})[]
|
|
13840
|
+
}[]
|
|
13277
13841
|
// ----- perfectionist/sort-named-imports -----
|
|
13278
|
-
type PerfectionistSortNamedImports =
|
|
13842
|
+
type PerfectionistSortNamedImports = {
|
|
13279
13843
|
|
|
13280
13844
|
fallbackSort?: {
|
|
13281
13845
|
|
|
13282
13846
|
order?: ("asc" | "desc")
|
|
13283
13847
|
|
|
13284
13848
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13285
|
-
[k: string]: unknown | undefined
|
|
13286
13849
|
}
|
|
13287
13850
|
|
|
13288
13851
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13301,31 +13864,120 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
13301
13864
|
|
|
13302
13865
|
ignoreAlias?: boolean
|
|
13303
13866
|
|
|
13867
|
+
customGroups?: ({
|
|
13868
|
+
|
|
13869
|
+
newlinesInside?: ("always" | "never")
|
|
13870
|
+
|
|
13871
|
+
fallbackSort?: {
|
|
13872
|
+
|
|
13873
|
+
order?: ("asc" | "desc")
|
|
13874
|
+
|
|
13875
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13876
|
+
}
|
|
13877
|
+
|
|
13878
|
+
groupName: string
|
|
13879
|
+
|
|
13880
|
+
order?: ("asc" | "desc")
|
|
13881
|
+
|
|
13882
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13883
|
+
anyOf?: {
|
|
13884
|
+
|
|
13885
|
+
modifiers?: ("value" | "type")[]
|
|
13886
|
+
|
|
13887
|
+
selector?: "import"
|
|
13888
|
+
|
|
13889
|
+
elementNamePattern?: (({
|
|
13890
|
+
|
|
13891
|
+
pattern: string
|
|
13892
|
+
|
|
13893
|
+
flags?: string
|
|
13894
|
+
} | string)[] | ({
|
|
13895
|
+
|
|
13896
|
+
pattern: string
|
|
13897
|
+
|
|
13898
|
+
flags?: string
|
|
13899
|
+
} | string))
|
|
13900
|
+
}[]
|
|
13901
|
+
} | {
|
|
13902
|
+
|
|
13903
|
+
newlinesInside?: ("always" | "never")
|
|
13904
|
+
|
|
13905
|
+
fallbackSort?: {
|
|
13906
|
+
|
|
13907
|
+
order?: ("asc" | "desc")
|
|
13908
|
+
|
|
13909
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13910
|
+
}
|
|
13911
|
+
|
|
13912
|
+
groupName: string
|
|
13913
|
+
|
|
13914
|
+
order?: ("asc" | "desc")
|
|
13915
|
+
|
|
13916
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13917
|
+
|
|
13918
|
+
modifiers?: ("value" | "type")[]
|
|
13919
|
+
|
|
13920
|
+
selector?: "import"
|
|
13921
|
+
|
|
13922
|
+
elementNamePattern?: (({
|
|
13923
|
+
|
|
13924
|
+
pattern: string
|
|
13925
|
+
|
|
13926
|
+
flags?: string
|
|
13927
|
+
} | string)[] | ({
|
|
13928
|
+
|
|
13929
|
+
pattern: string
|
|
13930
|
+
|
|
13931
|
+
flags?: string
|
|
13932
|
+
} | string))
|
|
13933
|
+
})[]
|
|
13934
|
+
|
|
13304
13935
|
partitionByComment?: (boolean | (({
|
|
13305
|
-
|
|
13936
|
+
|
|
13937
|
+
pattern: string
|
|
13938
|
+
|
|
13306
13939
|
flags?: string
|
|
13307
13940
|
} | string)[] | ({
|
|
13308
|
-
|
|
13941
|
+
|
|
13942
|
+
pattern: string
|
|
13943
|
+
|
|
13309
13944
|
flags?: string
|
|
13310
13945
|
} | string)) | {
|
|
13946
|
+
|
|
13311
13947
|
block?: (boolean | (({
|
|
13312
|
-
|
|
13948
|
+
|
|
13949
|
+
pattern: string
|
|
13950
|
+
|
|
13313
13951
|
flags?: string
|
|
13314
13952
|
} | string)[] | ({
|
|
13315
|
-
|
|
13953
|
+
|
|
13954
|
+
pattern: string
|
|
13955
|
+
|
|
13316
13956
|
flags?: string
|
|
13317
13957
|
} | string)))
|
|
13958
|
+
|
|
13318
13959
|
line?: (boolean | (({
|
|
13319
|
-
|
|
13960
|
+
|
|
13961
|
+
pattern: string
|
|
13962
|
+
|
|
13320
13963
|
flags?: string
|
|
13321
13964
|
} | string)[] | ({
|
|
13322
|
-
|
|
13965
|
+
|
|
13966
|
+
pattern: string
|
|
13967
|
+
|
|
13323
13968
|
flags?: string
|
|
13324
13969
|
} | string)))
|
|
13325
13970
|
})
|
|
13326
13971
|
|
|
13327
13972
|
partitionByNewLine?: boolean
|
|
13328
|
-
|
|
13973
|
+
|
|
13974
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
13975
|
+
|
|
13976
|
+
groups?: (string | string[] | {
|
|
13977
|
+
|
|
13978
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13979
|
+
})[]
|
|
13980
|
+
}[]
|
|
13329
13981
|
// ----- perfectionist/sort-object-types -----
|
|
13330
13982
|
type PerfectionistSortObjectTypes = {
|
|
13331
13983
|
|
|
@@ -13334,7 +13986,7 @@ type PerfectionistSortObjectTypes = {
|
|
|
13334
13986
|
order?: ("asc" | "desc")
|
|
13335
13987
|
|
|
13336
13988
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13337
|
-
|
|
13989
|
+
sortBy?: ("name" | "value")
|
|
13338
13990
|
}
|
|
13339
13991
|
|
|
13340
13992
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13360,10 +14012,9 @@ type PerfectionistSortObjectTypes = {
|
|
|
13360
14012
|
|
|
13361
14013
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13362
14014
|
sortBy?: ("name" | "value")
|
|
13363
|
-
[k: string]: unknown | undefined
|
|
13364
14015
|
}
|
|
13365
14016
|
|
|
13366
|
-
groupName
|
|
14017
|
+
groupName: string
|
|
13367
14018
|
|
|
13368
14019
|
order?: ("asc" | "desc")
|
|
13369
14020
|
|
|
@@ -13375,18 +14026,26 @@ type PerfectionistSortObjectTypes = {
|
|
|
13375
14026
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
13376
14027
|
|
|
13377
14028
|
elementValuePattern?: (({
|
|
13378
|
-
|
|
14029
|
+
|
|
14030
|
+
pattern: string
|
|
14031
|
+
|
|
13379
14032
|
flags?: string
|
|
13380
14033
|
} | string)[] | ({
|
|
13381
|
-
|
|
14034
|
+
|
|
14035
|
+
pattern: string
|
|
14036
|
+
|
|
13382
14037
|
flags?: string
|
|
13383
14038
|
} | string))
|
|
13384
14039
|
|
|
13385
14040
|
elementNamePattern?: (({
|
|
13386
|
-
|
|
14041
|
+
|
|
14042
|
+
pattern: string
|
|
14043
|
+
|
|
13387
14044
|
flags?: string
|
|
13388
14045
|
} | string)[] | ({
|
|
13389
|
-
|
|
14046
|
+
|
|
14047
|
+
pattern: string
|
|
14048
|
+
|
|
13390
14049
|
flags?: string
|
|
13391
14050
|
} | string))
|
|
13392
14051
|
sortBy?: ("name" | "value")
|
|
@@ -13401,10 +14060,9 @@ type PerfectionistSortObjectTypes = {
|
|
|
13401
14060
|
|
|
13402
14061
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13403
14062
|
sortBy?: ("name" | "value")
|
|
13404
|
-
[k: string]: unknown | undefined
|
|
13405
14063
|
}
|
|
13406
14064
|
|
|
13407
|
-
groupName
|
|
14065
|
+
groupName: string
|
|
13408
14066
|
|
|
13409
14067
|
order?: ("asc" | "desc")
|
|
13410
14068
|
|
|
@@ -13415,62 +14073,93 @@ type PerfectionistSortObjectTypes = {
|
|
|
13415
14073
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
13416
14074
|
|
|
13417
14075
|
elementValuePattern?: (({
|
|
13418
|
-
|
|
14076
|
+
|
|
14077
|
+
pattern: string
|
|
14078
|
+
|
|
13419
14079
|
flags?: string
|
|
13420
14080
|
} | string)[] | ({
|
|
13421
|
-
|
|
14081
|
+
|
|
14082
|
+
pattern: string
|
|
14083
|
+
|
|
13422
14084
|
flags?: string
|
|
13423
14085
|
} | string))
|
|
13424
14086
|
|
|
13425
14087
|
elementNamePattern?: (({
|
|
13426
|
-
|
|
14088
|
+
|
|
14089
|
+
pattern: string
|
|
14090
|
+
|
|
13427
14091
|
flags?: string
|
|
13428
14092
|
} | string)[] | ({
|
|
13429
|
-
|
|
14093
|
+
|
|
14094
|
+
pattern: string
|
|
14095
|
+
|
|
13430
14096
|
flags?: string
|
|
13431
14097
|
} | string))
|
|
13432
14098
|
sortBy?: ("name" | "value")
|
|
13433
14099
|
})[])
|
|
13434
14100
|
|
|
13435
14101
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
14102
|
+
|
|
13436
14103
|
useConfigurationIf?: {
|
|
13437
14104
|
|
|
13438
14105
|
allNamesMatchPattern?: (({
|
|
13439
|
-
|
|
14106
|
+
|
|
14107
|
+
pattern: string
|
|
14108
|
+
|
|
13440
14109
|
flags?: string
|
|
13441
14110
|
} | string)[] | ({
|
|
13442
|
-
|
|
14111
|
+
|
|
14112
|
+
pattern: string
|
|
14113
|
+
|
|
13443
14114
|
flags?: string
|
|
13444
14115
|
} | string))
|
|
13445
14116
|
|
|
13446
14117
|
declarationMatchesPattern?: (({
|
|
13447
|
-
|
|
14118
|
+
|
|
14119
|
+
pattern: string
|
|
14120
|
+
|
|
13448
14121
|
flags?: string
|
|
13449
14122
|
} | string)[] | ({
|
|
13450
|
-
|
|
14123
|
+
|
|
14124
|
+
pattern: string
|
|
14125
|
+
|
|
13451
14126
|
flags?: string
|
|
13452
14127
|
} | string))
|
|
13453
14128
|
}
|
|
13454
14129
|
|
|
13455
14130
|
partitionByComment?: (boolean | (({
|
|
13456
|
-
|
|
14131
|
+
|
|
14132
|
+
pattern: string
|
|
14133
|
+
|
|
13457
14134
|
flags?: string
|
|
13458
14135
|
} | string)[] | ({
|
|
13459
|
-
|
|
14136
|
+
|
|
14137
|
+
pattern: string
|
|
14138
|
+
|
|
13460
14139
|
flags?: string
|
|
13461
14140
|
} | string)) | {
|
|
14141
|
+
|
|
13462
14142
|
block?: (boolean | (({
|
|
13463
|
-
|
|
14143
|
+
|
|
14144
|
+
pattern: string
|
|
14145
|
+
|
|
13464
14146
|
flags?: string
|
|
13465
14147
|
} | string)[] | ({
|
|
13466
|
-
|
|
14148
|
+
|
|
14149
|
+
pattern: string
|
|
14150
|
+
|
|
13467
14151
|
flags?: string
|
|
13468
14152
|
} | string)))
|
|
14153
|
+
|
|
13469
14154
|
line?: (boolean | (({
|
|
13470
|
-
|
|
14155
|
+
|
|
14156
|
+
pattern: string
|
|
14157
|
+
|
|
13471
14158
|
flags?: string
|
|
13472
14159
|
} | string)[] | ({
|
|
13473
|
-
|
|
14160
|
+
|
|
14161
|
+
pattern: string
|
|
14162
|
+
|
|
13474
14163
|
flags?: string
|
|
13475
14164
|
} | string)))
|
|
13476
14165
|
})
|
|
@@ -13480,17 +14169,21 @@ type PerfectionistSortObjectTypes = {
|
|
|
13480
14169
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
13481
14170
|
|
|
13482
14171
|
ignorePattern?: (({
|
|
13483
|
-
|
|
14172
|
+
|
|
14173
|
+
pattern: string
|
|
14174
|
+
|
|
13484
14175
|
flags?: string
|
|
13485
14176
|
} | string)[] | ({
|
|
13486
|
-
|
|
14177
|
+
|
|
14178
|
+
pattern: string
|
|
14179
|
+
|
|
13487
14180
|
flags?: string
|
|
13488
14181
|
} | string))
|
|
13489
14182
|
sortBy?: ("name" | "value")
|
|
13490
14183
|
|
|
13491
14184
|
groups?: (string | string[] | {
|
|
13492
14185
|
|
|
13493
|
-
newlinesBetween
|
|
14186
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13494
14187
|
})[]
|
|
13495
14188
|
}[]
|
|
13496
14189
|
// ----- perfectionist/sort-objects -----
|
|
@@ -13501,7 +14194,6 @@ type PerfectionistSortObjects = {
|
|
|
13501
14194
|
order?: ("asc" | "desc")
|
|
13502
14195
|
|
|
13503
14196
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13504
|
-
[k: string]: unknown | undefined
|
|
13505
14197
|
}
|
|
13506
14198
|
|
|
13507
14199
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13531,10 +14223,9 @@ type PerfectionistSortObjects = {
|
|
|
13531
14223
|
order?: ("asc" | "desc")
|
|
13532
14224
|
|
|
13533
14225
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13534
|
-
[k: string]: unknown | undefined
|
|
13535
14226
|
}
|
|
13536
14227
|
|
|
13537
|
-
groupName
|
|
14228
|
+
groupName: string
|
|
13538
14229
|
|
|
13539
14230
|
order?: ("asc" | "desc")
|
|
13540
14231
|
|
|
@@ -13546,18 +14237,26 @@ type PerfectionistSortObjects = {
|
|
|
13546
14237
|
selector?: ("member" | "method" | "multiline" | "property")
|
|
13547
14238
|
|
|
13548
14239
|
elementValuePattern?: (({
|
|
13549
|
-
|
|
14240
|
+
|
|
14241
|
+
pattern: string
|
|
14242
|
+
|
|
13550
14243
|
flags?: string
|
|
13551
14244
|
} | string)[] | ({
|
|
13552
|
-
|
|
14245
|
+
|
|
14246
|
+
pattern: string
|
|
14247
|
+
|
|
13553
14248
|
flags?: string
|
|
13554
14249
|
} | string))
|
|
13555
14250
|
|
|
13556
14251
|
elementNamePattern?: (({
|
|
13557
|
-
|
|
14252
|
+
|
|
14253
|
+
pattern: string
|
|
14254
|
+
|
|
13558
14255
|
flags?: string
|
|
13559
14256
|
} | string)[] | ({
|
|
13560
|
-
|
|
14257
|
+
|
|
14258
|
+
pattern: string
|
|
14259
|
+
|
|
13561
14260
|
flags?: string
|
|
13562
14261
|
} | string))
|
|
13563
14262
|
}[]
|
|
@@ -13570,10 +14269,9 @@ type PerfectionistSortObjects = {
|
|
|
13570
14269
|
order?: ("asc" | "desc")
|
|
13571
14270
|
|
|
13572
14271
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13573
|
-
[k: string]: unknown | undefined
|
|
13574
14272
|
}
|
|
13575
14273
|
|
|
13576
|
-
groupName
|
|
14274
|
+
groupName: string
|
|
13577
14275
|
|
|
13578
14276
|
order?: ("asc" | "desc")
|
|
13579
14277
|
|
|
@@ -13584,36 +14282,53 @@ type PerfectionistSortObjects = {
|
|
|
13584
14282
|
selector?: ("member" | "method" | "multiline" | "property")
|
|
13585
14283
|
|
|
13586
14284
|
elementValuePattern?: (({
|
|
13587
|
-
|
|
14285
|
+
|
|
14286
|
+
pattern: string
|
|
14287
|
+
|
|
13588
14288
|
flags?: string
|
|
13589
14289
|
} | string)[] | ({
|
|
13590
|
-
|
|
14290
|
+
|
|
14291
|
+
pattern: string
|
|
14292
|
+
|
|
13591
14293
|
flags?: string
|
|
13592
14294
|
} | string))
|
|
13593
14295
|
|
|
13594
14296
|
elementNamePattern?: (({
|
|
13595
|
-
|
|
14297
|
+
|
|
14298
|
+
pattern: string
|
|
14299
|
+
|
|
13596
14300
|
flags?: string
|
|
13597
14301
|
} | string)[] | ({
|
|
13598
|
-
|
|
14302
|
+
|
|
14303
|
+
pattern: string
|
|
14304
|
+
|
|
13599
14305
|
flags?: string
|
|
13600
14306
|
} | string))
|
|
13601
14307
|
})[])
|
|
14308
|
+
|
|
13602
14309
|
useConfigurationIf?: {
|
|
13603
14310
|
|
|
13604
14311
|
allNamesMatchPattern?: (({
|
|
13605
|
-
|
|
14312
|
+
|
|
14313
|
+
pattern: string
|
|
14314
|
+
|
|
13606
14315
|
flags?: string
|
|
13607
14316
|
} | string)[] | ({
|
|
13608
|
-
|
|
14317
|
+
|
|
14318
|
+
pattern: string
|
|
14319
|
+
|
|
13609
14320
|
flags?: string
|
|
13610
14321
|
} | string))
|
|
13611
14322
|
|
|
13612
14323
|
callingFunctionNamePattern?: (({
|
|
13613
|
-
|
|
14324
|
+
|
|
14325
|
+
pattern: string
|
|
14326
|
+
|
|
13614
14327
|
flags?: string
|
|
13615
14328
|
} | string)[] | ({
|
|
13616
|
-
|
|
14329
|
+
|
|
14330
|
+
pattern: string
|
|
14331
|
+
|
|
13617
14332
|
flags?: string
|
|
13618
14333
|
} | string))
|
|
13619
14334
|
}
|
|
@@ -13625,24 +14340,38 @@ type PerfectionistSortObjects = {
|
|
|
13625
14340
|
styledComponents?: boolean
|
|
13626
14341
|
|
|
13627
14342
|
partitionByComment?: (boolean | (({
|
|
13628
|
-
|
|
14343
|
+
|
|
14344
|
+
pattern: string
|
|
14345
|
+
|
|
13629
14346
|
flags?: string
|
|
13630
14347
|
} | string)[] | ({
|
|
13631
|
-
|
|
14348
|
+
|
|
14349
|
+
pattern: string
|
|
14350
|
+
|
|
13632
14351
|
flags?: string
|
|
13633
14352
|
} | string)) | {
|
|
14353
|
+
|
|
13634
14354
|
block?: (boolean | (({
|
|
13635
|
-
|
|
14355
|
+
|
|
14356
|
+
pattern: string
|
|
14357
|
+
|
|
13636
14358
|
flags?: string
|
|
13637
14359
|
} | string)[] | ({
|
|
13638
|
-
|
|
14360
|
+
|
|
14361
|
+
pattern: string
|
|
14362
|
+
|
|
13639
14363
|
flags?: string
|
|
13640
14364
|
} | string)))
|
|
14365
|
+
|
|
13641
14366
|
line?: (boolean | (({
|
|
13642
|
-
|
|
14367
|
+
|
|
14368
|
+
pattern: string
|
|
14369
|
+
|
|
13643
14370
|
flags?: string
|
|
13644
14371
|
} | string)[] | ({
|
|
13645
|
-
|
|
14372
|
+
|
|
14373
|
+
pattern: string
|
|
14374
|
+
|
|
13646
14375
|
flags?: string
|
|
13647
14376
|
} | string)))
|
|
13648
14377
|
})
|
|
@@ -13652,16 +14381,20 @@ type PerfectionistSortObjects = {
|
|
|
13652
14381
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
13653
14382
|
|
|
13654
14383
|
ignorePattern?: (({
|
|
13655
|
-
|
|
14384
|
+
|
|
14385
|
+
pattern: string
|
|
14386
|
+
|
|
13656
14387
|
flags?: string
|
|
13657
14388
|
} | string)[] | ({
|
|
13658
|
-
|
|
14389
|
+
|
|
14390
|
+
pattern: string
|
|
14391
|
+
|
|
13659
14392
|
flags?: string
|
|
13660
14393
|
} | string))
|
|
13661
14394
|
|
|
13662
14395
|
groups?: (string | string[] | {
|
|
13663
14396
|
|
|
13664
|
-
newlinesBetween
|
|
14397
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13665
14398
|
})[]
|
|
13666
14399
|
}[]
|
|
13667
14400
|
// ----- perfectionist/sort-sets -----
|
|
@@ -13672,7 +14405,6 @@ type PerfectionistSortSets = {
|
|
|
13672
14405
|
order?: ("asc" | "desc")
|
|
13673
14406
|
|
|
13674
14407
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13675
|
-
[k: string]: unknown | undefined
|
|
13676
14408
|
}
|
|
13677
14409
|
|
|
13678
14410
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13698,10 +14430,9 @@ type PerfectionistSortSets = {
|
|
|
13698
14430
|
order?: ("asc" | "desc")
|
|
13699
14431
|
|
|
13700
14432
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13701
|
-
[k: string]: unknown | undefined
|
|
13702
14433
|
}
|
|
13703
14434
|
|
|
13704
|
-
groupName
|
|
14435
|
+
groupName: string
|
|
13705
14436
|
|
|
13706
14437
|
order?: ("asc" | "desc")
|
|
13707
14438
|
|
|
@@ -13711,10 +14442,14 @@ type PerfectionistSortSets = {
|
|
|
13711
14442
|
selector?: ("literal" | "spread")
|
|
13712
14443
|
|
|
13713
14444
|
elementNamePattern?: (({
|
|
13714
|
-
|
|
14445
|
+
|
|
14446
|
+
pattern: string
|
|
14447
|
+
|
|
13715
14448
|
flags?: string
|
|
13716
14449
|
} | string)[] | ({
|
|
13717
|
-
|
|
14450
|
+
|
|
14451
|
+
pattern: string
|
|
14452
|
+
|
|
13718
14453
|
flags?: string
|
|
13719
14454
|
} | string))
|
|
13720
14455
|
}[]
|
|
@@ -13727,10 +14462,9 @@ type PerfectionistSortSets = {
|
|
|
13727
14462
|
order?: ("asc" | "desc")
|
|
13728
14463
|
|
|
13729
14464
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13730
|
-
[k: string]: unknown | undefined
|
|
13731
14465
|
}
|
|
13732
14466
|
|
|
13733
|
-
groupName
|
|
14467
|
+
groupName: string
|
|
13734
14468
|
|
|
13735
14469
|
order?: ("asc" | "desc")
|
|
13736
14470
|
|
|
@@ -13739,43 +14473,66 @@ type PerfectionistSortSets = {
|
|
|
13739
14473
|
selector?: ("literal" | "spread")
|
|
13740
14474
|
|
|
13741
14475
|
elementNamePattern?: (({
|
|
13742
|
-
|
|
14476
|
+
|
|
14477
|
+
pattern: string
|
|
14478
|
+
|
|
13743
14479
|
flags?: string
|
|
13744
14480
|
} | string)[] | ({
|
|
13745
|
-
|
|
14481
|
+
|
|
14482
|
+
pattern: string
|
|
14483
|
+
|
|
13746
14484
|
flags?: string
|
|
13747
14485
|
} | string))
|
|
13748
14486
|
})[]
|
|
14487
|
+
|
|
13749
14488
|
useConfigurationIf?: {
|
|
13750
14489
|
|
|
13751
14490
|
allNamesMatchPattern?: (({
|
|
13752
|
-
|
|
14491
|
+
|
|
14492
|
+
pattern: string
|
|
14493
|
+
|
|
13753
14494
|
flags?: string
|
|
13754
14495
|
} | string)[] | ({
|
|
13755
|
-
|
|
14496
|
+
|
|
14497
|
+
pattern: string
|
|
14498
|
+
|
|
13756
14499
|
flags?: string
|
|
13757
14500
|
} | string))
|
|
13758
14501
|
}
|
|
13759
14502
|
|
|
13760
14503
|
partitionByComment?: (boolean | (({
|
|
13761
|
-
|
|
14504
|
+
|
|
14505
|
+
pattern: string
|
|
14506
|
+
|
|
13762
14507
|
flags?: string
|
|
13763
14508
|
} | string)[] | ({
|
|
13764
|
-
|
|
14509
|
+
|
|
14510
|
+
pattern: string
|
|
14511
|
+
|
|
13765
14512
|
flags?: string
|
|
13766
14513
|
} | string)) | {
|
|
14514
|
+
|
|
13767
14515
|
block?: (boolean | (({
|
|
13768
|
-
|
|
14516
|
+
|
|
14517
|
+
pattern: string
|
|
14518
|
+
|
|
13769
14519
|
flags?: string
|
|
13770
14520
|
} | string)[] | ({
|
|
13771
|
-
|
|
14521
|
+
|
|
14522
|
+
pattern: string
|
|
14523
|
+
|
|
13772
14524
|
flags?: string
|
|
13773
14525
|
} | string)))
|
|
14526
|
+
|
|
13774
14527
|
line?: (boolean | (({
|
|
13775
|
-
|
|
14528
|
+
|
|
14529
|
+
pattern: string
|
|
14530
|
+
|
|
13776
14531
|
flags?: string
|
|
13777
14532
|
} | string)[] | ({
|
|
13778
|
-
|
|
14533
|
+
|
|
14534
|
+
pattern: string
|
|
14535
|
+
|
|
13779
14536
|
flags?: string
|
|
13780
14537
|
} | string)))
|
|
13781
14538
|
})
|
|
@@ -13786,7 +14543,7 @@ type PerfectionistSortSets = {
|
|
|
13786
14543
|
|
|
13787
14544
|
groups?: (string | string[] | {
|
|
13788
14545
|
|
|
13789
|
-
newlinesBetween
|
|
14546
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13790
14547
|
})[]
|
|
13791
14548
|
}[]
|
|
13792
14549
|
// ----- perfectionist/sort-switch-case -----
|
|
@@ -13797,7 +14554,6 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
13797
14554
|
order?: ("asc" | "desc")
|
|
13798
14555
|
|
|
13799
14556
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13800
|
-
[k: string]: unknown | undefined
|
|
13801
14557
|
}
|
|
13802
14558
|
|
|
13803
14559
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13813,14 +14569,13 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
13813
14569
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13814
14570
|
}]
|
|
13815
14571
|
// ----- perfectionist/sort-union-types -----
|
|
13816
|
-
type PerfectionistSortUnionTypes =
|
|
14572
|
+
type PerfectionistSortUnionTypes = {
|
|
13817
14573
|
|
|
13818
14574
|
fallbackSort?: {
|
|
13819
14575
|
|
|
13820
14576
|
order?: ("asc" | "desc")
|
|
13821
14577
|
|
|
13822
14578
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13823
|
-
[k: string]: unknown | undefined
|
|
13824
14579
|
}
|
|
13825
14580
|
|
|
13826
14581
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13835,25 +14590,103 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
13835
14590
|
|
|
13836
14591
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13837
14592
|
|
|
14593
|
+
customGroups?: ({
|
|
14594
|
+
|
|
14595
|
+
newlinesInside?: ("always" | "never")
|
|
14596
|
+
|
|
14597
|
+
fallbackSort?: {
|
|
14598
|
+
|
|
14599
|
+
order?: ("asc" | "desc")
|
|
14600
|
+
|
|
14601
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
14602
|
+
}
|
|
14603
|
+
|
|
14604
|
+
groupName: string
|
|
14605
|
+
|
|
14606
|
+
order?: ("asc" | "desc")
|
|
14607
|
+
|
|
14608
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
14609
|
+
anyOf?: {
|
|
14610
|
+
|
|
14611
|
+
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
|
|
14612
|
+
|
|
14613
|
+
elementNamePattern?: (({
|
|
14614
|
+
|
|
14615
|
+
pattern: string
|
|
14616
|
+
|
|
14617
|
+
flags?: string
|
|
14618
|
+
} | string)[] | ({
|
|
14619
|
+
|
|
14620
|
+
pattern: string
|
|
14621
|
+
|
|
14622
|
+
flags?: string
|
|
14623
|
+
} | string))
|
|
14624
|
+
}[]
|
|
14625
|
+
} | {
|
|
14626
|
+
|
|
14627
|
+
newlinesInside?: ("always" | "never")
|
|
14628
|
+
|
|
14629
|
+
fallbackSort?: {
|
|
14630
|
+
|
|
14631
|
+
order?: ("asc" | "desc")
|
|
14632
|
+
|
|
14633
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
14634
|
+
}
|
|
14635
|
+
|
|
14636
|
+
groupName: string
|
|
14637
|
+
|
|
14638
|
+
order?: ("asc" | "desc")
|
|
14639
|
+
|
|
14640
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
14641
|
+
|
|
14642
|
+
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
|
|
14643
|
+
|
|
14644
|
+
elementNamePattern?: (({
|
|
14645
|
+
|
|
14646
|
+
pattern: string
|
|
14647
|
+
|
|
14648
|
+
flags?: string
|
|
14649
|
+
} | string)[] | ({
|
|
14650
|
+
|
|
14651
|
+
pattern: string
|
|
14652
|
+
|
|
14653
|
+
flags?: string
|
|
14654
|
+
} | string))
|
|
14655
|
+
})[]
|
|
14656
|
+
|
|
13838
14657
|
partitionByComment?: (boolean | (({
|
|
13839
|
-
|
|
14658
|
+
|
|
14659
|
+
pattern: string
|
|
14660
|
+
|
|
13840
14661
|
flags?: string
|
|
13841
14662
|
} | string)[] | ({
|
|
13842
|
-
|
|
14663
|
+
|
|
14664
|
+
pattern: string
|
|
14665
|
+
|
|
13843
14666
|
flags?: string
|
|
13844
14667
|
} | string)) | {
|
|
14668
|
+
|
|
13845
14669
|
block?: (boolean | (({
|
|
13846
|
-
|
|
14670
|
+
|
|
14671
|
+
pattern: string
|
|
14672
|
+
|
|
13847
14673
|
flags?: string
|
|
13848
14674
|
} | string)[] | ({
|
|
13849
|
-
|
|
14675
|
+
|
|
14676
|
+
pattern: string
|
|
14677
|
+
|
|
13850
14678
|
flags?: string
|
|
13851
14679
|
} | string)))
|
|
14680
|
+
|
|
13852
14681
|
line?: (boolean | (({
|
|
13853
|
-
|
|
14682
|
+
|
|
14683
|
+
pattern: string
|
|
14684
|
+
|
|
13854
14685
|
flags?: string
|
|
13855
14686
|
} | string)[] | ({
|
|
13856
|
-
|
|
14687
|
+
|
|
14688
|
+
pattern: string
|
|
14689
|
+
|
|
13857
14690
|
flags?: string
|
|
13858
14691
|
} | string)))
|
|
13859
14692
|
})
|
|
@@ -13864,9 +14697,9 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
13864
14697
|
|
|
13865
14698
|
groups?: (string | string[] | {
|
|
13866
14699
|
|
|
13867
|
-
newlinesBetween
|
|
14700
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13868
14701
|
})[]
|
|
13869
|
-
}]
|
|
14702
|
+
}[]
|
|
13870
14703
|
// ----- perfectionist/sort-variable-declarations -----
|
|
13871
14704
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
13872
14705
|
|
|
@@ -13875,7 +14708,6 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
13875
14708
|
order?: ("asc" | "desc")
|
|
13876
14709
|
|
|
13877
14710
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13878
|
-
[k: string]: unknown | undefined
|
|
13879
14711
|
}
|
|
13880
14712
|
|
|
13881
14713
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13890,30 +14722,115 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
13890
14722
|
|
|
13891
14723
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13892
14724
|
|
|
14725
|
+
customGroups?: ({
|
|
14726
|
+
|
|
14727
|
+
newlinesInside?: ("always" | "never")
|
|
14728
|
+
|
|
14729
|
+
fallbackSort?: {
|
|
14730
|
+
|
|
14731
|
+
order?: ("asc" | "desc")
|
|
14732
|
+
|
|
14733
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
14734
|
+
}
|
|
14735
|
+
|
|
14736
|
+
groupName: string
|
|
14737
|
+
|
|
14738
|
+
order?: ("asc" | "desc")
|
|
14739
|
+
|
|
14740
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
14741
|
+
anyOf?: {
|
|
14742
|
+
|
|
14743
|
+
selector?: ("initialized" | "uninitialized")
|
|
14744
|
+
|
|
14745
|
+
elementNamePattern?: (({
|
|
14746
|
+
|
|
14747
|
+
pattern: string
|
|
14748
|
+
|
|
14749
|
+
flags?: string
|
|
14750
|
+
} | string)[] | ({
|
|
14751
|
+
|
|
14752
|
+
pattern: string
|
|
14753
|
+
|
|
14754
|
+
flags?: string
|
|
14755
|
+
} | string))
|
|
14756
|
+
}[]
|
|
14757
|
+
} | {
|
|
14758
|
+
|
|
14759
|
+
newlinesInside?: ("always" | "never")
|
|
14760
|
+
|
|
14761
|
+
fallbackSort?: {
|
|
14762
|
+
|
|
14763
|
+
order?: ("asc" | "desc")
|
|
14764
|
+
|
|
14765
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
14766
|
+
}
|
|
14767
|
+
|
|
14768
|
+
groupName: string
|
|
14769
|
+
|
|
14770
|
+
order?: ("asc" | "desc")
|
|
14771
|
+
|
|
14772
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
14773
|
+
|
|
14774
|
+
selector?: ("initialized" | "uninitialized")
|
|
14775
|
+
|
|
14776
|
+
elementNamePattern?: (({
|
|
14777
|
+
|
|
14778
|
+
pattern: string
|
|
14779
|
+
|
|
14780
|
+
flags?: string
|
|
14781
|
+
} | string)[] | ({
|
|
14782
|
+
|
|
14783
|
+
pattern: string
|
|
14784
|
+
|
|
14785
|
+
flags?: string
|
|
14786
|
+
} | string))
|
|
14787
|
+
})[]
|
|
14788
|
+
|
|
13893
14789
|
partitionByComment?: (boolean | (({
|
|
13894
|
-
|
|
14790
|
+
|
|
14791
|
+
pattern: string
|
|
14792
|
+
|
|
13895
14793
|
flags?: string
|
|
13896
14794
|
} | string)[] | ({
|
|
13897
|
-
|
|
14795
|
+
|
|
14796
|
+
pattern: string
|
|
14797
|
+
|
|
13898
14798
|
flags?: string
|
|
13899
14799
|
} | string)) | {
|
|
14800
|
+
|
|
13900
14801
|
block?: (boolean | (({
|
|
13901
|
-
|
|
14802
|
+
|
|
14803
|
+
pattern: string
|
|
14804
|
+
|
|
13902
14805
|
flags?: string
|
|
13903
14806
|
} | string)[] | ({
|
|
13904
|
-
|
|
14807
|
+
|
|
14808
|
+
pattern: string
|
|
14809
|
+
|
|
13905
14810
|
flags?: string
|
|
13906
14811
|
} | string)))
|
|
14812
|
+
|
|
13907
14813
|
line?: (boolean | (({
|
|
13908
|
-
|
|
14814
|
+
|
|
14815
|
+
pattern: string
|
|
14816
|
+
|
|
13909
14817
|
flags?: string
|
|
13910
14818
|
} | string)[] | ({
|
|
13911
|
-
|
|
14819
|
+
|
|
14820
|
+
pattern: string
|
|
14821
|
+
|
|
13912
14822
|
flags?: string
|
|
13913
14823
|
} | string)))
|
|
13914
14824
|
})
|
|
13915
14825
|
|
|
13916
14826
|
partitionByNewLine?: boolean
|
|
14827
|
+
|
|
14828
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
14829
|
+
|
|
14830
|
+
groups?: (string | string[] | {
|
|
14831
|
+
|
|
14832
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
14833
|
+
})[]
|
|
13917
14834
|
}]
|
|
13918
14835
|
// ----- prefer-arrow-callback -----
|
|
13919
14836
|
type PreferArrowCallback = []|[{
|
|
@@ -16899,6 +17816,8 @@ type TsNoUnnecessaryCondition = []|[{
|
|
|
16899
17816
|
// ----- ts/no-unnecessary-type-assertion -----
|
|
16900
17817
|
type TsNoUnnecessaryTypeAssertion = []|[{
|
|
16901
17818
|
|
|
17819
|
+
checkLiteralConstAssertions?: boolean
|
|
17820
|
+
|
|
16902
17821
|
typesToIgnore?: string[]
|
|
16903
17822
|
}]
|
|
16904
17823
|
// ----- ts/no-unused-expressions -----
|
|
@@ -16907,6 +17826,7 @@ type TsNoUnusedExpressions = []|[{
|
|
|
16907
17826
|
allowTernary?: boolean
|
|
16908
17827
|
allowTaggedTemplates?: boolean
|
|
16909
17828
|
enforceForJSX?: boolean
|
|
17829
|
+
ignoreDirectives?: boolean
|
|
16910
17830
|
}]
|
|
16911
17831
|
// ----- ts/no-unused-vars -----
|
|
16912
17832
|
type TsNoUnusedVars = []|[(("all" | "local") | {
|
|
@@ -16969,6 +17889,8 @@ type TsOnlyThrowError = []|[{
|
|
|
16969
17889
|
package: string
|
|
16970
17890
|
})[]
|
|
16971
17891
|
|
|
17892
|
+
allowRethrowing?: boolean
|
|
17893
|
+
|
|
16972
17894
|
allowThrowingAny?: boolean
|
|
16973
17895
|
|
|
16974
17896
|
allowThrowingUnknown?: boolean
|
|
@@ -17314,10 +18236,6 @@ interface _UnicornImportStyle_ModuleStyles {
|
|
|
17314
18236
|
interface _UnicornImportStyle_BooleanObject {
|
|
17315
18237
|
[k: string]: boolean | undefined
|
|
17316
18238
|
}
|
|
17317
|
-
// ----- unicorn/no-array-push-push -----
|
|
17318
|
-
type UnicornNoArrayPushPush = []|[{
|
|
17319
|
-
ignore?: unknown[]
|
|
17320
|
-
}]
|
|
17321
18239
|
// ----- unicorn/no-array-reduce -----
|
|
17322
18240
|
type UnicornNoArrayReduce = []|[{
|
|
17323
18241
|
allowSimpleOperations?: boolean
|
|
@@ -17413,6 +18331,10 @@ type UnicornPreferNumberProperties = []|[{
|
|
|
17413
18331
|
type UnicornPreferObjectFromEntries = []|[{
|
|
17414
18332
|
functions?: unknown[]
|
|
17415
18333
|
}]
|
|
18334
|
+
// ----- unicorn/prefer-single-call -----
|
|
18335
|
+
type UnicornPreferSingleCall = []|[{
|
|
18336
|
+
ignore?: unknown[]
|
|
18337
|
+
}]
|
|
17416
18338
|
// ----- unicorn/prefer-structured-clone -----
|
|
17417
18339
|
type UnicornPreferStructuredClone = []|[{
|
|
17418
18340
|
functions?: unknown[]
|
|
@@ -17655,6 +18577,10 @@ type VueDefineMacrosOrder = []|[{
|
|
|
17655
18577
|
}]
|
|
17656
18578
|
// ----- vue/define-props-declaration -----
|
|
17657
18579
|
type VueDefinePropsDeclaration = []|[("type-based" | "runtime")]
|
|
18580
|
+
// ----- vue/define-props-destructuring -----
|
|
18581
|
+
type VueDefinePropsDestructuring = []|[{
|
|
18582
|
+
destructure?: ("always" | "never")
|
|
18583
|
+
}]
|
|
17658
18584
|
// ----- vue/dot-location -----
|
|
17659
18585
|
type VueDotLocation = []|[("object" | "property")]
|
|
17660
18586
|
// ----- vue/dot-notation -----
|
|
@@ -18301,6 +19227,10 @@ type VueNoLoneTemplate = []|[{
|
|
|
18301
19227
|
type VueNoMultiSpaces = []|[{
|
|
18302
19228
|
ignoreProperties?: boolean
|
|
18303
19229
|
}]
|
|
19230
|
+
// ----- vue/no-multiple-template-root -----
|
|
19231
|
+
type VueNoMultipleTemplateRoot = []|[{
|
|
19232
|
+
disallowComments?: boolean
|
|
19233
|
+
}]
|
|
18304
19234
|
// ----- vue/no-mutating-props -----
|
|
18305
19235
|
type VueNoMutatingProps = []|[{
|
|
18306
19236
|
shallowOnly?: boolean
|
|
@@ -18757,6 +19687,7 @@ type YamlFlowSequenceBracketSpacing = []|[("always" | "never")]|[("always" | "ne
|
|
|
18757
19687
|
type YamlIndent = []|[number]|[number, {
|
|
18758
19688
|
indentBlockSequences?: boolean
|
|
18759
19689
|
indicatorValueIndent?: number
|
|
19690
|
+
alignMultilineFlowScalars?: boolean
|
|
18760
19691
|
}]
|
|
18761
19692
|
// ----- yaml/key-name-casing -----
|
|
18762
19693
|
type YamlKeyNameCasing = []|[{
|