@vinicunca/eslint-config 3.13.0 → 3.15.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 +1234 -410
- package/package.json +9 -9
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
|
/**
|
|
@@ -9658,6 +9658,14 @@ type ImportExtensions = ([]|[("always" | "ignorePackages" | "never")] | []|[("al
|
|
|
9658
9658
|
}
|
|
9659
9659
|
ignorePackages?: boolean
|
|
9660
9660
|
checkTypeImports?: boolean
|
|
9661
|
+
pathGroupOverrides?: {
|
|
9662
|
+
pattern: string
|
|
9663
|
+
patternOptions?: {
|
|
9664
|
+
[k: string]: unknown | undefined
|
|
9665
|
+
}
|
|
9666
|
+
action: ("enforce" | "ignore")
|
|
9667
|
+
}[]
|
|
9668
|
+
fix?: boolean
|
|
9661
9669
|
[k: string]: unknown | undefined
|
|
9662
9670
|
}] | []|[{
|
|
9663
9671
|
pattern?: {
|
|
@@ -9665,6 +9673,14 @@ type ImportExtensions = ([]|[("always" | "ignorePackages" | "never")] | []|[("al
|
|
|
9665
9673
|
}
|
|
9666
9674
|
ignorePackages?: boolean
|
|
9667
9675
|
checkTypeImports?: boolean
|
|
9676
|
+
pathGroupOverrides?: {
|
|
9677
|
+
pattern: string
|
|
9678
|
+
patternOptions?: {
|
|
9679
|
+
[k: string]: unknown | undefined
|
|
9680
|
+
}
|
|
9681
|
+
action: ("enforce" | "ignore")
|
|
9682
|
+
}[]
|
|
9683
|
+
fix?: boolean
|
|
9668
9684
|
[k: string]: unknown | undefined
|
|
9669
9685
|
}] | []|[("always" | "ignorePackages" | "never")]|[("always" | "ignorePackages" | "never"), {
|
|
9670
9686
|
[k: string]: ("always" | "ignorePackages" | "never")
|
|
@@ -11755,6 +11771,7 @@ type NodeNoUnpublishedImport = []|[{
|
|
|
11755
11771
|
resolverConfig?: {
|
|
11756
11772
|
[k: string]: unknown | undefined
|
|
11757
11773
|
}
|
|
11774
|
+
tryExtensions?: string[]
|
|
11758
11775
|
ignoreTypeImport?: boolean
|
|
11759
11776
|
ignorePrivate?: boolean
|
|
11760
11777
|
}]
|
|
@@ -11798,7 +11815,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
11798
11815
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
11799
11816
|
version?: string
|
|
11800
11817
|
allowExperimental?: boolean
|
|
11801
|
-
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")[]
|
|
11802
11819
|
}]
|
|
11803
11820
|
// ----- node/prefer-global/buffer -----
|
|
11804
11821
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -11946,7 +11963,6 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11946
11963
|
order?: ("asc" | "desc")
|
|
11947
11964
|
|
|
11948
11965
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11949
|
-
[k: string]: unknown | undefined
|
|
11950
11966
|
}
|
|
11951
11967
|
|
|
11952
11968
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -11972,10 +11988,9 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11972
11988
|
order?: ("asc" | "desc")
|
|
11973
11989
|
|
|
11974
11990
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11975
|
-
[k: string]: unknown | undefined
|
|
11976
11991
|
}
|
|
11977
11992
|
|
|
11978
|
-
groupName
|
|
11993
|
+
groupName: string
|
|
11979
11994
|
|
|
11980
11995
|
order?: ("asc" | "desc")
|
|
11981
11996
|
|
|
@@ -11985,10 +12000,14 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11985
12000
|
selector?: ("literal" | "spread")
|
|
11986
12001
|
|
|
11987
12002
|
elementNamePattern?: (({
|
|
11988
|
-
|
|
12003
|
+
|
|
12004
|
+
pattern: string
|
|
12005
|
+
|
|
11989
12006
|
flags?: string
|
|
11990
12007
|
} | string)[] | ({
|
|
11991
|
-
|
|
12008
|
+
|
|
12009
|
+
pattern: string
|
|
12010
|
+
|
|
11992
12011
|
flags?: string
|
|
11993
12012
|
} | string))
|
|
11994
12013
|
}[]
|
|
@@ -12001,10 +12020,9 @@ type PerfectionistSortArrayIncludes = {
|
|
|
12001
12020
|
order?: ("asc" | "desc")
|
|
12002
12021
|
|
|
12003
12022
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12004
|
-
[k: string]: unknown | undefined
|
|
12005
12023
|
}
|
|
12006
12024
|
|
|
12007
|
-
groupName
|
|
12025
|
+
groupName: string
|
|
12008
12026
|
|
|
12009
12027
|
order?: ("asc" | "desc")
|
|
12010
12028
|
|
|
@@ -12013,43 +12031,66 @@ type PerfectionistSortArrayIncludes = {
|
|
|
12013
12031
|
selector?: ("literal" | "spread")
|
|
12014
12032
|
|
|
12015
12033
|
elementNamePattern?: (({
|
|
12016
|
-
|
|
12034
|
+
|
|
12035
|
+
pattern: string
|
|
12036
|
+
|
|
12017
12037
|
flags?: string
|
|
12018
12038
|
} | string)[] | ({
|
|
12019
|
-
|
|
12039
|
+
|
|
12040
|
+
pattern: string
|
|
12041
|
+
|
|
12020
12042
|
flags?: string
|
|
12021
12043
|
} | string))
|
|
12022
12044
|
})[]
|
|
12045
|
+
|
|
12023
12046
|
useConfigurationIf?: {
|
|
12024
12047
|
|
|
12025
12048
|
allNamesMatchPattern?: (({
|
|
12026
|
-
|
|
12049
|
+
|
|
12050
|
+
pattern: string
|
|
12051
|
+
|
|
12027
12052
|
flags?: string
|
|
12028
12053
|
} | string)[] | ({
|
|
12029
|
-
|
|
12054
|
+
|
|
12055
|
+
pattern: string
|
|
12056
|
+
|
|
12030
12057
|
flags?: string
|
|
12031
12058
|
} | string))
|
|
12032
12059
|
}
|
|
12033
12060
|
|
|
12034
12061
|
partitionByComment?: (boolean | (({
|
|
12035
|
-
|
|
12062
|
+
|
|
12063
|
+
pattern: string
|
|
12064
|
+
|
|
12036
12065
|
flags?: string
|
|
12037
12066
|
} | string)[] | ({
|
|
12038
|
-
|
|
12067
|
+
|
|
12068
|
+
pattern: string
|
|
12069
|
+
|
|
12039
12070
|
flags?: string
|
|
12040
12071
|
} | string)) | {
|
|
12072
|
+
|
|
12041
12073
|
block?: (boolean | (({
|
|
12042
|
-
|
|
12074
|
+
|
|
12075
|
+
pattern: string
|
|
12076
|
+
|
|
12043
12077
|
flags?: string
|
|
12044
12078
|
} | string)[] | ({
|
|
12045
|
-
|
|
12079
|
+
|
|
12080
|
+
pattern: string
|
|
12081
|
+
|
|
12046
12082
|
flags?: string
|
|
12047
12083
|
} | string)))
|
|
12084
|
+
|
|
12048
12085
|
line?: (boolean | (({
|
|
12049
|
-
|
|
12086
|
+
|
|
12087
|
+
pattern: string
|
|
12088
|
+
|
|
12050
12089
|
flags?: string
|
|
12051
12090
|
} | string)[] | ({
|
|
12052
|
-
|
|
12091
|
+
|
|
12092
|
+
pattern: string
|
|
12093
|
+
|
|
12053
12094
|
flags?: string
|
|
12054
12095
|
} | string)))
|
|
12055
12096
|
})
|
|
@@ -12060,7 +12101,7 @@ type PerfectionistSortArrayIncludes = {
|
|
|
12060
12101
|
|
|
12061
12102
|
groups?: (string | string[] | {
|
|
12062
12103
|
|
|
12063
|
-
newlinesBetween
|
|
12104
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12064
12105
|
})[]
|
|
12065
12106
|
}[]
|
|
12066
12107
|
// ----- perfectionist/sort-classes -----
|
|
@@ -12071,7 +12112,6 @@ type PerfectionistSortClasses = []|[{
|
|
|
12071
12112
|
order?: ("asc" | "desc")
|
|
12072
12113
|
|
|
12073
12114
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12074
|
-
[k: string]: unknown | undefined
|
|
12075
12115
|
}
|
|
12076
12116
|
|
|
12077
12117
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12095,10 +12135,9 @@ type PerfectionistSortClasses = []|[{
|
|
|
12095
12135
|
order?: ("asc" | "desc")
|
|
12096
12136
|
|
|
12097
12137
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12098
|
-
[k: string]: unknown | undefined
|
|
12099
12138
|
}
|
|
12100
12139
|
|
|
12101
|
-
groupName
|
|
12140
|
+
groupName: string
|
|
12102
12141
|
|
|
12103
12142
|
order?: ("asc" | "desc")
|
|
12104
12143
|
|
|
@@ -12110,26 +12149,38 @@ type PerfectionistSortClasses = []|[{
|
|
|
12110
12149
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
12111
12150
|
|
|
12112
12151
|
decoratorNamePattern?: (({
|
|
12113
|
-
|
|
12152
|
+
|
|
12153
|
+
pattern: string
|
|
12154
|
+
|
|
12114
12155
|
flags?: string
|
|
12115
12156
|
} | string)[] | ({
|
|
12116
|
-
|
|
12157
|
+
|
|
12158
|
+
pattern: string
|
|
12159
|
+
|
|
12117
12160
|
flags?: string
|
|
12118
12161
|
} | string))
|
|
12119
12162
|
|
|
12120
12163
|
elementValuePattern?: (({
|
|
12121
|
-
|
|
12164
|
+
|
|
12165
|
+
pattern: string
|
|
12166
|
+
|
|
12122
12167
|
flags?: string
|
|
12123
12168
|
} | string)[] | ({
|
|
12124
|
-
|
|
12169
|
+
|
|
12170
|
+
pattern: string
|
|
12171
|
+
|
|
12125
12172
|
flags?: string
|
|
12126
12173
|
} | string))
|
|
12127
12174
|
|
|
12128
12175
|
elementNamePattern?: (({
|
|
12129
|
-
|
|
12176
|
+
|
|
12177
|
+
pattern: string
|
|
12178
|
+
|
|
12130
12179
|
flags?: string
|
|
12131
12180
|
} | string)[] | ({
|
|
12132
|
-
|
|
12181
|
+
|
|
12182
|
+
pattern: string
|
|
12183
|
+
|
|
12133
12184
|
flags?: string
|
|
12134
12185
|
} | string))
|
|
12135
12186
|
}[]
|
|
@@ -12142,10 +12193,9 @@ type PerfectionistSortClasses = []|[{
|
|
|
12142
12193
|
order?: ("asc" | "desc")
|
|
12143
12194
|
|
|
12144
12195
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12145
|
-
[k: string]: unknown | undefined
|
|
12146
12196
|
}
|
|
12147
12197
|
|
|
12148
|
-
groupName
|
|
12198
|
+
groupName: string
|
|
12149
12199
|
|
|
12150
12200
|
order?: ("asc" | "desc")
|
|
12151
12201
|
|
|
@@ -12156,57 +12206,87 @@ type PerfectionistSortClasses = []|[{
|
|
|
12156
12206
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
12157
12207
|
|
|
12158
12208
|
decoratorNamePattern?: (({
|
|
12159
|
-
|
|
12209
|
+
|
|
12210
|
+
pattern: string
|
|
12211
|
+
|
|
12160
12212
|
flags?: string
|
|
12161
12213
|
} | string)[] | ({
|
|
12162
|
-
|
|
12214
|
+
|
|
12215
|
+
pattern: string
|
|
12216
|
+
|
|
12163
12217
|
flags?: string
|
|
12164
12218
|
} | string))
|
|
12165
12219
|
|
|
12166
12220
|
elementValuePattern?: (({
|
|
12167
|
-
|
|
12221
|
+
|
|
12222
|
+
pattern: string
|
|
12223
|
+
|
|
12168
12224
|
flags?: string
|
|
12169
12225
|
} | string)[] | ({
|
|
12170
|
-
|
|
12226
|
+
|
|
12227
|
+
pattern: string
|
|
12228
|
+
|
|
12171
12229
|
flags?: string
|
|
12172
12230
|
} | string))
|
|
12173
12231
|
|
|
12174
12232
|
elementNamePattern?: (({
|
|
12175
|
-
|
|
12233
|
+
|
|
12234
|
+
pattern: string
|
|
12235
|
+
|
|
12176
12236
|
flags?: string
|
|
12177
12237
|
} | string)[] | ({
|
|
12178
|
-
|
|
12238
|
+
|
|
12239
|
+
pattern: string
|
|
12240
|
+
|
|
12179
12241
|
flags?: string
|
|
12180
12242
|
} | string))
|
|
12181
12243
|
})[]
|
|
12182
12244
|
|
|
12183
12245
|
ignoreCallbackDependenciesPatterns?: (({
|
|
12184
|
-
|
|
12246
|
+
|
|
12247
|
+
pattern: string
|
|
12248
|
+
|
|
12185
12249
|
flags?: string
|
|
12186
12250
|
} | string)[] | ({
|
|
12187
|
-
|
|
12251
|
+
|
|
12252
|
+
pattern: string
|
|
12253
|
+
|
|
12188
12254
|
flags?: string
|
|
12189
12255
|
} | string))
|
|
12190
12256
|
|
|
12191
12257
|
partitionByComment?: (boolean | (({
|
|
12192
|
-
|
|
12258
|
+
|
|
12259
|
+
pattern: string
|
|
12260
|
+
|
|
12193
12261
|
flags?: string
|
|
12194
12262
|
} | string)[] | ({
|
|
12195
|
-
|
|
12263
|
+
|
|
12264
|
+
pattern: string
|
|
12265
|
+
|
|
12196
12266
|
flags?: string
|
|
12197
12267
|
} | string)) | {
|
|
12268
|
+
|
|
12198
12269
|
block?: (boolean | (({
|
|
12199
|
-
|
|
12270
|
+
|
|
12271
|
+
pattern: string
|
|
12272
|
+
|
|
12200
12273
|
flags?: string
|
|
12201
12274
|
} | string)[] | ({
|
|
12202
|
-
|
|
12275
|
+
|
|
12276
|
+
pattern: string
|
|
12277
|
+
|
|
12203
12278
|
flags?: string
|
|
12204
12279
|
} | string)))
|
|
12280
|
+
|
|
12205
12281
|
line?: (boolean | (({
|
|
12206
|
-
|
|
12282
|
+
|
|
12283
|
+
pattern: string
|
|
12284
|
+
|
|
12207
12285
|
flags?: string
|
|
12208
12286
|
} | string)[] | ({
|
|
12209
|
-
|
|
12287
|
+
|
|
12288
|
+
pattern: string
|
|
12289
|
+
|
|
12210
12290
|
flags?: string
|
|
12211
12291
|
} | string)))
|
|
12212
12292
|
})
|
|
@@ -12217,7 +12297,7 @@ type PerfectionistSortClasses = []|[{
|
|
|
12217
12297
|
|
|
12218
12298
|
groups?: (string | string[] | {
|
|
12219
12299
|
|
|
12220
|
-
newlinesBetween
|
|
12300
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12221
12301
|
})[]
|
|
12222
12302
|
}]
|
|
12223
12303
|
// ----- perfectionist/sort-decorators -----
|
|
@@ -12228,7 +12308,6 @@ type PerfectionistSortDecorators = []|[{
|
|
|
12228
12308
|
order?: ("asc" | "desc")
|
|
12229
12309
|
|
|
12230
12310
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12231
|
-
[k: string]: unknown | undefined
|
|
12232
12311
|
}
|
|
12233
12312
|
|
|
12234
12313
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12254,24 +12333,38 @@ type PerfectionistSortDecorators = []|[{
|
|
|
12254
12333
|
sortOnClasses?: boolean
|
|
12255
12334
|
|
|
12256
12335
|
partitionByComment?: (boolean | (({
|
|
12257
|
-
|
|
12336
|
+
|
|
12337
|
+
pattern: string
|
|
12338
|
+
|
|
12258
12339
|
flags?: string
|
|
12259
12340
|
} | string)[] | ({
|
|
12260
|
-
|
|
12341
|
+
|
|
12342
|
+
pattern: string
|
|
12343
|
+
|
|
12261
12344
|
flags?: string
|
|
12262
12345
|
} | string)) | {
|
|
12346
|
+
|
|
12263
12347
|
block?: (boolean | (({
|
|
12264
|
-
|
|
12348
|
+
|
|
12349
|
+
pattern: string
|
|
12350
|
+
|
|
12265
12351
|
flags?: string
|
|
12266
12352
|
} | string)[] | ({
|
|
12267
|
-
|
|
12353
|
+
|
|
12354
|
+
pattern: string
|
|
12355
|
+
|
|
12268
12356
|
flags?: string
|
|
12269
12357
|
} | string)))
|
|
12358
|
+
|
|
12270
12359
|
line?: (boolean | (({
|
|
12271
|
-
|
|
12360
|
+
|
|
12361
|
+
pattern: string
|
|
12362
|
+
|
|
12272
12363
|
flags?: string
|
|
12273
12364
|
} | string)[] | ({
|
|
12274
|
-
|
|
12365
|
+
|
|
12366
|
+
pattern: string
|
|
12367
|
+
|
|
12275
12368
|
flags?: string
|
|
12276
12369
|
} | string)))
|
|
12277
12370
|
})
|
|
@@ -12282,7 +12375,7 @@ type PerfectionistSortDecorators = []|[{
|
|
|
12282
12375
|
|
|
12283
12376
|
groups?: (string | string[] | {
|
|
12284
12377
|
|
|
12285
|
-
newlinesBetween
|
|
12378
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12286
12379
|
})[]
|
|
12287
12380
|
}]
|
|
12288
12381
|
// ----- perfectionist/sort-enums -----
|
|
@@ -12293,7 +12386,6 @@ type PerfectionistSortEnums = []|[{
|
|
|
12293
12386
|
order?: ("asc" | "desc")
|
|
12294
12387
|
|
|
12295
12388
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12296
|
-
[k: string]: unknown | undefined
|
|
12297
12389
|
}
|
|
12298
12390
|
|
|
12299
12391
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12307,8 +12399,6 @@ type PerfectionistSortEnums = []|[{
|
|
|
12307
12399
|
order?: ("asc" | "desc")
|
|
12308
12400
|
|
|
12309
12401
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12310
|
-
|
|
12311
|
-
forceNumericSort?: boolean
|
|
12312
12402
|
customGroups?: ({
|
|
12313
12403
|
[k: string]: (string | string[]) | undefined
|
|
12314
12404
|
} | ({
|
|
@@ -12320,10 +12410,9 @@ type PerfectionistSortEnums = []|[{
|
|
|
12320
12410
|
order?: ("asc" | "desc")
|
|
12321
12411
|
|
|
12322
12412
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12323
|
-
[k: string]: unknown | undefined
|
|
12324
12413
|
}
|
|
12325
12414
|
|
|
12326
|
-
groupName
|
|
12415
|
+
groupName: string
|
|
12327
12416
|
|
|
12328
12417
|
order?: ("asc" | "desc")
|
|
12329
12418
|
|
|
@@ -12331,18 +12420,26 @@ type PerfectionistSortEnums = []|[{
|
|
|
12331
12420
|
anyOf?: {
|
|
12332
12421
|
|
|
12333
12422
|
elementValuePattern?: (({
|
|
12334
|
-
|
|
12423
|
+
|
|
12424
|
+
pattern: string
|
|
12425
|
+
|
|
12335
12426
|
flags?: string
|
|
12336
12427
|
} | string)[] | ({
|
|
12337
|
-
|
|
12428
|
+
|
|
12429
|
+
pattern: string
|
|
12430
|
+
|
|
12338
12431
|
flags?: string
|
|
12339
12432
|
} | string))
|
|
12340
12433
|
|
|
12341
12434
|
elementNamePattern?: (({
|
|
12342
|
-
|
|
12435
|
+
|
|
12436
|
+
pattern: string
|
|
12437
|
+
|
|
12343
12438
|
flags?: string
|
|
12344
12439
|
} | string)[] | ({
|
|
12345
|
-
|
|
12440
|
+
|
|
12441
|
+
pattern: string
|
|
12442
|
+
|
|
12346
12443
|
flags?: string
|
|
12347
12444
|
} | string))
|
|
12348
12445
|
}[]
|
|
@@ -12355,53 +12452,76 @@ type PerfectionistSortEnums = []|[{
|
|
|
12355
12452
|
order?: ("asc" | "desc")
|
|
12356
12453
|
|
|
12357
12454
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12358
|
-
[k: string]: unknown | undefined
|
|
12359
12455
|
}
|
|
12360
12456
|
|
|
12361
|
-
groupName
|
|
12457
|
+
groupName: string
|
|
12362
12458
|
|
|
12363
12459
|
order?: ("asc" | "desc")
|
|
12364
12460
|
|
|
12365
12461
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12366
12462
|
|
|
12367
12463
|
elementValuePattern?: (({
|
|
12368
|
-
|
|
12464
|
+
|
|
12465
|
+
pattern: string
|
|
12466
|
+
|
|
12369
12467
|
flags?: string
|
|
12370
12468
|
} | string)[] | ({
|
|
12371
|
-
|
|
12469
|
+
|
|
12470
|
+
pattern: string
|
|
12471
|
+
|
|
12372
12472
|
flags?: string
|
|
12373
12473
|
} | string))
|
|
12374
12474
|
|
|
12375
12475
|
elementNamePattern?: (({
|
|
12376
|
-
|
|
12476
|
+
|
|
12477
|
+
pattern: string
|
|
12478
|
+
|
|
12377
12479
|
flags?: string
|
|
12378
12480
|
} | string)[] | ({
|
|
12379
|
-
|
|
12481
|
+
|
|
12482
|
+
pattern: string
|
|
12483
|
+
|
|
12380
12484
|
flags?: string
|
|
12381
12485
|
} | string))
|
|
12382
12486
|
})[])
|
|
12383
12487
|
|
|
12488
|
+
forceNumericSort?: boolean
|
|
12489
|
+
|
|
12384
12490
|
sortByValue?: boolean
|
|
12385
12491
|
|
|
12386
12492
|
partitionByComment?: (boolean | (({
|
|
12387
|
-
|
|
12493
|
+
|
|
12494
|
+
pattern: string
|
|
12495
|
+
|
|
12388
12496
|
flags?: string
|
|
12389
12497
|
} | string)[] | ({
|
|
12390
|
-
|
|
12498
|
+
|
|
12499
|
+
pattern: string
|
|
12500
|
+
|
|
12391
12501
|
flags?: string
|
|
12392
12502
|
} | string)) | {
|
|
12503
|
+
|
|
12393
12504
|
block?: (boolean | (({
|
|
12394
|
-
|
|
12505
|
+
|
|
12506
|
+
pattern: string
|
|
12507
|
+
|
|
12395
12508
|
flags?: string
|
|
12396
12509
|
} | string)[] | ({
|
|
12397
|
-
|
|
12510
|
+
|
|
12511
|
+
pattern: string
|
|
12512
|
+
|
|
12398
12513
|
flags?: string
|
|
12399
12514
|
} | string)))
|
|
12515
|
+
|
|
12400
12516
|
line?: (boolean | (({
|
|
12401
|
-
|
|
12517
|
+
|
|
12518
|
+
pattern: string
|
|
12519
|
+
|
|
12402
12520
|
flags?: string
|
|
12403
12521
|
} | string)[] | ({
|
|
12404
|
-
|
|
12522
|
+
|
|
12523
|
+
pattern: string
|
|
12524
|
+
|
|
12405
12525
|
flags?: string
|
|
12406
12526
|
} | string)))
|
|
12407
12527
|
})
|
|
@@ -12412,7 +12532,7 @@ type PerfectionistSortEnums = []|[{
|
|
|
12412
12532
|
|
|
12413
12533
|
groups?: (string | string[] | {
|
|
12414
12534
|
|
|
12415
|
-
newlinesBetween
|
|
12535
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12416
12536
|
})[]
|
|
12417
12537
|
}]
|
|
12418
12538
|
// ----- perfectionist/sort-exports -----
|
|
@@ -12423,7 +12543,6 @@ type PerfectionistSortExports = {
|
|
|
12423
12543
|
order?: ("asc" | "desc")
|
|
12424
12544
|
|
|
12425
12545
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12426
|
-
[k: string]: unknown | undefined
|
|
12427
12546
|
}
|
|
12428
12547
|
|
|
12429
12548
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12449,10 +12568,9 @@ type PerfectionistSortExports = {
|
|
|
12449
12568
|
order?: ("asc" | "desc")
|
|
12450
12569
|
|
|
12451
12570
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12452
|
-
[k: string]: unknown | undefined
|
|
12453
12571
|
}
|
|
12454
12572
|
|
|
12455
|
-
groupName
|
|
12573
|
+
groupName: string
|
|
12456
12574
|
|
|
12457
12575
|
order?: ("asc" | "desc")
|
|
12458
12576
|
|
|
@@ -12464,10 +12582,14 @@ type PerfectionistSortExports = {
|
|
|
12464
12582
|
selector?: "export"
|
|
12465
12583
|
|
|
12466
12584
|
elementNamePattern?: (({
|
|
12467
|
-
|
|
12585
|
+
|
|
12586
|
+
pattern: string
|
|
12587
|
+
|
|
12468
12588
|
flags?: string
|
|
12469
12589
|
} | string)[] | ({
|
|
12470
|
-
|
|
12590
|
+
|
|
12591
|
+
pattern: string
|
|
12592
|
+
|
|
12471
12593
|
flags?: string
|
|
12472
12594
|
} | string))
|
|
12473
12595
|
}[]
|
|
@@ -12480,10 +12602,9 @@ type PerfectionistSortExports = {
|
|
|
12480
12602
|
order?: ("asc" | "desc")
|
|
12481
12603
|
|
|
12482
12604
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12483
|
-
[k: string]: unknown | undefined
|
|
12484
12605
|
}
|
|
12485
12606
|
|
|
12486
|
-
groupName
|
|
12607
|
+
groupName: string
|
|
12487
12608
|
|
|
12488
12609
|
order?: ("asc" | "desc")
|
|
12489
12610
|
|
|
@@ -12494,33 +12615,51 @@ type PerfectionistSortExports = {
|
|
|
12494
12615
|
selector?: "export"
|
|
12495
12616
|
|
|
12496
12617
|
elementNamePattern?: (({
|
|
12497
|
-
|
|
12618
|
+
|
|
12619
|
+
pattern: string
|
|
12620
|
+
|
|
12498
12621
|
flags?: string
|
|
12499
12622
|
} | string)[] | ({
|
|
12500
|
-
|
|
12623
|
+
|
|
12624
|
+
pattern: string
|
|
12625
|
+
|
|
12501
12626
|
flags?: string
|
|
12502
12627
|
} | string))
|
|
12503
12628
|
})[]
|
|
12504
12629
|
|
|
12505
12630
|
partitionByComment?: (boolean | (({
|
|
12506
|
-
|
|
12631
|
+
|
|
12632
|
+
pattern: string
|
|
12633
|
+
|
|
12507
12634
|
flags?: string
|
|
12508
12635
|
} | string)[] | ({
|
|
12509
|
-
|
|
12636
|
+
|
|
12637
|
+
pattern: string
|
|
12638
|
+
|
|
12510
12639
|
flags?: string
|
|
12511
12640
|
} | string)) | {
|
|
12641
|
+
|
|
12512
12642
|
block?: (boolean | (({
|
|
12513
|
-
|
|
12643
|
+
|
|
12644
|
+
pattern: string
|
|
12645
|
+
|
|
12514
12646
|
flags?: string
|
|
12515
12647
|
} | string)[] | ({
|
|
12516
|
-
|
|
12648
|
+
|
|
12649
|
+
pattern: string
|
|
12650
|
+
|
|
12517
12651
|
flags?: string
|
|
12518
12652
|
} | string)))
|
|
12653
|
+
|
|
12519
12654
|
line?: (boolean | (({
|
|
12520
|
-
|
|
12655
|
+
|
|
12656
|
+
pattern: string
|
|
12657
|
+
|
|
12521
12658
|
flags?: string
|
|
12522
12659
|
} | string)[] | ({
|
|
12523
|
-
|
|
12660
|
+
|
|
12661
|
+
pattern: string
|
|
12662
|
+
|
|
12524
12663
|
flags?: string
|
|
12525
12664
|
} | string)))
|
|
12526
12665
|
})
|
|
@@ -12531,7 +12670,7 @@ type PerfectionistSortExports = {
|
|
|
12531
12670
|
|
|
12532
12671
|
groups?: (string | string[] | {
|
|
12533
12672
|
|
|
12534
|
-
newlinesBetween
|
|
12673
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12535
12674
|
})[]
|
|
12536
12675
|
}[]
|
|
12537
12676
|
// ----- perfectionist/sort-heritage-clauses -----
|
|
@@ -12542,7 +12681,6 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
12542
12681
|
order?: ("asc" | "desc")
|
|
12543
12682
|
|
|
12544
12683
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12545
|
-
[k: string]: unknown | undefined
|
|
12546
12684
|
}
|
|
12547
12685
|
|
|
12548
12686
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12563,18 +12701,17 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
12563
12701
|
|
|
12564
12702
|
groups?: (string | string[] | {
|
|
12565
12703
|
|
|
12566
|
-
newlinesBetween
|
|
12704
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12567
12705
|
})[]
|
|
12568
12706
|
}]
|
|
12569
|
-
// ----- perfectionist/sort-
|
|
12570
|
-
type
|
|
12707
|
+
// ----- perfectionist/sort-imports -----
|
|
12708
|
+
type PerfectionistSortImports = {
|
|
12571
12709
|
|
|
12572
12710
|
fallbackSort?: {
|
|
12573
12711
|
|
|
12574
12712
|
order?: ("asc" | "desc")
|
|
12575
12713
|
|
|
12576
12714
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12577
|
-
[k: string]: unknown | undefined
|
|
12578
12715
|
}
|
|
12579
12716
|
|
|
12580
12717
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12589,7 +12726,14 @@ type PerfectionistSortInterfaces = {
|
|
|
12589
12726
|
|
|
12590
12727
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12591
12728
|
customGroups?: ({
|
|
12592
|
-
|
|
12729
|
+
|
|
12730
|
+
value?: {
|
|
12731
|
+
[k: string]: (string | string[]) | undefined
|
|
12732
|
+
}
|
|
12733
|
+
|
|
12734
|
+
type?: {
|
|
12735
|
+
[k: string]: (string | string[]) | undefined
|
|
12736
|
+
}
|
|
12593
12737
|
} | ({
|
|
12594
12738
|
|
|
12595
12739
|
newlinesInside?: ("always" | "never")
|
|
@@ -12599,37 +12743,42 @@ type PerfectionistSortInterfaces = {
|
|
|
12599
12743
|
order?: ("asc" | "desc")
|
|
12600
12744
|
|
|
12601
12745
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12602
|
-
sortBy?: ("name" | "value")
|
|
12603
|
-
[k: string]: unknown | undefined
|
|
12604
12746
|
}
|
|
12605
12747
|
|
|
12606
|
-
groupName
|
|
12748
|
+
groupName: string
|
|
12607
12749
|
|
|
12608
12750
|
order?: ("asc" | "desc")
|
|
12609
12751
|
|
|
12610
12752
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12611
12753
|
anyOf?: {
|
|
12612
12754
|
|
|
12613
|
-
modifiers?: ("
|
|
12755
|
+
modifiers?: ("default" | "named" | "require" | "side-effect" | "ts-equals" | "type" | "value" | "wildcard")[]
|
|
12614
12756
|
|
|
12615
|
-
selector?: ("
|
|
12757
|
+
selector?: ("side-effect-style" | "tsconfig-path" | "side-effect" | "external" | "internal" | "builtin" | "sibling" | "subpath" | "import" | "parent" | "index" | "style" | "type")
|
|
12616
12758
|
|
|
12617
12759
|
elementValuePattern?: (({
|
|
12618
|
-
|
|
12760
|
+
|
|
12761
|
+
pattern: string
|
|
12762
|
+
|
|
12619
12763
|
flags?: string
|
|
12620
12764
|
} | string)[] | ({
|
|
12621
|
-
|
|
12765
|
+
|
|
12766
|
+
pattern: string
|
|
12767
|
+
|
|
12622
12768
|
flags?: string
|
|
12623
12769
|
} | string))
|
|
12624
12770
|
|
|
12625
12771
|
elementNamePattern?: (({
|
|
12626
|
-
|
|
12772
|
+
|
|
12773
|
+
pattern: string
|
|
12774
|
+
|
|
12627
12775
|
flags?: string
|
|
12628
12776
|
} | string)[] | ({
|
|
12629
|
-
|
|
12777
|
+
|
|
12778
|
+
pattern: string
|
|
12779
|
+
|
|
12630
12780
|
flags?: string
|
|
12631
12781
|
} | string))
|
|
12632
|
-
sortBy?: ("name" | "value")
|
|
12633
12782
|
}[]
|
|
12634
12783
|
} | {
|
|
12635
12784
|
|
|
@@ -12640,77 +12789,84 @@ type PerfectionistSortInterfaces = {
|
|
|
12640
12789
|
order?: ("asc" | "desc")
|
|
12641
12790
|
|
|
12642
12791
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12643
|
-
sortBy?: ("name" | "value")
|
|
12644
|
-
[k: string]: unknown | undefined
|
|
12645
12792
|
}
|
|
12646
12793
|
|
|
12647
|
-
groupName
|
|
12794
|
+
groupName: string
|
|
12648
12795
|
|
|
12649
12796
|
order?: ("asc" | "desc")
|
|
12650
12797
|
|
|
12651
12798
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12652
12799
|
|
|
12653
|
-
modifiers?: ("
|
|
12800
|
+
modifiers?: ("default" | "named" | "require" | "side-effect" | "ts-equals" | "type" | "value" | "wildcard")[]
|
|
12654
12801
|
|
|
12655
|
-
selector?: ("
|
|
12802
|
+
selector?: ("side-effect-style" | "tsconfig-path" | "side-effect" | "external" | "internal" | "builtin" | "sibling" | "subpath" | "import" | "parent" | "index" | "style" | "type")
|
|
12656
12803
|
|
|
12657
12804
|
elementValuePattern?: (({
|
|
12658
|
-
|
|
12805
|
+
|
|
12806
|
+
pattern: string
|
|
12807
|
+
|
|
12659
12808
|
flags?: string
|
|
12660
12809
|
} | string)[] | ({
|
|
12661
|
-
|
|
12810
|
+
|
|
12811
|
+
pattern: string
|
|
12812
|
+
|
|
12662
12813
|
flags?: string
|
|
12663
12814
|
} | string))
|
|
12664
12815
|
|
|
12665
12816
|
elementNamePattern?: (({
|
|
12666
|
-
|
|
12817
|
+
|
|
12818
|
+
pattern: string
|
|
12819
|
+
|
|
12667
12820
|
flags?: string
|
|
12668
12821
|
} | string)[] | ({
|
|
12669
|
-
|
|
12822
|
+
|
|
12823
|
+
pattern: string
|
|
12824
|
+
|
|
12670
12825
|
flags?: string
|
|
12671
12826
|
} | string))
|
|
12672
|
-
sortBy?: ("name" | "value")
|
|
12673
12827
|
})[])
|
|
12674
12828
|
|
|
12675
|
-
|
|
12676
|
-
|
|
12677
|
-
|
|
12678
|
-
|
|
12679
|
-
|
|
12680
|
-
|
|
12681
|
-
|
|
12682
|
-
pattern?: string
|
|
12683
|
-
flags?: string
|
|
12684
|
-
} | string))
|
|
12685
|
-
|
|
12686
|
-
declarationMatchesPattern?: (({
|
|
12687
|
-
pattern?: string
|
|
12688
|
-
flags?: string
|
|
12689
|
-
} | string)[] | ({
|
|
12690
|
-
pattern?: string
|
|
12691
|
-
flags?: string
|
|
12692
|
-
} | string))
|
|
12693
|
-
}
|
|
12829
|
+
maxLineLength?: number
|
|
12830
|
+
|
|
12831
|
+
sortSideEffects?: boolean
|
|
12832
|
+
|
|
12833
|
+
environment?: ("node" | "bun")
|
|
12834
|
+
|
|
12835
|
+
tsconfigRootDir?: string
|
|
12694
12836
|
|
|
12695
12837
|
partitionByComment?: (boolean | (({
|
|
12696
|
-
|
|
12838
|
+
|
|
12839
|
+
pattern: string
|
|
12840
|
+
|
|
12697
12841
|
flags?: string
|
|
12698
12842
|
} | string)[] | ({
|
|
12699
|
-
|
|
12843
|
+
|
|
12844
|
+
pattern: string
|
|
12845
|
+
|
|
12700
12846
|
flags?: string
|
|
12701
12847
|
} | string)) | {
|
|
12848
|
+
|
|
12702
12849
|
block?: (boolean | (({
|
|
12703
|
-
|
|
12850
|
+
|
|
12851
|
+
pattern: string
|
|
12852
|
+
|
|
12704
12853
|
flags?: string
|
|
12705
12854
|
} | string)[] | ({
|
|
12706
|
-
|
|
12855
|
+
|
|
12856
|
+
pattern: string
|
|
12857
|
+
|
|
12707
12858
|
flags?: string
|
|
12708
12859
|
} | string)))
|
|
12860
|
+
|
|
12709
12861
|
line?: (boolean | (({
|
|
12710
|
-
|
|
12862
|
+
|
|
12863
|
+
pattern: string
|
|
12864
|
+
|
|
12711
12865
|
flags?: string
|
|
12712
12866
|
} | string)[] | ({
|
|
12713
|
-
|
|
12867
|
+
|
|
12868
|
+
pattern: string
|
|
12869
|
+
|
|
12714
12870
|
flags?: string
|
|
12715
12871
|
} | string)))
|
|
12716
12872
|
})
|
|
@@ -12719,29 +12875,32 @@ type PerfectionistSortInterfaces = {
|
|
|
12719
12875
|
|
|
12720
12876
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12721
12877
|
|
|
12722
|
-
|
|
12723
|
-
|
|
12878
|
+
internalPattern?: (({
|
|
12879
|
+
|
|
12880
|
+
pattern: string
|
|
12881
|
+
|
|
12724
12882
|
flags?: string
|
|
12725
12883
|
} | string)[] | ({
|
|
12726
|
-
|
|
12884
|
+
|
|
12885
|
+
pattern: string
|
|
12886
|
+
|
|
12727
12887
|
flags?: string
|
|
12728
12888
|
} | string))
|
|
12729
|
-
sortBy?: ("name" | "value")
|
|
12730
12889
|
|
|
12731
12890
|
groups?: (string | string[] | {
|
|
12732
12891
|
|
|
12733
|
-
newlinesBetween
|
|
12892
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12734
12893
|
})[]
|
|
12735
12894
|
}[]
|
|
12736
|
-
// ----- perfectionist/sort-
|
|
12737
|
-
type
|
|
12895
|
+
// ----- perfectionist/sort-interfaces -----
|
|
12896
|
+
type PerfectionistSortInterfaces = {
|
|
12738
12897
|
|
|
12739
12898
|
fallbackSort?: {
|
|
12740
12899
|
|
|
12741
12900
|
order?: ("asc" | "desc")
|
|
12742
12901
|
|
|
12743
12902
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12744
|
-
|
|
12903
|
+
sortBy?: ("name" | "value")
|
|
12745
12904
|
}
|
|
12746
12905
|
|
|
12747
12906
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12755,48 +12914,332 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
12755
12914
|
order?: ("asc" | "desc")
|
|
12756
12915
|
|
|
12757
12916
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12758
|
-
|
|
12759
|
-
|
|
12760
|
-
|
|
12761
|
-
flags?: string
|
|
12762
|
-
} | string)[] | ({
|
|
12763
|
-
pattern?: string
|
|
12764
|
-
flags?: string
|
|
12765
|
-
} | string)) | {
|
|
12766
|
-
block?: (boolean | (({
|
|
12767
|
-
pattern?: string
|
|
12768
|
-
flags?: string
|
|
12769
|
-
} | string)[] | ({
|
|
12770
|
-
pattern?: string
|
|
12771
|
-
flags?: string
|
|
12772
|
-
} | string)))
|
|
12773
|
-
line?: (boolean | (({
|
|
12774
|
-
pattern?: string
|
|
12775
|
-
flags?: string
|
|
12776
|
-
} | string)[] | ({
|
|
12777
|
-
pattern?: string
|
|
12778
|
-
flags?: string
|
|
12779
|
-
} | string)))
|
|
12780
|
-
})
|
|
12781
|
-
|
|
12782
|
-
partitionByNewLine?: boolean
|
|
12783
|
-
|
|
12784
|
-
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12785
|
-
|
|
12786
|
-
groups?: (string | string[] | {
|
|
12917
|
+
customGroups?: ({
|
|
12918
|
+
[k: string]: (string | string[]) | undefined
|
|
12919
|
+
} | ({
|
|
12787
12920
|
|
|
12788
|
-
|
|
12789
|
-
|
|
12790
|
-
|
|
12791
|
-
|
|
12792
|
-
|
|
12793
|
-
|
|
12794
|
-
|
|
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
|
+
|
|
13010
|
+
flags?: string
|
|
13011
|
+
} | string))
|
|
13012
|
+
sortBy?: ("name" | "value")
|
|
13013
|
+
})[])
|
|
13014
|
+
|
|
13015
|
+
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
13016
|
+
|
|
13017
|
+
useConfigurationIf?: {
|
|
13018
|
+
|
|
13019
|
+
allNamesMatchPattern?: (({
|
|
13020
|
+
|
|
13021
|
+
pattern: string
|
|
13022
|
+
|
|
13023
|
+
flags?: string
|
|
13024
|
+
} | string)[] | ({
|
|
13025
|
+
|
|
13026
|
+
pattern: string
|
|
13027
|
+
|
|
13028
|
+
flags?: string
|
|
13029
|
+
} | string))
|
|
13030
|
+
|
|
13031
|
+
declarationMatchesPattern?: (({
|
|
13032
|
+
|
|
13033
|
+
pattern: string
|
|
13034
|
+
|
|
13035
|
+
flags?: string
|
|
13036
|
+
} | string)[] | ({
|
|
13037
|
+
|
|
13038
|
+
pattern: string
|
|
13039
|
+
|
|
13040
|
+
flags?: string
|
|
13041
|
+
} | string))
|
|
13042
|
+
}
|
|
13043
|
+
|
|
13044
|
+
partitionByComment?: (boolean | (({
|
|
13045
|
+
|
|
13046
|
+
pattern: string
|
|
13047
|
+
|
|
13048
|
+
flags?: string
|
|
13049
|
+
} | string)[] | ({
|
|
13050
|
+
|
|
13051
|
+
pattern: string
|
|
13052
|
+
|
|
13053
|
+
flags?: string
|
|
13054
|
+
} | string)) | {
|
|
13055
|
+
|
|
13056
|
+
block?: (boolean | (({
|
|
13057
|
+
|
|
13058
|
+
pattern: string
|
|
13059
|
+
|
|
13060
|
+
flags?: string
|
|
13061
|
+
} | string)[] | ({
|
|
13062
|
+
|
|
13063
|
+
pattern: string
|
|
13064
|
+
|
|
13065
|
+
flags?: string
|
|
13066
|
+
} | string)))
|
|
13067
|
+
|
|
13068
|
+
line?: (boolean | (({
|
|
13069
|
+
|
|
13070
|
+
pattern: string
|
|
13071
|
+
|
|
13072
|
+
flags?: string
|
|
13073
|
+
} | string)[] | ({
|
|
13074
|
+
|
|
13075
|
+
pattern: string
|
|
13076
|
+
|
|
13077
|
+
flags?: string
|
|
13078
|
+
} | string)))
|
|
13079
|
+
})
|
|
13080
|
+
|
|
13081
|
+
partitionByNewLine?: boolean
|
|
13082
|
+
|
|
13083
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
13084
|
+
|
|
13085
|
+
ignorePattern?: (({
|
|
13086
|
+
|
|
13087
|
+
pattern: string
|
|
13088
|
+
|
|
13089
|
+
flags?: string
|
|
13090
|
+
} | string)[] | ({
|
|
13091
|
+
|
|
13092
|
+
pattern: string
|
|
13093
|
+
|
|
13094
|
+
flags?: string
|
|
13095
|
+
} | string))
|
|
13096
|
+
sortBy?: ("name" | "value")
|
|
13097
|
+
|
|
13098
|
+
groups?: (string | string[] | {
|
|
13099
|
+
|
|
13100
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13101
|
+
})[]
|
|
13102
|
+
}[]
|
|
13103
|
+
// ----- perfectionist/sort-intersection-types -----
|
|
13104
|
+
type PerfectionistSortIntersectionTypes = {
|
|
13105
|
+
|
|
13106
|
+
fallbackSort?: {
|
|
13107
|
+
|
|
13108
|
+
order?: ("asc" | "desc")
|
|
13109
|
+
|
|
13110
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13111
|
+
}
|
|
13112
|
+
|
|
13113
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
13114
|
+
|
|
13115
|
+
ignoreCase?: boolean
|
|
13116
|
+
|
|
13117
|
+
alphabet?: string
|
|
13118
|
+
|
|
13119
|
+
locales?: (string | string[])
|
|
13120
|
+
|
|
13121
|
+
order?: ("asc" | "desc")
|
|
13122
|
+
|
|
13123
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
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
|
+
|
|
13189
|
+
partitionByComment?: (boolean | (({
|
|
13190
|
+
|
|
13191
|
+
pattern: string
|
|
13192
|
+
|
|
13193
|
+
flags?: string
|
|
13194
|
+
} | string)[] | ({
|
|
13195
|
+
|
|
13196
|
+
pattern: string
|
|
13197
|
+
|
|
13198
|
+
flags?: string
|
|
13199
|
+
} | string)) | {
|
|
13200
|
+
|
|
13201
|
+
block?: (boolean | (({
|
|
13202
|
+
|
|
13203
|
+
pattern: string
|
|
13204
|
+
|
|
13205
|
+
flags?: string
|
|
13206
|
+
} | string)[] | ({
|
|
13207
|
+
|
|
13208
|
+
pattern: string
|
|
13209
|
+
|
|
13210
|
+
flags?: string
|
|
13211
|
+
} | string)))
|
|
13212
|
+
|
|
13213
|
+
line?: (boolean | (({
|
|
13214
|
+
|
|
13215
|
+
pattern: string
|
|
13216
|
+
|
|
13217
|
+
flags?: string
|
|
13218
|
+
} | string)[] | ({
|
|
13219
|
+
|
|
13220
|
+
pattern: string
|
|
13221
|
+
|
|
13222
|
+
flags?: string
|
|
13223
|
+
} | string)))
|
|
13224
|
+
})
|
|
13225
|
+
|
|
13226
|
+
partitionByNewLine?: boolean
|
|
13227
|
+
|
|
13228
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
13229
|
+
|
|
13230
|
+
groups?: (string | string[] | {
|
|
13231
|
+
|
|
13232
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13233
|
+
})[]
|
|
13234
|
+
}[]
|
|
13235
|
+
// ----- perfectionist/sort-jsx-props -----
|
|
13236
|
+
type PerfectionistSortJsxProps = {
|
|
13237
|
+
|
|
13238
|
+
fallbackSort?: {
|
|
12795
13239
|
|
|
12796
13240
|
order?: ("asc" | "desc")
|
|
12797
13241
|
|
|
12798
13242
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12799
|
-
[k: string]: unknown | undefined
|
|
12800
13243
|
}
|
|
12801
13244
|
|
|
12802
13245
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12821,10 +13264,9 @@ type PerfectionistSortJsxProps = {
|
|
|
12821
13264
|
order?: ("asc" | "desc")
|
|
12822
13265
|
|
|
12823
13266
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12824
|
-
[k: string]: unknown | undefined
|
|
12825
13267
|
}
|
|
12826
13268
|
|
|
12827
|
-
groupName
|
|
13269
|
+
groupName: string
|
|
12828
13270
|
|
|
12829
13271
|
order?: ("asc" | "desc")
|
|
12830
13272
|
|
|
@@ -12836,18 +13278,26 @@ type PerfectionistSortJsxProps = {
|
|
|
12836
13278
|
selector?: ("multiline" | "prop" | "shorthand")
|
|
12837
13279
|
|
|
12838
13280
|
elementValuePattern?: (({
|
|
12839
|
-
|
|
13281
|
+
|
|
13282
|
+
pattern: string
|
|
13283
|
+
|
|
12840
13284
|
flags?: string
|
|
12841
13285
|
} | string)[] | ({
|
|
12842
|
-
|
|
13286
|
+
|
|
13287
|
+
pattern: string
|
|
13288
|
+
|
|
12843
13289
|
flags?: string
|
|
12844
13290
|
} | string))
|
|
12845
13291
|
|
|
12846
13292
|
elementNamePattern?: (({
|
|
12847
|
-
|
|
13293
|
+
|
|
13294
|
+
pattern: string
|
|
13295
|
+
|
|
12848
13296
|
flags?: string
|
|
12849
13297
|
} | string)[] | ({
|
|
12850
|
-
|
|
13298
|
+
|
|
13299
|
+
pattern: string
|
|
13300
|
+
|
|
12851
13301
|
flags?: string
|
|
12852
13302
|
} | string))
|
|
12853
13303
|
}[]
|
|
@@ -12860,10 +13310,9 @@ type PerfectionistSortJsxProps = {
|
|
|
12860
13310
|
order?: ("asc" | "desc")
|
|
12861
13311
|
|
|
12862
13312
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12863
|
-
[k: string]: unknown | undefined
|
|
12864
13313
|
}
|
|
12865
13314
|
|
|
12866
|
-
groupName
|
|
13315
|
+
groupName: string
|
|
12867
13316
|
|
|
12868
13317
|
order?: ("asc" | "desc")
|
|
12869
13318
|
|
|
@@ -12874,36 +13323,53 @@ type PerfectionistSortJsxProps = {
|
|
|
12874
13323
|
selector?: ("multiline" | "prop" | "shorthand")
|
|
12875
13324
|
|
|
12876
13325
|
elementValuePattern?: (({
|
|
12877
|
-
|
|
13326
|
+
|
|
13327
|
+
pattern: string
|
|
13328
|
+
|
|
12878
13329
|
flags?: string
|
|
12879
13330
|
} | string)[] | ({
|
|
12880
|
-
|
|
13331
|
+
|
|
13332
|
+
pattern: string
|
|
13333
|
+
|
|
12881
13334
|
flags?: string
|
|
12882
13335
|
} | string))
|
|
12883
13336
|
|
|
12884
13337
|
elementNamePattern?: (({
|
|
12885
|
-
|
|
13338
|
+
|
|
13339
|
+
pattern: string
|
|
13340
|
+
|
|
12886
13341
|
flags?: string
|
|
12887
13342
|
} | string)[] | ({
|
|
12888
|
-
|
|
13343
|
+
|
|
13344
|
+
pattern: string
|
|
13345
|
+
|
|
12889
13346
|
flags?: string
|
|
12890
13347
|
} | string))
|
|
12891
13348
|
})[])
|
|
13349
|
+
|
|
12892
13350
|
useConfigurationIf?: {
|
|
12893
13351
|
|
|
12894
13352
|
allNamesMatchPattern?: (({
|
|
12895
|
-
|
|
13353
|
+
|
|
13354
|
+
pattern: string
|
|
13355
|
+
|
|
12896
13356
|
flags?: string
|
|
12897
13357
|
} | string)[] | ({
|
|
12898
|
-
|
|
13358
|
+
|
|
13359
|
+
pattern: string
|
|
13360
|
+
|
|
12899
13361
|
flags?: string
|
|
12900
13362
|
} | string))
|
|
12901
13363
|
|
|
12902
13364
|
tagMatchesPattern?: (({
|
|
12903
|
-
|
|
13365
|
+
|
|
13366
|
+
pattern: string
|
|
13367
|
+
|
|
12904
13368
|
flags?: string
|
|
12905
13369
|
} | string)[] | ({
|
|
12906
|
-
|
|
13370
|
+
|
|
13371
|
+
pattern: string
|
|
13372
|
+
|
|
12907
13373
|
flags?: string
|
|
12908
13374
|
} | string))
|
|
12909
13375
|
}
|
|
@@ -12913,16 +13379,20 @@ type PerfectionistSortJsxProps = {
|
|
|
12913
13379
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12914
13380
|
|
|
12915
13381
|
ignorePattern?: (({
|
|
12916
|
-
|
|
13382
|
+
|
|
13383
|
+
pattern: string
|
|
13384
|
+
|
|
12917
13385
|
flags?: string
|
|
12918
13386
|
} | string)[] | ({
|
|
12919
|
-
|
|
13387
|
+
|
|
13388
|
+
pattern: string
|
|
13389
|
+
|
|
12920
13390
|
flags?: string
|
|
12921
13391
|
} | string))
|
|
12922
13392
|
|
|
12923
13393
|
groups?: (string | string[] | {
|
|
12924
13394
|
|
|
12925
|
-
newlinesBetween
|
|
13395
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12926
13396
|
})[]
|
|
12927
13397
|
}[]
|
|
12928
13398
|
// ----- perfectionist/sort-maps -----
|
|
@@ -12933,7 +13403,6 @@ type PerfectionistSortMaps = {
|
|
|
12933
13403
|
order?: ("asc" | "desc")
|
|
12934
13404
|
|
|
12935
13405
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12936
|
-
[k: string]: unknown | undefined
|
|
12937
13406
|
}
|
|
12938
13407
|
|
|
12939
13408
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12957,10 +13426,9 @@ type PerfectionistSortMaps = {
|
|
|
12957
13426
|
order?: ("asc" | "desc")
|
|
12958
13427
|
|
|
12959
13428
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12960
|
-
[k: string]: unknown | undefined
|
|
12961
13429
|
}
|
|
12962
13430
|
|
|
12963
|
-
groupName
|
|
13431
|
+
groupName: string
|
|
12964
13432
|
|
|
12965
13433
|
order?: ("asc" | "desc")
|
|
12966
13434
|
|
|
@@ -12968,10 +13436,14 @@ type PerfectionistSortMaps = {
|
|
|
12968
13436
|
anyOf?: {
|
|
12969
13437
|
|
|
12970
13438
|
elementNamePattern?: (({
|
|
12971
|
-
|
|
13439
|
+
|
|
13440
|
+
pattern: string
|
|
13441
|
+
|
|
12972
13442
|
flags?: string
|
|
12973
13443
|
} | string)[] | ({
|
|
12974
|
-
|
|
13444
|
+
|
|
13445
|
+
pattern: string
|
|
13446
|
+
|
|
12975
13447
|
flags?: string
|
|
12976
13448
|
} | string))
|
|
12977
13449
|
}[]
|
|
@@ -12984,53 +13456,75 @@ type PerfectionistSortMaps = {
|
|
|
12984
13456
|
order?: ("asc" | "desc")
|
|
12985
13457
|
|
|
12986
13458
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12987
|
-
[k: string]: unknown | undefined
|
|
12988
13459
|
}
|
|
12989
13460
|
|
|
12990
|
-
groupName
|
|
13461
|
+
groupName: string
|
|
12991
13462
|
|
|
12992
13463
|
order?: ("asc" | "desc")
|
|
12993
13464
|
|
|
12994
13465
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12995
13466
|
|
|
12996
13467
|
elementNamePattern?: (({
|
|
12997
|
-
|
|
13468
|
+
|
|
13469
|
+
pattern: string
|
|
13470
|
+
|
|
12998
13471
|
flags?: string
|
|
12999
13472
|
} | string)[] | ({
|
|
13000
|
-
|
|
13473
|
+
|
|
13474
|
+
pattern: string
|
|
13475
|
+
|
|
13001
13476
|
flags?: string
|
|
13002
13477
|
} | string))
|
|
13003
13478
|
})[]
|
|
13479
|
+
|
|
13004
13480
|
useConfigurationIf?: {
|
|
13005
13481
|
|
|
13006
13482
|
allNamesMatchPattern?: (({
|
|
13007
|
-
|
|
13483
|
+
|
|
13484
|
+
pattern: string
|
|
13485
|
+
|
|
13008
13486
|
flags?: string
|
|
13009
13487
|
} | string)[] | ({
|
|
13010
|
-
|
|
13488
|
+
|
|
13489
|
+
pattern: string
|
|
13490
|
+
|
|
13011
13491
|
flags?: string
|
|
13012
13492
|
} | string))
|
|
13013
13493
|
}
|
|
13014
13494
|
|
|
13015
13495
|
partitionByComment?: (boolean | (({
|
|
13016
|
-
|
|
13496
|
+
|
|
13497
|
+
pattern: string
|
|
13498
|
+
|
|
13017
13499
|
flags?: string
|
|
13018
13500
|
} | string)[] | ({
|
|
13019
|
-
|
|
13501
|
+
|
|
13502
|
+
pattern: string
|
|
13503
|
+
|
|
13020
13504
|
flags?: string
|
|
13021
13505
|
} | string)) | {
|
|
13506
|
+
|
|
13022
13507
|
block?: (boolean | (({
|
|
13023
|
-
|
|
13508
|
+
|
|
13509
|
+
pattern: string
|
|
13510
|
+
|
|
13024
13511
|
flags?: string
|
|
13025
13512
|
} | string)[] | ({
|
|
13026
|
-
|
|
13513
|
+
|
|
13514
|
+
pattern: string
|
|
13515
|
+
|
|
13027
13516
|
flags?: string
|
|
13028
13517
|
} | string)))
|
|
13518
|
+
|
|
13029
13519
|
line?: (boolean | (({
|
|
13030
|
-
|
|
13520
|
+
|
|
13521
|
+
pattern: string
|
|
13522
|
+
|
|
13031
13523
|
flags?: string
|
|
13032
13524
|
} | string)[] | ({
|
|
13033
|
-
|
|
13525
|
+
|
|
13526
|
+
pattern: string
|
|
13527
|
+
|
|
13034
13528
|
flags?: string
|
|
13035
13529
|
} | string)))
|
|
13036
13530
|
})
|
|
@@ -13041,7 +13535,7 @@ type PerfectionistSortMaps = {
|
|
|
13041
13535
|
|
|
13042
13536
|
groups?: (string | string[] | {
|
|
13043
13537
|
|
|
13044
|
-
newlinesBetween
|
|
13538
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13045
13539
|
})[]
|
|
13046
13540
|
}[]
|
|
13047
13541
|
// ----- perfectionist/sort-modules -----
|
|
@@ -13052,7 +13546,6 @@ type PerfectionistSortModules = []|[{
|
|
|
13052
13546
|
order?: ("asc" | "desc")
|
|
13053
13547
|
|
|
13054
13548
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13055
|
-
[k: string]: unknown | undefined
|
|
13056
13549
|
}
|
|
13057
13550
|
|
|
13058
13551
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13076,10 +13569,9 @@ type PerfectionistSortModules = []|[{
|
|
|
13076
13569
|
order?: ("asc" | "desc")
|
|
13077
13570
|
|
|
13078
13571
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13079
|
-
[k: string]: unknown | undefined
|
|
13080
13572
|
}
|
|
13081
13573
|
|
|
13082
|
-
groupName
|
|
13574
|
+
groupName: string
|
|
13083
13575
|
|
|
13084
13576
|
order?: ("asc" | "desc")
|
|
13085
13577
|
|
|
@@ -13091,18 +13583,26 @@ type PerfectionistSortModules = []|[{
|
|
|
13091
13583
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
13092
13584
|
|
|
13093
13585
|
decoratorNamePattern?: (({
|
|
13094
|
-
|
|
13586
|
+
|
|
13587
|
+
pattern: string
|
|
13588
|
+
|
|
13095
13589
|
flags?: string
|
|
13096
13590
|
} | string)[] | ({
|
|
13097
|
-
|
|
13591
|
+
|
|
13592
|
+
pattern: string
|
|
13593
|
+
|
|
13098
13594
|
flags?: string
|
|
13099
13595
|
} | string))
|
|
13100
13596
|
|
|
13101
13597
|
elementNamePattern?: (({
|
|
13102
|
-
|
|
13598
|
+
|
|
13599
|
+
pattern: string
|
|
13600
|
+
|
|
13103
13601
|
flags?: string
|
|
13104
13602
|
} | string)[] | ({
|
|
13105
|
-
|
|
13603
|
+
|
|
13604
|
+
pattern: string
|
|
13605
|
+
|
|
13106
13606
|
flags?: string
|
|
13107
13607
|
} | string))
|
|
13108
13608
|
}[]
|
|
@@ -13115,10 +13615,9 @@ type PerfectionistSortModules = []|[{
|
|
|
13115
13615
|
order?: ("asc" | "desc")
|
|
13116
13616
|
|
|
13117
13617
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13118
|
-
[k: string]: unknown | undefined
|
|
13119
13618
|
}
|
|
13120
13619
|
|
|
13121
|
-
groupName
|
|
13620
|
+
groupName: string
|
|
13122
13621
|
|
|
13123
13622
|
order?: ("asc" | "desc")
|
|
13124
13623
|
|
|
@@ -13129,41 +13628,63 @@ type PerfectionistSortModules = []|[{
|
|
|
13129
13628
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
13130
13629
|
|
|
13131
13630
|
decoratorNamePattern?: (({
|
|
13132
|
-
|
|
13631
|
+
|
|
13632
|
+
pattern: string
|
|
13633
|
+
|
|
13133
13634
|
flags?: string
|
|
13134
13635
|
} | string)[] | ({
|
|
13135
|
-
|
|
13636
|
+
|
|
13637
|
+
pattern: string
|
|
13638
|
+
|
|
13136
13639
|
flags?: string
|
|
13137
13640
|
} | string))
|
|
13138
13641
|
|
|
13139
13642
|
elementNamePattern?: (({
|
|
13140
|
-
|
|
13643
|
+
|
|
13644
|
+
pattern: string
|
|
13645
|
+
|
|
13141
13646
|
flags?: string
|
|
13142
13647
|
} | string)[] | ({
|
|
13143
|
-
|
|
13648
|
+
|
|
13649
|
+
pattern: string
|
|
13650
|
+
|
|
13144
13651
|
flags?: string
|
|
13145
13652
|
} | string))
|
|
13146
13653
|
})[]
|
|
13147
13654
|
|
|
13148
13655
|
partitionByComment?: (boolean | (({
|
|
13149
|
-
|
|
13656
|
+
|
|
13657
|
+
pattern: string
|
|
13658
|
+
|
|
13150
13659
|
flags?: string
|
|
13151
13660
|
} | string)[] | ({
|
|
13152
|
-
|
|
13661
|
+
|
|
13662
|
+
pattern: string
|
|
13663
|
+
|
|
13153
13664
|
flags?: string
|
|
13154
13665
|
} | string)) | {
|
|
13666
|
+
|
|
13155
13667
|
block?: (boolean | (({
|
|
13156
|
-
|
|
13668
|
+
|
|
13669
|
+
pattern: string
|
|
13670
|
+
|
|
13157
13671
|
flags?: string
|
|
13158
13672
|
} | string)[] | ({
|
|
13159
|
-
|
|
13673
|
+
|
|
13674
|
+
pattern: string
|
|
13675
|
+
|
|
13160
13676
|
flags?: string
|
|
13161
13677
|
} | string)))
|
|
13678
|
+
|
|
13162
13679
|
line?: (boolean | (({
|
|
13163
|
-
|
|
13680
|
+
|
|
13681
|
+
pattern: string
|
|
13682
|
+
|
|
13164
13683
|
flags?: string
|
|
13165
13684
|
} | string)[] | ({
|
|
13166
|
-
|
|
13685
|
+
|
|
13686
|
+
pattern: string
|
|
13687
|
+
|
|
13167
13688
|
flags?: string
|
|
13168
13689
|
} | string)))
|
|
13169
13690
|
})
|
|
@@ -13174,7 +13695,7 @@ type PerfectionistSortModules = []|[{
|
|
|
13174
13695
|
|
|
13175
13696
|
groups?: (string | string[] | {
|
|
13176
13697
|
|
|
13177
|
-
newlinesBetween
|
|
13698
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13178
13699
|
})[]
|
|
13179
13700
|
}]
|
|
13180
13701
|
// ----- perfectionist/sort-named-exports -----
|
|
@@ -13185,7 +13706,6 @@ type PerfectionistSortNamedExports = {
|
|
|
13185
13706
|
order?: ("asc" | "desc")
|
|
13186
13707
|
|
|
13187
13708
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13188
|
-
[k: string]: unknown | undefined
|
|
13189
13709
|
}
|
|
13190
13710
|
|
|
13191
13711
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13213,10 +13733,9 @@ type PerfectionistSortNamedExports = {
|
|
|
13213
13733
|
order?: ("asc" | "desc")
|
|
13214
13734
|
|
|
13215
13735
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13216
|
-
[k: string]: unknown | undefined
|
|
13217
13736
|
}
|
|
13218
13737
|
|
|
13219
|
-
groupName
|
|
13738
|
+
groupName: string
|
|
13220
13739
|
|
|
13221
13740
|
order?: ("asc" | "desc")
|
|
13222
13741
|
|
|
@@ -13228,10 +13747,14 @@ type PerfectionistSortNamedExports = {
|
|
|
13228
13747
|
selector?: "export"
|
|
13229
13748
|
|
|
13230
13749
|
elementNamePattern?: (({
|
|
13231
|
-
|
|
13750
|
+
|
|
13751
|
+
pattern: string
|
|
13752
|
+
|
|
13232
13753
|
flags?: string
|
|
13233
13754
|
} | string)[] | ({
|
|
13234
|
-
|
|
13755
|
+
|
|
13756
|
+
pattern: string
|
|
13757
|
+
|
|
13235
13758
|
flags?: string
|
|
13236
13759
|
} | string))
|
|
13237
13760
|
}[]
|
|
@@ -13244,10 +13767,9 @@ type PerfectionistSortNamedExports = {
|
|
|
13244
13767
|
order?: ("asc" | "desc")
|
|
13245
13768
|
|
|
13246
13769
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13247
|
-
[k: string]: unknown | undefined
|
|
13248
13770
|
}
|
|
13249
13771
|
|
|
13250
|
-
groupName
|
|
13772
|
+
groupName: string
|
|
13251
13773
|
|
|
13252
13774
|
order?: ("asc" | "desc")
|
|
13253
13775
|
|
|
@@ -13258,33 +13780,51 @@ type PerfectionistSortNamedExports = {
|
|
|
13258
13780
|
selector?: "export"
|
|
13259
13781
|
|
|
13260
13782
|
elementNamePattern?: (({
|
|
13261
|
-
|
|
13783
|
+
|
|
13784
|
+
pattern: string
|
|
13785
|
+
|
|
13262
13786
|
flags?: string
|
|
13263
13787
|
} | string)[] | ({
|
|
13264
|
-
|
|
13788
|
+
|
|
13789
|
+
pattern: string
|
|
13790
|
+
|
|
13265
13791
|
flags?: string
|
|
13266
13792
|
} | string))
|
|
13267
13793
|
})[]
|
|
13268
13794
|
|
|
13269
13795
|
partitionByComment?: (boolean | (({
|
|
13270
|
-
|
|
13796
|
+
|
|
13797
|
+
pattern: string
|
|
13798
|
+
|
|
13271
13799
|
flags?: string
|
|
13272
13800
|
} | string)[] | ({
|
|
13273
|
-
|
|
13801
|
+
|
|
13802
|
+
pattern: string
|
|
13803
|
+
|
|
13274
13804
|
flags?: string
|
|
13275
13805
|
} | string)) | {
|
|
13806
|
+
|
|
13276
13807
|
block?: (boolean | (({
|
|
13277
|
-
|
|
13808
|
+
|
|
13809
|
+
pattern: string
|
|
13810
|
+
|
|
13278
13811
|
flags?: string
|
|
13279
13812
|
} | string)[] | ({
|
|
13280
|
-
|
|
13813
|
+
|
|
13814
|
+
pattern: string
|
|
13815
|
+
|
|
13281
13816
|
flags?: string
|
|
13282
13817
|
} | string)))
|
|
13818
|
+
|
|
13283
13819
|
line?: (boolean | (({
|
|
13284
|
-
|
|
13820
|
+
|
|
13821
|
+
pattern: string
|
|
13822
|
+
|
|
13285
13823
|
flags?: string
|
|
13286
13824
|
} | string)[] | ({
|
|
13287
|
-
|
|
13825
|
+
|
|
13826
|
+
pattern: string
|
|
13827
|
+
|
|
13288
13828
|
flags?: string
|
|
13289
13829
|
} | string)))
|
|
13290
13830
|
})
|
|
@@ -13295,7 +13835,7 @@ type PerfectionistSortNamedExports = {
|
|
|
13295
13835
|
|
|
13296
13836
|
groups?: (string | string[] | {
|
|
13297
13837
|
|
|
13298
|
-
newlinesBetween
|
|
13838
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13299
13839
|
})[]
|
|
13300
13840
|
}[]
|
|
13301
13841
|
// ----- perfectionist/sort-named-imports -----
|
|
@@ -13306,7 +13846,6 @@ type PerfectionistSortNamedImports = {
|
|
|
13306
13846
|
order?: ("asc" | "desc")
|
|
13307
13847
|
|
|
13308
13848
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13309
|
-
[k: string]: unknown | undefined
|
|
13310
13849
|
}
|
|
13311
13850
|
|
|
13312
13851
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13334,10 +13873,9 @@ type PerfectionistSortNamedImports = {
|
|
|
13334
13873
|
order?: ("asc" | "desc")
|
|
13335
13874
|
|
|
13336
13875
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13337
|
-
[k: string]: unknown | undefined
|
|
13338
13876
|
}
|
|
13339
13877
|
|
|
13340
|
-
groupName
|
|
13878
|
+
groupName: string
|
|
13341
13879
|
|
|
13342
13880
|
order?: ("asc" | "desc")
|
|
13343
13881
|
|
|
@@ -13349,10 +13887,14 @@ type PerfectionistSortNamedImports = {
|
|
|
13349
13887
|
selector?: "import"
|
|
13350
13888
|
|
|
13351
13889
|
elementNamePattern?: (({
|
|
13352
|
-
|
|
13890
|
+
|
|
13891
|
+
pattern: string
|
|
13892
|
+
|
|
13353
13893
|
flags?: string
|
|
13354
13894
|
} | string)[] | ({
|
|
13355
|
-
|
|
13895
|
+
|
|
13896
|
+
pattern: string
|
|
13897
|
+
|
|
13356
13898
|
flags?: string
|
|
13357
13899
|
} | string))
|
|
13358
13900
|
}[]
|
|
@@ -13365,10 +13907,9 @@ type PerfectionistSortNamedImports = {
|
|
|
13365
13907
|
order?: ("asc" | "desc")
|
|
13366
13908
|
|
|
13367
13909
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13368
|
-
[k: string]: unknown | undefined
|
|
13369
13910
|
}
|
|
13370
13911
|
|
|
13371
|
-
groupName
|
|
13912
|
+
groupName: string
|
|
13372
13913
|
|
|
13373
13914
|
order?: ("asc" | "desc")
|
|
13374
13915
|
|
|
@@ -13379,33 +13920,51 @@ type PerfectionistSortNamedImports = {
|
|
|
13379
13920
|
selector?: "import"
|
|
13380
13921
|
|
|
13381
13922
|
elementNamePattern?: (({
|
|
13382
|
-
|
|
13923
|
+
|
|
13924
|
+
pattern: string
|
|
13925
|
+
|
|
13383
13926
|
flags?: string
|
|
13384
13927
|
} | string)[] | ({
|
|
13385
|
-
|
|
13928
|
+
|
|
13929
|
+
pattern: string
|
|
13930
|
+
|
|
13386
13931
|
flags?: string
|
|
13387
13932
|
} | string))
|
|
13388
13933
|
})[]
|
|
13389
13934
|
|
|
13390
13935
|
partitionByComment?: (boolean | (({
|
|
13391
|
-
|
|
13936
|
+
|
|
13937
|
+
pattern: string
|
|
13938
|
+
|
|
13392
13939
|
flags?: string
|
|
13393
13940
|
} | string)[] | ({
|
|
13394
|
-
|
|
13941
|
+
|
|
13942
|
+
pattern: string
|
|
13943
|
+
|
|
13395
13944
|
flags?: string
|
|
13396
13945
|
} | string)) | {
|
|
13946
|
+
|
|
13397
13947
|
block?: (boolean | (({
|
|
13398
|
-
|
|
13948
|
+
|
|
13949
|
+
pattern: string
|
|
13950
|
+
|
|
13399
13951
|
flags?: string
|
|
13400
13952
|
} | string)[] | ({
|
|
13401
|
-
|
|
13953
|
+
|
|
13954
|
+
pattern: string
|
|
13955
|
+
|
|
13402
13956
|
flags?: string
|
|
13403
13957
|
} | string)))
|
|
13958
|
+
|
|
13404
13959
|
line?: (boolean | (({
|
|
13405
|
-
|
|
13960
|
+
|
|
13961
|
+
pattern: string
|
|
13962
|
+
|
|
13406
13963
|
flags?: string
|
|
13407
13964
|
} | string)[] | ({
|
|
13408
|
-
|
|
13965
|
+
|
|
13966
|
+
pattern: string
|
|
13967
|
+
|
|
13409
13968
|
flags?: string
|
|
13410
13969
|
} | string)))
|
|
13411
13970
|
})
|
|
@@ -13416,7 +13975,7 @@ type PerfectionistSortNamedImports = {
|
|
|
13416
13975
|
|
|
13417
13976
|
groups?: (string | string[] | {
|
|
13418
13977
|
|
|
13419
|
-
newlinesBetween
|
|
13978
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13420
13979
|
})[]
|
|
13421
13980
|
}[]
|
|
13422
13981
|
// ----- perfectionist/sort-object-types -----
|
|
@@ -13427,7 +13986,7 @@ type PerfectionistSortObjectTypes = {
|
|
|
13427
13986
|
order?: ("asc" | "desc")
|
|
13428
13987
|
|
|
13429
13988
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13430
|
-
|
|
13989
|
+
sortBy?: ("name" | "value")
|
|
13431
13990
|
}
|
|
13432
13991
|
|
|
13433
13992
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13453,10 +14012,9 @@ type PerfectionistSortObjectTypes = {
|
|
|
13453
14012
|
|
|
13454
14013
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13455
14014
|
sortBy?: ("name" | "value")
|
|
13456
|
-
[k: string]: unknown | undefined
|
|
13457
14015
|
}
|
|
13458
14016
|
|
|
13459
|
-
groupName
|
|
14017
|
+
groupName: string
|
|
13460
14018
|
|
|
13461
14019
|
order?: ("asc" | "desc")
|
|
13462
14020
|
|
|
@@ -13468,18 +14026,26 @@ type PerfectionistSortObjectTypes = {
|
|
|
13468
14026
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
13469
14027
|
|
|
13470
14028
|
elementValuePattern?: (({
|
|
13471
|
-
|
|
14029
|
+
|
|
14030
|
+
pattern: string
|
|
14031
|
+
|
|
13472
14032
|
flags?: string
|
|
13473
14033
|
} | string)[] | ({
|
|
13474
|
-
|
|
14034
|
+
|
|
14035
|
+
pattern: string
|
|
14036
|
+
|
|
13475
14037
|
flags?: string
|
|
13476
14038
|
} | string))
|
|
13477
14039
|
|
|
13478
14040
|
elementNamePattern?: (({
|
|
13479
|
-
|
|
14041
|
+
|
|
14042
|
+
pattern: string
|
|
14043
|
+
|
|
13480
14044
|
flags?: string
|
|
13481
14045
|
} | string)[] | ({
|
|
13482
|
-
|
|
14046
|
+
|
|
14047
|
+
pattern: string
|
|
14048
|
+
|
|
13483
14049
|
flags?: string
|
|
13484
14050
|
} | string))
|
|
13485
14051
|
sortBy?: ("name" | "value")
|
|
@@ -13494,10 +14060,9 @@ type PerfectionistSortObjectTypes = {
|
|
|
13494
14060
|
|
|
13495
14061
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13496
14062
|
sortBy?: ("name" | "value")
|
|
13497
|
-
[k: string]: unknown | undefined
|
|
13498
14063
|
}
|
|
13499
14064
|
|
|
13500
|
-
groupName
|
|
14065
|
+
groupName: string
|
|
13501
14066
|
|
|
13502
14067
|
order?: ("asc" | "desc")
|
|
13503
14068
|
|
|
@@ -13508,62 +14073,93 @@ type PerfectionistSortObjectTypes = {
|
|
|
13508
14073
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
13509
14074
|
|
|
13510
14075
|
elementValuePattern?: (({
|
|
13511
|
-
|
|
14076
|
+
|
|
14077
|
+
pattern: string
|
|
14078
|
+
|
|
13512
14079
|
flags?: string
|
|
13513
14080
|
} | string)[] | ({
|
|
13514
|
-
|
|
14081
|
+
|
|
14082
|
+
pattern: string
|
|
14083
|
+
|
|
13515
14084
|
flags?: string
|
|
13516
14085
|
} | string))
|
|
13517
14086
|
|
|
13518
14087
|
elementNamePattern?: (({
|
|
13519
|
-
|
|
14088
|
+
|
|
14089
|
+
pattern: string
|
|
14090
|
+
|
|
13520
14091
|
flags?: string
|
|
13521
14092
|
} | string)[] | ({
|
|
13522
|
-
|
|
14093
|
+
|
|
14094
|
+
pattern: string
|
|
14095
|
+
|
|
13523
14096
|
flags?: string
|
|
13524
14097
|
} | string))
|
|
13525
14098
|
sortBy?: ("name" | "value")
|
|
13526
14099
|
})[])
|
|
13527
14100
|
|
|
13528
14101
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
14102
|
+
|
|
13529
14103
|
useConfigurationIf?: {
|
|
13530
14104
|
|
|
13531
14105
|
allNamesMatchPattern?: (({
|
|
13532
|
-
|
|
14106
|
+
|
|
14107
|
+
pattern: string
|
|
14108
|
+
|
|
13533
14109
|
flags?: string
|
|
13534
14110
|
} | string)[] | ({
|
|
13535
|
-
|
|
14111
|
+
|
|
14112
|
+
pattern: string
|
|
14113
|
+
|
|
13536
14114
|
flags?: string
|
|
13537
14115
|
} | string))
|
|
13538
14116
|
|
|
13539
14117
|
declarationMatchesPattern?: (({
|
|
13540
|
-
|
|
14118
|
+
|
|
14119
|
+
pattern: string
|
|
14120
|
+
|
|
13541
14121
|
flags?: string
|
|
13542
14122
|
} | string)[] | ({
|
|
13543
|
-
|
|
14123
|
+
|
|
14124
|
+
pattern: string
|
|
14125
|
+
|
|
13544
14126
|
flags?: string
|
|
13545
14127
|
} | string))
|
|
13546
14128
|
}
|
|
13547
14129
|
|
|
13548
14130
|
partitionByComment?: (boolean | (({
|
|
13549
|
-
|
|
14131
|
+
|
|
14132
|
+
pattern: string
|
|
14133
|
+
|
|
13550
14134
|
flags?: string
|
|
13551
14135
|
} | string)[] | ({
|
|
13552
|
-
|
|
14136
|
+
|
|
14137
|
+
pattern: string
|
|
14138
|
+
|
|
13553
14139
|
flags?: string
|
|
13554
14140
|
} | string)) | {
|
|
14141
|
+
|
|
13555
14142
|
block?: (boolean | (({
|
|
13556
|
-
|
|
14143
|
+
|
|
14144
|
+
pattern: string
|
|
14145
|
+
|
|
13557
14146
|
flags?: string
|
|
13558
14147
|
} | string)[] | ({
|
|
13559
|
-
|
|
14148
|
+
|
|
14149
|
+
pattern: string
|
|
14150
|
+
|
|
13560
14151
|
flags?: string
|
|
13561
14152
|
} | string)))
|
|
14153
|
+
|
|
13562
14154
|
line?: (boolean | (({
|
|
13563
|
-
|
|
14155
|
+
|
|
14156
|
+
pattern: string
|
|
14157
|
+
|
|
13564
14158
|
flags?: string
|
|
13565
14159
|
} | string)[] | ({
|
|
13566
|
-
|
|
14160
|
+
|
|
14161
|
+
pattern: string
|
|
14162
|
+
|
|
13567
14163
|
flags?: string
|
|
13568
14164
|
} | string)))
|
|
13569
14165
|
})
|
|
@@ -13573,17 +14169,21 @@ type PerfectionistSortObjectTypes = {
|
|
|
13573
14169
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
13574
14170
|
|
|
13575
14171
|
ignorePattern?: (({
|
|
13576
|
-
|
|
14172
|
+
|
|
14173
|
+
pattern: string
|
|
14174
|
+
|
|
13577
14175
|
flags?: string
|
|
13578
14176
|
} | string)[] | ({
|
|
13579
|
-
|
|
14177
|
+
|
|
14178
|
+
pattern: string
|
|
14179
|
+
|
|
13580
14180
|
flags?: string
|
|
13581
14181
|
} | string))
|
|
13582
14182
|
sortBy?: ("name" | "value")
|
|
13583
14183
|
|
|
13584
14184
|
groups?: (string | string[] | {
|
|
13585
14185
|
|
|
13586
|
-
newlinesBetween
|
|
14186
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13587
14187
|
})[]
|
|
13588
14188
|
}[]
|
|
13589
14189
|
// ----- perfectionist/sort-objects -----
|
|
@@ -13594,7 +14194,6 @@ type PerfectionistSortObjects = {
|
|
|
13594
14194
|
order?: ("asc" | "desc")
|
|
13595
14195
|
|
|
13596
14196
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13597
|
-
[k: string]: unknown | undefined
|
|
13598
14197
|
}
|
|
13599
14198
|
|
|
13600
14199
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13624,10 +14223,9 @@ type PerfectionistSortObjects = {
|
|
|
13624
14223
|
order?: ("asc" | "desc")
|
|
13625
14224
|
|
|
13626
14225
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13627
|
-
[k: string]: unknown | undefined
|
|
13628
14226
|
}
|
|
13629
14227
|
|
|
13630
|
-
groupName
|
|
14228
|
+
groupName: string
|
|
13631
14229
|
|
|
13632
14230
|
order?: ("asc" | "desc")
|
|
13633
14231
|
|
|
@@ -13639,18 +14237,26 @@ type PerfectionistSortObjects = {
|
|
|
13639
14237
|
selector?: ("member" | "method" | "multiline" | "property")
|
|
13640
14238
|
|
|
13641
14239
|
elementValuePattern?: (({
|
|
13642
|
-
|
|
14240
|
+
|
|
14241
|
+
pattern: string
|
|
14242
|
+
|
|
13643
14243
|
flags?: string
|
|
13644
14244
|
} | string)[] | ({
|
|
13645
|
-
|
|
14245
|
+
|
|
14246
|
+
pattern: string
|
|
14247
|
+
|
|
13646
14248
|
flags?: string
|
|
13647
14249
|
} | string))
|
|
13648
14250
|
|
|
13649
14251
|
elementNamePattern?: (({
|
|
13650
|
-
|
|
14252
|
+
|
|
14253
|
+
pattern: string
|
|
14254
|
+
|
|
13651
14255
|
flags?: string
|
|
13652
14256
|
} | string)[] | ({
|
|
13653
|
-
|
|
14257
|
+
|
|
14258
|
+
pattern: string
|
|
14259
|
+
|
|
13654
14260
|
flags?: string
|
|
13655
14261
|
} | string))
|
|
13656
14262
|
}[]
|
|
@@ -13663,10 +14269,9 @@ type PerfectionistSortObjects = {
|
|
|
13663
14269
|
order?: ("asc" | "desc")
|
|
13664
14270
|
|
|
13665
14271
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13666
|
-
[k: string]: unknown | undefined
|
|
13667
14272
|
}
|
|
13668
14273
|
|
|
13669
|
-
groupName
|
|
14274
|
+
groupName: string
|
|
13670
14275
|
|
|
13671
14276
|
order?: ("asc" | "desc")
|
|
13672
14277
|
|
|
@@ -13677,36 +14282,53 @@ type PerfectionistSortObjects = {
|
|
|
13677
14282
|
selector?: ("member" | "method" | "multiline" | "property")
|
|
13678
14283
|
|
|
13679
14284
|
elementValuePattern?: (({
|
|
13680
|
-
|
|
14285
|
+
|
|
14286
|
+
pattern: string
|
|
14287
|
+
|
|
13681
14288
|
flags?: string
|
|
13682
14289
|
} | string)[] | ({
|
|
13683
|
-
|
|
14290
|
+
|
|
14291
|
+
pattern: string
|
|
14292
|
+
|
|
13684
14293
|
flags?: string
|
|
13685
14294
|
} | string))
|
|
13686
14295
|
|
|
13687
14296
|
elementNamePattern?: (({
|
|
13688
|
-
|
|
14297
|
+
|
|
14298
|
+
pattern: string
|
|
14299
|
+
|
|
13689
14300
|
flags?: string
|
|
13690
14301
|
} | string)[] | ({
|
|
13691
|
-
|
|
14302
|
+
|
|
14303
|
+
pattern: string
|
|
14304
|
+
|
|
13692
14305
|
flags?: string
|
|
13693
14306
|
} | string))
|
|
13694
14307
|
})[])
|
|
14308
|
+
|
|
13695
14309
|
useConfigurationIf?: {
|
|
13696
14310
|
|
|
13697
14311
|
allNamesMatchPattern?: (({
|
|
13698
|
-
|
|
14312
|
+
|
|
14313
|
+
pattern: string
|
|
14314
|
+
|
|
13699
14315
|
flags?: string
|
|
13700
14316
|
} | string)[] | ({
|
|
13701
|
-
|
|
14317
|
+
|
|
14318
|
+
pattern: string
|
|
14319
|
+
|
|
13702
14320
|
flags?: string
|
|
13703
14321
|
} | string))
|
|
13704
14322
|
|
|
13705
14323
|
callingFunctionNamePattern?: (({
|
|
13706
|
-
|
|
14324
|
+
|
|
14325
|
+
pattern: string
|
|
14326
|
+
|
|
13707
14327
|
flags?: string
|
|
13708
14328
|
} | string)[] | ({
|
|
13709
|
-
|
|
14329
|
+
|
|
14330
|
+
pattern: string
|
|
14331
|
+
|
|
13710
14332
|
flags?: string
|
|
13711
14333
|
} | string))
|
|
13712
14334
|
}
|
|
@@ -13718,24 +14340,38 @@ type PerfectionistSortObjects = {
|
|
|
13718
14340
|
styledComponents?: boolean
|
|
13719
14341
|
|
|
13720
14342
|
partitionByComment?: (boolean | (({
|
|
13721
|
-
|
|
14343
|
+
|
|
14344
|
+
pattern: string
|
|
14345
|
+
|
|
13722
14346
|
flags?: string
|
|
13723
14347
|
} | string)[] | ({
|
|
13724
|
-
|
|
14348
|
+
|
|
14349
|
+
pattern: string
|
|
14350
|
+
|
|
13725
14351
|
flags?: string
|
|
13726
14352
|
} | string)) | {
|
|
14353
|
+
|
|
13727
14354
|
block?: (boolean | (({
|
|
13728
|
-
|
|
14355
|
+
|
|
14356
|
+
pattern: string
|
|
14357
|
+
|
|
13729
14358
|
flags?: string
|
|
13730
14359
|
} | string)[] | ({
|
|
13731
|
-
|
|
14360
|
+
|
|
14361
|
+
pattern: string
|
|
14362
|
+
|
|
13732
14363
|
flags?: string
|
|
13733
14364
|
} | string)))
|
|
14365
|
+
|
|
13734
14366
|
line?: (boolean | (({
|
|
13735
|
-
|
|
14367
|
+
|
|
14368
|
+
pattern: string
|
|
14369
|
+
|
|
13736
14370
|
flags?: string
|
|
13737
14371
|
} | string)[] | ({
|
|
13738
|
-
|
|
14372
|
+
|
|
14373
|
+
pattern: string
|
|
14374
|
+
|
|
13739
14375
|
flags?: string
|
|
13740
14376
|
} | string)))
|
|
13741
14377
|
})
|
|
@@ -13745,16 +14381,20 @@ type PerfectionistSortObjects = {
|
|
|
13745
14381
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
13746
14382
|
|
|
13747
14383
|
ignorePattern?: (({
|
|
13748
|
-
|
|
14384
|
+
|
|
14385
|
+
pattern: string
|
|
14386
|
+
|
|
13749
14387
|
flags?: string
|
|
13750
14388
|
} | string)[] | ({
|
|
13751
|
-
|
|
14389
|
+
|
|
14390
|
+
pattern: string
|
|
14391
|
+
|
|
13752
14392
|
flags?: string
|
|
13753
14393
|
} | string))
|
|
13754
14394
|
|
|
13755
14395
|
groups?: (string | string[] | {
|
|
13756
14396
|
|
|
13757
|
-
newlinesBetween
|
|
14397
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13758
14398
|
})[]
|
|
13759
14399
|
}[]
|
|
13760
14400
|
// ----- perfectionist/sort-sets -----
|
|
@@ -13765,7 +14405,6 @@ type PerfectionistSortSets = {
|
|
|
13765
14405
|
order?: ("asc" | "desc")
|
|
13766
14406
|
|
|
13767
14407
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13768
|
-
[k: string]: unknown | undefined
|
|
13769
14408
|
}
|
|
13770
14409
|
|
|
13771
14410
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13791,10 +14430,9 @@ type PerfectionistSortSets = {
|
|
|
13791
14430
|
order?: ("asc" | "desc")
|
|
13792
14431
|
|
|
13793
14432
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13794
|
-
[k: string]: unknown | undefined
|
|
13795
14433
|
}
|
|
13796
14434
|
|
|
13797
|
-
groupName
|
|
14435
|
+
groupName: string
|
|
13798
14436
|
|
|
13799
14437
|
order?: ("asc" | "desc")
|
|
13800
14438
|
|
|
@@ -13804,10 +14442,14 @@ type PerfectionistSortSets = {
|
|
|
13804
14442
|
selector?: ("literal" | "spread")
|
|
13805
14443
|
|
|
13806
14444
|
elementNamePattern?: (({
|
|
13807
|
-
|
|
14445
|
+
|
|
14446
|
+
pattern: string
|
|
14447
|
+
|
|
13808
14448
|
flags?: string
|
|
13809
14449
|
} | string)[] | ({
|
|
13810
|
-
|
|
14450
|
+
|
|
14451
|
+
pattern: string
|
|
14452
|
+
|
|
13811
14453
|
flags?: string
|
|
13812
14454
|
} | string))
|
|
13813
14455
|
}[]
|
|
@@ -13820,10 +14462,9 @@ type PerfectionistSortSets = {
|
|
|
13820
14462
|
order?: ("asc" | "desc")
|
|
13821
14463
|
|
|
13822
14464
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13823
|
-
[k: string]: unknown | undefined
|
|
13824
14465
|
}
|
|
13825
14466
|
|
|
13826
|
-
groupName
|
|
14467
|
+
groupName: string
|
|
13827
14468
|
|
|
13828
14469
|
order?: ("asc" | "desc")
|
|
13829
14470
|
|
|
@@ -13832,43 +14473,66 @@ type PerfectionistSortSets = {
|
|
|
13832
14473
|
selector?: ("literal" | "spread")
|
|
13833
14474
|
|
|
13834
14475
|
elementNamePattern?: (({
|
|
13835
|
-
|
|
14476
|
+
|
|
14477
|
+
pattern: string
|
|
14478
|
+
|
|
13836
14479
|
flags?: string
|
|
13837
14480
|
} | string)[] | ({
|
|
13838
|
-
|
|
14481
|
+
|
|
14482
|
+
pattern: string
|
|
14483
|
+
|
|
13839
14484
|
flags?: string
|
|
13840
14485
|
} | string))
|
|
13841
14486
|
})[]
|
|
14487
|
+
|
|
13842
14488
|
useConfigurationIf?: {
|
|
13843
14489
|
|
|
13844
14490
|
allNamesMatchPattern?: (({
|
|
13845
|
-
|
|
14491
|
+
|
|
14492
|
+
pattern: string
|
|
14493
|
+
|
|
13846
14494
|
flags?: string
|
|
13847
14495
|
} | string)[] | ({
|
|
13848
|
-
|
|
14496
|
+
|
|
14497
|
+
pattern: string
|
|
14498
|
+
|
|
13849
14499
|
flags?: string
|
|
13850
14500
|
} | string))
|
|
13851
14501
|
}
|
|
13852
14502
|
|
|
13853
14503
|
partitionByComment?: (boolean | (({
|
|
13854
|
-
|
|
14504
|
+
|
|
14505
|
+
pattern: string
|
|
14506
|
+
|
|
13855
14507
|
flags?: string
|
|
13856
14508
|
} | string)[] | ({
|
|
13857
|
-
|
|
14509
|
+
|
|
14510
|
+
pattern: string
|
|
14511
|
+
|
|
13858
14512
|
flags?: string
|
|
13859
14513
|
} | string)) | {
|
|
14514
|
+
|
|
13860
14515
|
block?: (boolean | (({
|
|
13861
|
-
|
|
14516
|
+
|
|
14517
|
+
pattern: string
|
|
14518
|
+
|
|
13862
14519
|
flags?: string
|
|
13863
14520
|
} | string)[] | ({
|
|
13864
|
-
|
|
14521
|
+
|
|
14522
|
+
pattern: string
|
|
14523
|
+
|
|
13865
14524
|
flags?: string
|
|
13866
14525
|
} | string)))
|
|
14526
|
+
|
|
13867
14527
|
line?: (boolean | (({
|
|
13868
|
-
|
|
14528
|
+
|
|
14529
|
+
pattern: string
|
|
14530
|
+
|
|
13869
14531
|
flags?: string
|
|
13870
14532
|
} | string)[] | ({
|
|
13871
|
-
|
|
14533
|
+
|
|
14534
|
+
pattern: string
|
|
14535
|
+
|
|
13872
14536
|
flags?: string
|
|
13873
14537
|
} | string)))
|
|
13874
14538
|
})
|
|
@@ -13879,7 +14543,7 @@ type PerfectionistSortSets = {
|
|
|
13879
14543
|
|
|
13880
14544
|
groups?: (string | string[] | {
|
|
13881
14545
|
|
|
13882
|
-
newlinesBetween
|
|
14546
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13883
14547
|
})[]
|
|
13884
14548
|
}[]
|
|
13885
14549
|
// ----- perfectionist/sort-switch-case -----
|
|
@@ -13890,7 +14554,6 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
13890
14554
|
order?: ("asc" | "desc")
|
|
13891
14555
|
|
|
13892
14556
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13893
|
-
[k: string]: unknown | undefined
|
|
13894
14557
|
}
|
|
13895
14558
|
|
|
13896
14559
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13906,14 +14569,13 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
13906
14569
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13907
14570
|
}]
|
|
13908
14571
|
// ----- perfectionist/sort-union-types -----
|
|
13909
|
-
type PerfectionistSortUnionTypes =
|
|
14572
|
+
type PerfectionistSortUnionTypes = {
|
|
13910
14573
|
|
|
13911
14574
|
fallbackSort?: {
|
|
13912
14575
|
|
|
13913
14576
|
order?: ("asc" | "desc")
|
|
13914
14577
|
|
|
13915
14578
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13916
|
-
[k: string]: unknown | undefined
|
|
13917
14579
|
}
|
|
13918
14580
|
|
|
13919
14581
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13928,25 +14590,103 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
13928
14590
|
|
|
13929
14591
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13930
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
|
+
|
|
13931
14657
|
partitionByComment?: (boolean | (({
|
|
13932
|
-
|
|
14658
|
+
|
|
14659
|
+
pattern: string
|
|
14660
|
+
|
|
13933
14661
|
flags?: string
|
|
13934
14662
|
} | string)[] | ({
|
|
13935
|
-
|
|
14663
|
+
|
|
14664
|
+
pattern: string
|
|
14665
|
+
|
|
13936
14666
|
flags?: string
|
|
13937
14667
|
} | string)) | {
|
|
14668
|
+
|
|
13938
14669
|
block?: (boolean | (({
|
|
13939
|
-
|
|
14670
|
+
|
|
14671
|
+
pattern: string
|
|
14672
|
+
|
|
13940
14673
|
flags?: string
|
|
13941
14674
|
} | string)[] | ({
|
|
13942
|
-
|
|
14675
|
+
|
|
14676
|
+
pattern: string
|
|
14677
|
+
|
|
13943
14678
|
flags?: string
|
|
13944
14679
|
} | string)))
|
|
14680
|
+
|
|
13945
14681
|
line?: (boolean | (({
|
|
13946
|
-
|
|
14682
|
+
|
|
14683
|
+
pattern: string
|
|
14684
|
+
|
|
13947
14685
|
flags?: string
|
|
13948
14686
|
} | string)[] | ({
|
|
13949
|
-
|
|
14687
|
+
|
|
14688
|
+
pattern: string
|
|
14689
|
+
|
|
13950
14690
|
flags?: string
|
|
13951
14691
|
} | string)))
|
|
13952
14692
|
})
|
|
@@ -13957,9 +14697,9 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
13957
14697
|
|
|
13958
14698
|
groups?: (string | string[] | {
|
|
13959
14699
|
|
|
13960
|
-
newlinesBetween
|
|
14700
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13961
14701
|
})[]
|
|
13962
|
-
}]
|
|
14702
|
+
}[]
|
|
13963
14703
|
// ----- perfectionist/sort-variable-declarations -----
|
|
13964
14704
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
13965
14705
|
|
|
@@ -13968,7 +14708,6 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
13968
14708
|
order?: ("asc" | "desc")
|
|
13969
14709
|
|
|
13970
14710
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13971
|
-
[k: string]: unknown | undefined
|
|
13972
14711
|
}
|
|
13973
14712
|
|
|
13974
14713
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13983,30 +14722,115 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
13983
14722
|
|
|
13984
14723
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13985
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
|
+
|
|
13986
14789
|
partitionByComment?: (boolean | (({
|
|
13987
|
-
|
|
14790
|
+
|
|
14791
|
+
pattern: string
|
|
14792
|
+
|
|
13988
14793
|
flags?: string
|
|
13989
14794
|
} | string)[] | ({
|
|
13990
|
-
|
|
14795
|
+
|
|
14796
|
+
pattern: string
|
|
14797
|
+
|
|
13991
14798
|
flags?: string
|
|
13992
14799
|
} | string)) | {
|
|
14800
|
+
|
|
13993
14801
|
block?: (boolean | (({
|
|
13994
|
-
|
|
14802
|
+
|
|
14803
|
+
pattern: string
|
|
14804
|
+
|
|
13995
14805
|
flags?: string
|
|
13996
14806
|
} | string)[] | ({
|
|
13997
|
-
|
|
14807
|
+
|
|
14808
|
+
pattern: string
|
|
14809
|
+
|
|
13998
14810
|
flags?: string
|
|
13999
14811
|
} | string)))
|
|
14812
|
+
|
|
14000
14813
|
line?: (boolean | (({
|
|
14001
|
-
|
|
14814
|
+
|
|
14815
|
+
pattern: string
|
|
14816
|
+
|
|
14002
14817
|
flags?: string
|
|
14003
14818
|
} | string)[] | ({
|
|
14004
|
-
|
|
14819
|
+
|
|
14820
|
+
pattern: string
|
|
14821
|
+
|
|
14005
14822
|
flags?: string
|
|
14006
14823
|
} | string)))
|
|
14007
14824
|
})
|
|
14008
14825
|
|
|
14009
14826
|
partitionByNewLine?: boolean
|
|
14827
|
+
|
|
14828
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
14829
|
+
|
|
14830
|
+
groups?: (string | string[] | {
|
|
14831
|
+
|
|
14832
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
14833
|
+
})[]
|
|
14010
14834
|
}]
|
|
14011
14835
|
// ----- prefer-arrow-callback -----
|
|
14012
14836
|
type PreferArrowCallback = []|[{
|