@2030/eslint-config 1.0.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +1 -1
- package/dist/cli.cjs +134 -133
- package/dist/cli.js +134 -133
- package/dist/index.cjs +231 -180
- package/dist/index.d.cts +854 -275
- package/dist/index.d.ts +854 -275
- package/dist/index.js +240 -190
- package/package.json +53 -54
package/dist/index.d.cts
CHANGED
|
@@ -1,128 +1,9 @@
|
|
|
1
|
-
import { FlatConfigComposer } from 'eslint-flat-config-utils';
|
|
2
1
|
import { Linter } from 'eslint';
|
|
3
|
-
import {
|
|
2
|
+
import { StylisticCustomizeOptions } from '@stylistic/eslint-plugin';
|
|
4
3
|
import { ParserOptions } from '@typescript-eslint/parser';
|
|
4
|
+
import { FlatGitignoreOptions } from 'eslint-config-flat-gitignore';
|
|
5
5
|
import { Options } from 'eslint-processor-vue-blocks';
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* Vendor types from Prettier so we don't rely on the dependency.
|
|
10
|
-
*/
|
|
11
|
-
type VendoredPrettierOptions = Partial<VendoredPrettierOptionsRequired>;
|
|
12
|
-
interface VendoredPrettierOptionsRequired {
|
|
13
|
-
/**
|
|
14
|
-
* Specify the line length that the printer will wrap on.
|
|
15
|
-
* @default 120
|
|
16
|
-
*/
|
|
17
|
-
printWidth: number;
|
|
18
|
-
/**
|
|
19
|
-
* Specify the number of spaces per indentation-level.
|
|
20
|
-
*/
|
|
21
|
-
tabWidth: number;
|
|
22
|
-
/**
|
|
23
|
-
* Indent lines with tabs instead of spaces
|
|
24
|
-
*/
|
|
25
|
-
useTabs?: boolean;
|
|
26
|
-
/**
|
|
27
|
-
* Print semicolons at the ends of statements.
|
|
28
|
-
*/
|
|
29
|
-
semi: boolean;
|
|
30
|
-
/**
|
|
31
|
-
* Use single quotes instead of double quotes.
|
|
32
|
-
*/
|
|
33
|
-
singleQuote: boolean;
|
|
34
|
-
/**
|
|
35
|
-
* Use single quotes in JSX.
|
|
36
|
-
*/
|
|
37
|
-
jsxSingleQuote: boolean;
|
|
38
|
-
/**
|
|
39
|
-
* Print trailing commas wherever possible.
|
|
40
|
-
*/
|
|
41
|
-
trailingComma: 'none' | 'es5' | 'all';
|
|
42
|
-
/**
|
|
43
|
-
* Print spaces between brackets in object literals.
|
|
44
|
-
*/
|
|
45
|
-
bracketSpacing: boolean;
|
|
46
|
-
/**
|
|
47
|
-
* Put the `>` of a multi-line HTML (HTML, XML, JSX, Vue, Angular) element at the end of the last line instead of being
|
|
48
|
-
* alone on the next line (does not apply to self closing elements).
|
|
49
|
-
*/
|
|
50
|
-
bracketSameLine: boolean;
|
|
51
|
-
/**
|
|
52
|
-
* Put the `>` of a multi-line JSX element at the end of the last line instead of being alone on the next line.
|
|
53
|
-
* @deprecated use bracketSameLine instead
|
|
54
|
-
*/
|
|
55
|
-
jsxBracketSameLine: boolean;
|
|
56
|
-
/**
|
|
57
|
-
* Format only a segment of a file.
|
|
58
|
-
*/
|
|
59
|
-
rangeStart: number;
|
|
60
|
-
/**
|
|
61
|
-
* Format only a segment of a file.
|
|
62
|
-
* @default Number.POSITIVE_INFINITY
|
|
63
|
-
*/
|
|
64
|
-
rangeEnd: number;
|
|
65
|
-
/**
|
|
66
|
-
* By default, Prettier will wrap markdown text as-is since some services use a linebreak-sensitive renderer.
|
|
67
|
-
* In some cases you may want to rely on editor/viewer soft wrapping instead, so this option allows you to opt out.
|
|
68
|
-
* @default "preserve"
|
|
69
|
-
*/
|
|
70
|
-
proseWrap: 'always' | 'never' | 'preserve';
|
|
71
|
-
/**
|
|
72
|
-
* Include parentheses around a sole arrow function parameter.
|
|
73
|
-
* @default "always"
|
|
74
|
-
*/
|
|
75
|
-
arrowParens: 'avoid' | 'always';
|
|
76
|
-
/**
|
|
77
|
-
* Provide ability to support new languages to prettier.
|
|
78
|
-
*/
|
|
79
|
-
plugins: Array<string | any>;
|
|
80
|
-
/**
|
|
81
|
-
* How to handle whitespaces in HTML.
|
|
82
|
-
* @default "css"
|
|
83
|
-
*/
|
|
84
|
-
htmlWhitespaceSensitivity: 'css' | 'strict' | 'ignore';
|
|
85
|
-
/**
|
|
86
|
-
* Which end of line characters to apply.
|
|
87
|
-
* @default "lf"
|
|
88
|
-
*/
|
|
89
|
-
endOfLine: 'auto' | 'lf' | 'crlf' | 'cr';
|
|
90
|
-
/**
|
|
91
|
-
* Change when properties in objects are quoted.
|
|
92
|
-
* @default "as-needed"
|
|
93
|
-
*/
|
|
94
|
-
quoteProps: 'as-needed' | 'consistent' | 'preserve';
|
|
95
|
-
/**
|
|
96
|
-
* Whether or not to indent the code inside <script> and <style> tags in Vue files.
|
|
97
|
-
* @default false
|
|
98
|
-
*/
|
|
99
|
-
vueIndentScriptAndStyle: boolean;
|
|
100
|
-
/**
|
|
101
|
-
* Enforce single attribute per line in HTML, XML, Vue and JSX.
|
|
102
|
-
* @default false
|
|
103
|
-
*/
|
|
104
|
-
singleAttributePerLine: boolean;
|
|
105
|
-
/**
|
|
106
|
-
* How to handle whitespaces in XML.
|
|
107
|
-
* @default "preserve"
|
|
108
|
-
*/
|
|
109
|
-
xmlQuoteAttributes: 'single' | 'double' | 'preserve';
|
|
110
|
-
/**
|
|
111
|
-
* Whether to put a space inside the brackets of self-closing XML elements.
|
|
112
|
-
* @default true
|
|
113
|
-
*/
|
|
114
|
-
xmlSelfClosingSpace: boolean;
|
|
115
|
-
/**
|
|
116
|
-
* Whether to sort attributes by key in XML elements.
|
|
117
|
-
* @default false
|
|
118
|
-
*/
|
|
119
|
-
xmlSortAttributesByKey: boolean;
|
|
120
|
-
/**
|
|
121
|
-
* How to handle whitespaces in XML.
|
|
122
|
-
* @default "ignore"
|
|
123
|
-
*/
|
|
124
|
-
xmlWhitespaceSensitivity: 'ignore' | 'strict' | 'preserve';
|
|
125
|
-
}
|
|
6
|
+
import { FlatConfigComposer } from 'eslint-flat-config-utils';
|
|
126
7
|
|
|
127
8
|
/* eslint-disable */
|
|
128
9
|
/* prettier-ignore */
|
|
@@ -711,228 +592,233 @@ interface RuleOptions {
|
|
|
711
592
|
'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
|
|
712
593
|
/**
|
|
713
594
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
714
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
595
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/consistent-type-specifier-style.md
|
|
715
596
|
*/
|
|
716
597
|
'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
|
|
717
598
|
/**
|
|
718
599
|
* Ensure a default export is present, given a default import.
|
|
719
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
600
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/default.md
|
|
720
601
|
*/
|
|
721
602
|
'import/default'?: Linter.RuleEntry<[]>
|
|
722
603
|
/**
|
|
723
604
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
724
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
605
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/dynamic-import-chunkname.md
|
|
725
606
|
*/
|
|
726
607
|
'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
|
|
727
608
|
/**
|
|
728
609
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
729
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
610
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/export.md
|
|
730
611
|
*/
|
|
731
612
|
'import/export'?: Linter.RuleEntry<[]>
|
|
732
613
|
/**
|
|
733
614
|
* Ensure all exports appear after other statements.
|
|
734
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
615
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/exports-last.md
|
|
735
616
|
*/
|
|
736
617
|
'import/exports-last'?: Linter.RuleEntry<[]>
|
|
737
618
|
/**
|
|
738
619
|
* Ensure consistent use of file extension within the import path.
|
|
739
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
620
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/extensions.md
|
|
740
621
|
*/
|
|
741
622
|
'import/extensions'?: Linter.RuleEntry<ImportExtensions>
|
|
742
623
|
/**
|
|
743
624
|
* Ensure all imports appear before other statements.
|
|
744
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
625
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/first.md
|
|
745
626
|
*/
|
|
746
627
|
'import/first'?: Linter.RuleEntry<ImportFirst>
|
|
747
628
|
/**
|
|
748
629
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
749
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
630
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/group-exports.md
|
|
750
631
|
*/
|
|
751
632
|
'import/group-exports'?: Linter.RuleEntry<[]>
|
|
752
633
|
/**
|
|
753
634
|
* Replaced by `import-x/first`.
|
|
754
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
635
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/imports-first.md
|
|
755
636
|
* @deprecated
|
|
756
637
|
*/
|
|
757
638
|
'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
|
|
758
639
|
/**
|
|
759
640
|
* Enforce the maximum number of dependencies a module can have.
|
|
760
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
641
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/max-dependencies.md
|
|
761
642
|
*/
|
|
762
643
|
'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
|
|
763
644
|
/**
|
|
764
645
|
* Ensure named imports correspond to a named export in the remote file.
|
|
765
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
646
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/named.md
|
|
766
647
|
*/
|
|
767
648
|
'import/named'?: Linter.RuleEntry<ImportNamed>
|
|
768
649
|
/**
|
|
769
650
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
770
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
651
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/namespace.md
|
|
771
652
|
*/
|
|
772
653
|
'import/namespace'?: Linter.RuleEntry<ImportNamespace>
|
|
773
654
|
/**
|
|
774
655
|
* Enforce a newline after import statements.
|
|
775
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
656
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/newline-after-import.md
|
|
776
657
|
*/
|
|
777
658
|
'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
|
|
778
659
|
/**
|
|
779
660
|
* Forbid import of modules using absolute paths.
|
|
780
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
661
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-absolute-path.md
|
|
781
662
|
*/
|
|
782
663
|
'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
|
|
783
664
|
/**
|
|
784
665
|
* Forbid AMD `require` and `define` calls.
|
|
785
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
666
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-amd.md
|
|
786
667
|
*/
|
|
787
668
|
'import/no-amd'?: Linter.RuleEntry<[]>
|
|
788
669
|
/**
|
|
789
670
|
* Forbid anonymous values as default exports.
|
|
790
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
671
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-anonymous-default-export.md
|
|
791
672
|
*/
|
|
792
673
|
'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
|
|
793
674
|
/**
|
|
794
675
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
795
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
676
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-commonjs.md
|
|
796
677
|
*/
|
|
797
678
|
'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
|
|
798
679
|
/**
|
|
799
680
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
800
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
681
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-cycle.md
|
|
801
682
|
*/
|
|
802
683
|
'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
|
|
803
684
|
/**
|
|
804
685
|
* Forbid default exports.
|
|
805
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
686
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-default-export.md
|
|
806
687
|
*/
|
|
807
688
|
'import/no-default-export'?: Linter.RuleEntry<[]>
|
|
808
689
|
/**
|
|
809
690
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
810
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
691
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-deprecated.md
|
|
811
692
|
*/
|
|
812
693
|
'import/no-deprecated'?: Linter.RuleEntry<[]>
|
|
813
694
|
/**
|
|
814
695
|
* Forbid repeated import of the same module in multiple places.
|
|
815
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
696
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-duplicates.md
|
|
816
697
|
*/
|
|
817
698
|
'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
|
|
818
699
|
/**
|
|
819
700
|
* Forbid `require()` calls with expressions.
|
|
820
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
701
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-dynamic-require.md
|
|
821
702
|
*/
|
|
822
703
|
'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
|
|
823
704
|
/**
|
|
824
705
|
* Forbid empty named import blocks.
|
|
825
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
706
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-empty-named-blocks.md
|
|
826
707
|
*/
|
|
827
708
|
'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
828
709
|
/**
|
|
829
710
|
* Forbid the use of extraneous packages.
|
|
830
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
711
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-extraneous-dependencies.md
|
|
831
712
|
*/
|
|
832
713
|
'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
|
|
833
714
|
/**
|
|
834
715
|
* Forbid import statements with CommonJS module.exports.
|
|
835
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
716
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-import-module-exports.md
|
|
836
717
|
*/
|
|
837
718
|
'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
|
|
838
719
|
/**
|
|
839
720
|
* Forbid importing the submodules of other modules.
|
|
840
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
721
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-internal-modules.md
|
|
841
722
|
*/
|
|
842
723
|
'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
|
|
843
724
|
/**
|
|
844
725
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
845
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
726
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-mutable-exports.md
|
|
846
727
|
*/
|
|
847
728
|
'import/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
848
729
|
/**
|
|
849
730
|
* Forbid use of exported name as identifier of default export.
|
|
850
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
731
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-as-default.md
|
|
851
732
|
*/
|
|
852
733
|
'import/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
853
734
|
/**
|
|
854
735
|
* Forbid use of exported name as property of default export.
|
|
855
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
736
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-as-default-member.md
|
|
856
737
|
*/
|
|
857
738
|
'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
858
739
|
/**
|
|
859
740
|
* Forbid named default exports.
|
|
860
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
741
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-default.md
|
|
861
742
|
*/
|
|
862
743
|
'import/no-named-default'?: Linter.RuleEntry<[]>
|
|
863
744
|
/**
|
|
864
745
|
* Forbid named exports.
|
|
865
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
746
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-export.md
|
|
866
747
|
*/
|
|
867
748
|
'import/no-named-export'?: Linter.RuleEntry<[]>
|
|
868
749
|
/**
|
|
869
750
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
870
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
751
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-namespace.md
|
|
871
752
|
*/
|
|
872
753
|
'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
|
|
873
754
|
/**
|
|
874
755
|
* Forbid Node.js builtin modules.
|
|
875
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
756
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-nodejs-modules.md
|
|
876
757
|
*/
|
|
877
758
|
'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
|
|
878
759
|
/**
|
|
879
760
|
* Forbid importing packages through relative paths.
|
|
880
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
761
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-relative-packages.md
|
|
881
762
|
*/
|
|
882
763
|
'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
|
|
883
764
|
/**
|
|
884
765
|
* Forbid importing modules from parent directories.
|
|
885
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
766
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-relative-parent-imports.md
|
|
886
767
|
*/
|
|
887
768
|
'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
|
|
769
|
+
/**
|
|
770
|
+
* Forbid importing a default export by a different name.
|
|
771
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-rename-default.md
|
|
772
|
+
*/
|
|
773
|
+
'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
|
|
888
774
|
/**
|
|
889
775
|
* Enforce which files can be imported in a given folder.
|
|
890
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
776
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-restricted-paths.md
|
|
891
777
|
*/
|
|
892
778
|
'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
|
|
893
779
|
/**
|
|
894
780
|
* Forbid a module from importing itself.
|
|
895
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
781
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-self-import.md
|
|
896
782
|
*/
|
|
897
783
|
'import/no-self-import'?: Linter.RuleEntry<[]>
|
|
898
784
|
/**
|
|
899
785
|
* Forbid unassigned imports.
|
|
900
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
786
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-unassigned-import.md
|
|
901
787
|
*/
|
|
902
788
|
'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
|
|
903
789
|
/**
|
|
904
790
|
* Ensure imports point to a file/module that can be resolved.
|
|
905
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
791
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-unresolved.md
|
|
906
792
|
*/
|
|
907
793
|
'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
|
|
908
794
|
/**
|
|
909
795
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
910
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
796
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-unused-modules.md
|
|
911
797
|
*/
|
|
912
798
|
'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
|
|
913
799
|
/**
|
|
914
800
|
* Forbid unnecessary path segments in import and require statements.
|
|
915
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
801
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-useless-path-segments.md
|
|
916
802
|
*/
|
|
917
803
|
'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
|
|
918
804
|
/**
|
|
919
805
|
* Forbid webpack loader syntax in imports.
|
|
920
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
806
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-webpack-loader-syntax.md
|
|
921
807
|
*/
|
|
922
808
|
'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
923
809
|
/**
|
|
924
810
|
* Enforce a convention in module import order.
|
|
925
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
811
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/order.md
|
|
926
812
|
*/
|
|
927
813
|
'import/order'?: Linter.RuleEntry<ImportOrder>
|
|
928
814
|
/**
|
|
929
815
|
* Prefer a default export if module exports a single name or multiple names.
|
|
930
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
816
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/prefer-default-export.md
|
|
931
817
|
*/
|
|
932
818
|
'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
|
|
933
819
|
/**
|
|
934
820
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
935
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
821
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/unambiguous.md
|
|
936
822
|
*/
|
|
937
823
|
'import/unambiguous'?: Linter.RuleEntry<[]>
|
|
938
824
|
/**
|
|
@@ -1461,6 +1347,11 @@ interface RuleOptions {
|
|
|
1461
1347
|
* @deprecated
|
|
1462
1348
|
*/
|
|
1463
1349
|
'jsx-quotes'?: Linter.RuleEntry<JsxQuotes>
|
|
1350
|
+
/**
|
|
1351
|
+
* Having line breaks styles to object, array and named imports
|
|
1352
|
+
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/consistent-chaining.md
|
|
1353
|
+
*/
|
|
1354
|
+
'jun/consistent-chaining'?: Linter.RuleEntry<JunConsistentChaining>
|
|
1464
1355
|
/**
|
|
1465
1356
|
* Having line breaks styles to object, array and named imports
|
|
1466
1357
|
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/consistent-list-newline.md
|
|
@@ -1468,7 +1359,7 @@ interface RuleOptions {
|
|
|
1468
1359
|
'jun/consistent-list-newline'?: Linter.RuleEntry<JunConsistentListNewline>
|
|
1469
1360
|
/**
|
|
1470
1361
|
* Enforce Anthony's style of curly bracket
|
|
1471
|
-
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/curly.
|
|
1362
|
+
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/curly.md
|
|
1472
1363
|
*/
|
|
1473
1364
|
'jun/curly'?: Linter.RuleEntry<[]>
|
|
1474
1365
|
/**
|
|
@@ -1483,7 +1374,7 @@ interface RuleOptions {
|
|
|
1483
1374
|
'jun/import-dedupe'?: Linter.RuleEntry<[]>
|
|
1484
1375
|
/**
|
|
1485
1376
|
* Enforce consistent indentation in `unindent` template tag
|
|
1486
|
-
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/indent-unindent.
|
|
1377
|
+
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/indent-unindent.md
|
|
1487
1378
|
*/
|
|
1488
1379
|
'jun/indent-unindent'?: Linter.RuleEntry<JunIndentUnindent>
|
|
1489
1380
|
/**
|
|
@@ -1496,6 +1387,11 @@ interface RuleOptions {
|
|
|
1496
1387
|
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-node-modules-by-path.test.ts
|
|
1497
1388
|
*/
|
|
1498
1389
|
'jun/no-import-node-modules-by-path'?: Linter.RuleEntry<[]>
|
|
1390
|
+
/**
|
|
1391
|
+
* Prevent using top-level await
|
|
1392
|
+
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-top-level-await.test.ts
|
|
1393
|
+
*/
|
|
1394
|
+
'jun/no-top-level-await'?: Linter.RuleEntry<[]>
|
|
1499
1395
|
/**
|
|
1500
1396
|
* Do not use `exports =`
|
|
1501
1397
|
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-ts-export-equal.test.ts
|
|
@@ -1553,6 +1449,34 @@ interface RuleOptions {
|
|
|
1553
1449
|
* @see https://eslint.org/docs/latest/rules/logical-assignment-operators
|
|
1554
1450
|
*/
|
|
1555
1451
|
'logical-assignment-operators'?: Linter.RuleEntry<LogicalAssignmentOperators>
|
|
1452
|
+
/**
|
|
1453
|
+
* Require languages for fenced code blocks.
|
|
1454
|
+
*/
|
|
1455
|
+
'markdown/fenced-code-language'?: Linter.RuleEntry<MarkdownFencedCodeLanguage>
|
|
1456
|
+
/**
|
|
1457
|
+
* Enforce heading levels increment by one.
|
|
1458
|
+
*/
|
|
1459
|
+
'markdown/heading-increment'?: Linter.RuleEntry<[]>
|
|
1460
|
+
/**
|
|
1461
|
+
* Disallow duplicate headings in the same document.
|
|
1462
|
+
*/
|
|
1463
|
+
'markdown/no-duplicate-headings'?: Linter.RuleEntry<[]>
|
|
1464
|
+
/**
|
|
1465
|
+
* Disallow empty links.
|
|
1466
|
+
*/
|
|
1467
|
+
'markdown/no-empty-links'?: Linter.RuleEntry<[]>
|
|
1468
|
+
/**
|
|
1469
|
+
* Disallow HTML tags.
|
|
1470
|
+
*/
|
|
1471
|
+
'markdown/no-html'?: Linter.RuleEntry<MarkdownNoHtml>
|
|
1472
|
+
/**
|
|
1473
|
+
* Disallow invalid label references.
|
|
1474
|
+
*/
|
|
1475
|
+
'markdown/no-invalid-label-refs'?: Linter.RuleEntry<[]>
|
|
1476
|
+
/**
|
|
1477
|
+
* Disallow missing label references.
|
|
1478
|
+
*/
|
|
1479
|
+
'markdown/no-missing-label-refs'?: Linter.RuleEntry<[]>
|
|
1556
1480
|
/**
|
|
1557
1481
|
* Enforce a maximum number of classes per file
|
|
1558
1482
|
* @see https://eslint.org/docs/latest/rules/max-classes-per-file
|
|
@@ -2532,7 +2456,7 @@ interface RuleOptions {
|
|
|
2532
2456
|
* disallow the use of `process.env`
|
|
2533
2457
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-process-env.md
|
|
2534
2458
|
*/
|
|
2535
|
-
'node/no-process-env'?: Linter.RuleEntry<
|
|
2459
|
+
'node/no-process-env'?: Linter.RuleEntry<NodeNoProcessEnv>
|
|
2536
2460
|
/**
|
|
2537
2461
|
* disallow the use of `process.exit()`
|
|
2538
2462
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-process-exit.md
|
|
@@ -2777,6 +2701,11 @@ interface RuleOptions {
|
|
|
2777
2701
|
* @see https://perfectionist.dev/rules/sort-objects
|
|
2778
2702
|
*/
|
|
2779
2703
|
'perfectionist/sort-objects'?: Linter.RuleEntry<PerfectionistSortObjects>
|
|
2704
|
+
/**
|
|
2705
|
+
* Enforce sorted sets.
|
|
2706
|
+
* @see https://perfectionist.dev/rules/sort-sets
|
|
2707
|
+
*/
|
|
2708
|
+
'perfectionist/sort-sets'?: Linter.RuleEntry<PerfectionistSortSets>
|
|
2780
2709
|
/**
|
|
2781
2710
|
* Enforce sorted Svelte attributes.
|
|
2782
2711
|
* @see https://perfectionist.dev/rules/sort-svelte-attributes
|
|
@@ -2946,18 +2875,13 @@ interface RuleOptions {
|
|
|
2946
2875
|
*/
|
|
2947
2876
|
'react-dom/no-unsafe-target-blank'?: Linter.RuleEntry<[]>
|
|
2948
2877
|
/**
|
|
2949
|
-
* enforce custom hooks
|
|
2950
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-
|
|
2878
|
+
* enforce custom hooks to use at least one other hook inside
|
|
2879
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-redundant-custom-hook
|
|
2951
2880
|
*/
|
|
2952
2881
|
'react-hooks-extra/ensure-custom-hooks-using-other-hooks'?: Linter.RuleEntry<[]>
|
|
2953
2882
|
/**
|
|
2954
|
-
*
|
|
2955
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-
|
|
2956
|
-
*/
|
|
2957
|
-
'react-hooks-extra/ensure-use-callback-has-non-empty-deps'?: Linter.RuleEntry<[]>
|
|
2958
|
-
/**
|
|
2959
|
-
* enforce 'useMemo' has non-empty dependencies array
|
|
2960
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-ensure-use-memo-has-non-empty-deps
|
|
2883
|
+
* disallow unnecessary usage of 'useMemo'
|
|
2884
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
|
|
2961
2885
|
*/
|
|
2962
2886
|
'react-hooks-extra/ensure-use-memo-has-non-empty-deps'?: Linter.RuleEntry<[]>
|
|
2963
2887
|
/**
|
|
@@ -2966,10 +2890,25 @@ interface RuleOptions {
|
|
|
2966
2890
|
*/
|
|
2967
2891
|
'react-hooks-extra/no-direct-set-state-in-use-effect'?: Linter.RuleEntry<[]>
|
|
2968
2892
|
/**
|
|
2969
|
-
* disallow direct calls to the 'set' function of 'useState' in '
|
|
2970
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-
|
|
2893
|
+
* disallow direct calls to the 'set' function of 'useState' in 'useEffect'
|
|
2894
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-effect
|
|
2971
2895
|
*/
|
|
2972
2896
|
'react-hooks-extra/no-direct-set-state-in-use-layout-effect'?: Linter.RuleEntry<[]>
|
|
2897
|
+
/**
|
|
2898
|
+
* enforce custom hooks to use at least one other hook inside
|
|
2899
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-redundant-custom-hook
|
|
2900
|
+
*/
|
|
2901
|
+
'react-hooks-extra/no-redundant-custom-hook'?: Linter.RuleEntry<[]>
|
|
2902
|
+
/**
|
|
2903
|
+
* disallow unnecessary usage of 'useCallback'
|
|
2904
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-callback
|
|
2905
|
+
*/
|
|
2906
|
+
'react-hooks-extra/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>
|
|
2907
|
+
/**
|
|
2908
|
+
* disallow unnecessary usage of 'useMemo'
|
|
2909
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
|
|
2910
|
+
*/
|
|
2911
|
+
'react-hooks-extra/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>
|
|
2973
2912
|
/**
|
|
2974
2913
|
* disallow function calls in 'useState' that aren't wrapped in an initializer function
|
|
2975
2914
|
* @see https://eslint-react.xyz/docs/rules/hooks-extra-prefer-use-state-lazy-initialization
|
|
@@ -3660,7 +3599,7 @@ interface RuleOptions {
|
|
|
3660
3599
|
* Enforce the use of `u` or `v` flag on RegExp
|
|
3661
3600
|
* @see https://eslint.org/docs/latest/rules/require-unicode-regexp
|
|
3662
3601
|
*/
|
|
3663
|
-
'require-unicode-regexp'?: Linter.RuleEntry<
|
|
3602
|
+
'require-unicode-regexp'?: Linter.RuleEntry<RequireUnicodeRegexp>
|
|
3664
3603
|
/**
|
|
3665
3604
|
* Require generator functions to contain `yield`
|
|
3666
3605
|
* @see https://eslint.org/docs/latest/rules/require-yield
|
|
@@ -3902,6 +3841,11 @@ interface RuleOptions {
|
|
|
3902
3841
|
* @see https://eslint.style/rules/js/computed-property-spacing
|
|
3903
3842
|
*/
|
|
3904
3843
|
'style/computed-property-spacing'?: Linter.RuleEntry<StyleComputedPropertySpacing>
|
|
3844
|
+
/**
|
|
3845
|
+
* Enforce consistent line breaks after opening and before closing braces
|
|
3846
|
+
* @see https://eslint.style/rules/plus/curly-newline
|
|
3847
|
+
*/
|
|
3848
|
+
'style/curly-newline'?: Linter.RuleEntry<StyleCurlyNewline>
|
|
3905
3849
|
/**
|
|
3906
3850
|
* Enforce consistent newlines before and after dots
|
|
3907
3851
|
* @see https://eslint.style/rules/js/dot-location
|
|
@@ -3966,7 +3910,7 @@ interface RuleOptions {
|
|
|
3966
3910
|
* Enforce closing tag location for multiline JSX
|
|
3967
3911
|
* @see https://eslint.style/rules/jsx/jsx-closing-tag-location
|
|
3968
3912
|
*/
|
|
3969
|
-
'style/jsx-closing-tag-location'?: Linter.RuleEntry<
|
|
3913
|
+
'style/jsx-closing-tag-location'?: Linter.RuleEntry<StyleJsxClosingTagLocation>
|
|
3970
3914
|
/**
|
|
3971
3915
|
* Disallow unnecessary JSX expressions when literals alone are sufficient or enforce JSX expressions on literals in JSX children or attributes
|
|
3972
3916
|
* @see https://eslint.style/rules/jsx/jsx-curly-brace-presence
|
|
@@ -4664,108 +4608,103 @@ interface RuleOptions {
|
|
|
4664
4608
|
'template-tag-spacing'?: Linter.RuleEntry<TemplateTagSpacing>
|
|
4665
4609
|
/**
|
|
4666
4610
|
* require .spec test file pattern
|
|
4667
|
-
* @see https://github.com/
|
|
4611
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/consistent-test-filename.md
|
|
4668
4612
|
*/
|
|
4669
4613
|
'test/consistent-test-filename'?: Linter.RuleEntry<TestConsistentTestFilename>
|
|
4670
4614
|
/**
|
|
4671
4615
|
* enforce using test or it but not both
|
|
4672
|
-
* @see https://github.com/
|
|
4616
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/consistent-test-it.md
|
|
4673
4617
|
*/
|
|
4674
4618
|
'test/consistent-test-it'?: Linter.RuleEntry<TestConsistentTestIt>
|
|
4675
4619
|
/**
|
|
4676
4620
|
* enforce having expectation in test body
|
|
4677
|
-
* @see https://github.com/
|
|
4621
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/expect-expect.md
|
|
4678
4622
|
*/
|
|
4679
4623
|
'test/expect-expect'?: Linter.RuleEntry<TestExpectExpect>
|
|
4680
|
-
/**
|
|
4681
|
-
* Enforce padding around afterAll blocks
|
|
4682
|
-
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/index.md
|
|
4683
|
-
*/
|
|
4684
|
-
'test/index'?: Linter.RuleEntry<[]>
|
|
4685
4624
|
/**
|
|
4686
4625
|
* enforce a maximum number of expect per test
|
|
4687
|
-
* @see https://github.com/
|
|
4626
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/max-expects.md
|
|
4688
4627
|
*/
|
|
4689
4628
|
'test/max-expects'?: Linter.RuleEntry<TestMaxExpects>
|
|
4690
4629
|
/**
|
|
4691
4630
|
* require describe block to be less than set max value or default value
|
|
4692
|
-
* @see https://github.com/
|
|
4631
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/max-nested-describe.md
|
|
4693
4632
|
*/
|
|
4694
4633
|
'test/max-nested-describe'?: Linter.RuleEntry<TestMaxNestedDescribe>
|
|
4695
4634
|
/**
|
|
4696
4635
|
* disallow alias methods
|
|
4697
|
-
* @see https://github.com/
|
|
4636
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-alias-methods.md
|
|
4698
4637
|
*/
|
|
4699
4638
|
'test/no-alias-methods'?: Linter.RuleEntry<[]>
|
|
4700
4639
|
/**
|
|
4701
4640
|
* disallow commented out tests
|
|
4702
|
-
* @see https://github.com/
|
|
4641
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-commented-out-tests.md
|
|
4703
4642
|
*/
|
|
4704
4643
|
'test/no-commented-out-tests'?: Linter.RuleEntry<[]>
|
|
4705
4644
|
/**
|
|
4706
4645
|
* disallow conditional expects
|
|
4707
|
-
* @see https://github.com/
|
|
4646
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-conditional-expect.md
|
|
4708
4647
|
*/
|
|
4709
4648
|
'test/no-conditional-expect'?: Linter.RuleEntry<[]>
|
|
4710
4649
|
/**
|
|
4711
4650
|
* disallow conditional tests
|
|
4712
|
-
* @see https://github.com/
|
|
4651
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-conditional-in-test.md
|
|
4713
4652
|
*/
|
|
4714
4653
|
'test/no-conditional-in-test'?: Linter.RuleEntry<[]>
|
|
4715
4654
|
/**
|
|
4716
4655
|
* disallow conditional tests
|
|
4717
|
-
* @see https://github.com/
|
|
4656
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-conditional-tests.md
|
|
4718
4657
|
*/
|
|
4719
4658
|
'test/no-conditional-tests'?: Linter.RuleEntry<[]>
|
|
4720
4659
|
/**
|
|
4721
4660
|
* disallow disabled tests
|
|
4722
|
-
* @see https://github.com/
|
|
4661
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-disabled-tests.md
|
|
4723
4662
|
*/
|
|
4724
4663
|
'test/no-disabled-tests'?: Linter.RuleEntry<[]>
|
|
4725
4664
|
/**
|
|
4726
4665
|
* disallow using a callback in asynchronous tests and hooks
|
|
4727
|
-
* @see https://github.com/
|
|
4666
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-done-callback.md
|
|
4728
4667
|
* @deprecated
|
|
4729
4668
|
*/
|
|
4730
4669
|
'test/no-done-callback'?: Linter.RuleEntry<[]>
|
|
4731
4670
|
/**
|
|
4732
4671
|
* disallow duplicate hooks and teardown hooks
|
|
4733
|
-
* @see https://github.com/
|
|
4672
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-duplicate-hooks.md
|
|
4734
4673
|
*/
|
|
4735
4674
|
'test/no-duplicate-hooks'?: Linter.RuleEntry<[]>
|
|
4736
4675
|
/**
|
|
4737
4676
|
* disallow focused tests
|
|
4738
|
-
* @see https://github.com/
|
|
4677
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-focused-tests.md
|
|
4739
4678
|
*/
|
|
4740
4679
|
'test/no-focused-tests'?: Linter.RuleEntry<TestNoFocusedTests>
|
|
4741
4680
|
/**
|
|
4742
4681
|
* disallow setup and teardown hooks
|
|
4743
|
-
* @see https://github.com/
|
|
4682
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-hooks.md
|
|
4744
4683
|
*/
|
|
4745
4684
|
'test/no-hooks'?: Linter.RuleEntry<TestNoHooks>
|
|
4746
4685
|
/**
|
|
4747
4686
|
* disallow identical titles
|
|
4748
|
-
* @see https://github.com/
|
|
4687
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-identical-title.md
|
|
4749
4688
|
*/
|
|
4750
4689
|
'test/no-identical-title'?: Linter.RuleEntry<[]>
|
|
4751
4690
|
/**
|
|
4752
4691
|
* disallow importing `node:test`
|
|
4753
|
-
* @see https://github.com/
|
|
4692
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-import-node-test.md
|
|
4754
4693
|
*/
|
|
4755
4694
|
'test/no-import-node-test'?: Linter.RuleEntry<[]>
|
|
4756
4695
|
/**
|
|
4757
4696
|
* disallow string interpolation in snapshots
|
|
4758
|
-
* @see https://github.com/
|
|
4697
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-interpolation-in-snapshots.md
|
|
4759
4698
|
*/
|
|
4760
4699
|
'test/no-interpolation-in-snapshots'?: Linter.RuleEntry<[]>
|
|
4761
4700
|
/**
|
|
4762
4701
|
* disallow large snapshots
|
|
4763
|
-
* @see https://github.com/
|
|
4702
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-large-snapshots.md
|
|
4764
4703
|
*/
|
|
4765
4704
|
'test/no-large-snapshots'?: Linter.RuleEntry<TestNoLargeSnapshots>
|
|
4766
4705
|
/**
|
|
4767
4706
|
* disallow importing from __mocks__ directory
|
|
4768
|
-
* @see https://github.com/
|
|
4707
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-mocks-import.md
|
|
4769
4708
|
*/
|
|
4770
4709
|
'test/no-mocks-import'?: Linter.RuleEntry<[]>
|
|
4771
4710
|
/**
|
|
@@ -4775,162 +4714,207 @@ interface RuleOptions {
|
|
|
4775
4714
|
'test/no-only-tests'?: Linter.RuleEntry<TestNoOnlyTests>
|
|
4776
4715
|
/**
|
|
4777
4716
|
* disallow the use of certain matchers
|
|
4778
|
-
* @see https://github.com/
|
|
4717
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-restricted-matchers.md
|
|
4779
4718
|
*/
|
|
4780
4719
|
'test/no-restricted-matchers'?: Linter.RuleEntry<TestNoRestrictedMatchers>
|
|
4781
4720
|
/**
|
|
4782
4721
|
* disallow specific `vi.` methods
|
|
4783
|
-
* @see https://github.com/
|
|
4722
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-restricted-vi-methods.md
|
|
4784
4723
|
*/
|
|
4785
4724
|
'test/no-restricted-vi-methods'?: Linter.RuleEntry<TestNoRestrictedViMethods>
|
|
4786
4725
|
/**
|
|
4787
4726
|
* disallow using `expect` outside of `it` or `test` blocks
|
|
4788
|
-
* @see https://github.com/
|
|
4727
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-standalone-expect.md
|
|
4789
4728
|
*/
|
|
4790
4729
|
'test/no-standalone-expect'?: Linter.RuleEntry<TestNoStandaloneExpect>
|
|
4791
4730
|
/**
|
|
4792
4731
|
* disallow using `test` as a prefix
|
|
4793
|
-
* @see https://github.com/
|
|
4732
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-test-prefixes.md
|
|
4794
4733
|
*/
|
|
4795
4734
|
'test/no-test-prefixes'?: Linter.RuleEntry<[]>
|
|
4796
4735
|
/**
|
|
4797
4736
|
* disallow return statements in tests
|
|
4798
|
-
* @see https://github.com/
|
|
4737
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-test-return-statement.md
|
|
4799
4738
|
*/
|
|
4800
4739
|
'test/no-test-return-statement'?: Linter.RuleEntry<[]>
|
|
4740
|
+
/**
|
|
4741
|
+
* Enforce padding around `afterAll` blocks
|
|
4742
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-after-all-blocks.md
|
|
4743
|
+
*/
|
|
4744
|
+
'test/padding-around-after-all-blocks'?: Linter.RuleEntry<[]>
|
|
4745
|
+
/**
|
|
4746
|
+
* Enforce padding around `afterEach` blocks
|
|
4747
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-after-each-blocks.md
|
|
4748
|
+
*/
|
|
4749
|
+
'test/padding-around-after-each-blocks'?: Linter.RuleEntry<[]>
|
|
4750
|
+
/**
|
|
4751
|
+
* Enforce padding around vitest functions
|
|
4752
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-all.md
|
|
4753
|
+
*/
|
|
4754
|
+
'test/padding-around-all'?: Linter.RuleEntry<[]>
|
|
4755
|
+
/**
|
|
4756
|
+
* Enforce padding around `beforeAll` blocks
|
|
4757
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-before-all-blocks.md
|
|
4758
|
+
*/
|
|
4759
|
+
'test/padding-around-before-all-blocks'?: Linter.RuleEntry<[]>
|
|
4760
|
+
/**
|
|
4761
|
+
* Enforce padding around `beforeEach` blocks
|
|
4762
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-before-each-blocks.md
|
|
4763
|
+
*/
|
|
4764
|
+
'test/padding-around-before-each-blocks'?: Linter.RuleEntry<[]>
|
|
4765
|
+
/**
|
|
4766
|
+
* Enforce padding around `describe` blocks
|
|
4767
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-describe-blocks.md
|
|
4768
|
+
*/
|
|
4769
|
+
'test/padding-around-describe-blocks'?: Linter.RuleEntry<[]>
|
|
4770
|
+
/**
|
|
4771
|
+
* Enforce padding around `expect` groups
|
|
4772
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-expect-groups.md
|
|
4773
|
+
*/
|
|
4774
|
+
'test/padding-around-expect-groups'?: Linter.RuleEntry<[]>
|
|
4775
|
+
/**
|
|
4776
|
+
* Enforce padding around afterAll blocks
|
|
4777
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-test-blocks.md
|
|
4778
|
+
*/
|
|
4779
|
+
'test/padding-around-test-blocks'?: Linter.RuleEntry<[]>
|
|
4801
4780
|
/**
|
|
4802
4781
|
* enforce using `toBeCalledWith()` or `toHaveBeenCalledWith()`
|
|
4803
|
-
* @see https://github.com/
|
|
4782
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-called-with.md
|
|
4804
4783
|
*/
|
|
4805
4784
|
'test/prefer-called-with'?: Linter.RuleEntry<[]>
|
|
4806
4785
|
/**
|
|
4807
4786
|
* enforce using the built-in comparison matchers
|
|
4808
|
-
* @see https://github.com/
|
|
4787
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-comparison-matcher.md
|
|
4809
4788
|
*/
|
|
4810
4789
|
'test/prefer-comparison-matcher'?: Linter.RuleEntry<[]>
|
|
4811
4790
|
/**
|
|
4812
4791
|
* enforce using `each` rather than manual loops
|
|
4813
|
-
* @see https://github.com/
|
|
4792
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-each.md
|
|
4814
4793
|
*/
|
|
4815
4794
|
'test/prefer-each'?: Linter.RuleEntry<[]>
|
|
4816
4795
|
/**
|
|
4817
4796
|
* enforce using the built-in quality matchers
|
|
4818
|
-
* @see https://github.com/
|
|
4797
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-equality-matcher.md
|
|
4819
4798
|
*/
|
|
4820
4799
|
'test/prefer-equality-matcher'?: Linter.RuleEntry<[]>
|
|
4821
4800
|
/**
|
|
4822
4801
|
* enforce using expect assertions instead of callbacks
|
|
4823
|
-
* @see https://github.com/
|
|
4802
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-assertions.md
|
|
4824
4803
|
*/
|
|
4825
4804
|
'test/prefer-expect-assertions'?: Linter.RuleEntry<TestPreferExpectAssertions>
|
|
4826
4805
|
/**
|
|
4827
4806
|
* enforce using `expect().resolves` over `expect(await ...)` syntax
|
|
4828
|
-
* @see https://github.com/
|
|
4807
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-resolves.md
|
|
4829
4808
|
*/
|
|
4830
4809
|
'test/prefer-expect-resolves'?: Linter.RuleEntry<[]>
|
|
4831
4810
|
/**
|
|
4832
4811
|
* enforce having hooks in consistent order
|
|
4833
|
-
* @see https://github.com/
|
|
4812
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-hooks-in-order.md
|
|
4834
4813
|
*/
|
|
4835
4814
|
'test/prefer-hooks-in-order'?: Linter.RuleEntry<[]>
|
|
4836
4815
|
/**
|
|
4837
4816
|
* enforce having hooks before any test cases
|
|
4838
|
-
* @see https://github.com/
|
|
4817
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-hooks-on-top.md
|
|
4839
4818
|
*/
|
|
4840
4819
|
'test/prefer-hooks-on-top'?: Linter.RuleEntry<[]>
|
|
4841
4820
|
/**
|
|
4842
4821
|
* enforce lowercase titles
|
|
4843
|
-
* @see https://github.com/
|
|
4822
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-lowercase-title.md
|
|
4844
4823
|
*/
|
|
4845
4824
|
'test/prefer-lowercase-title'?: Linter.RuleEntry<TestPreferLowercaseTitle>
|
|
4846
4825
|
/**
|
|
4847
4826
|
* enforce mock resolved/rejected shorthands for promises
|
|
4848
|
-
* @see https://github.com/
|
|
4827
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-mock-promise-shorthand.md
|
|
4849
4828
|
*/
|
|
4850
4829
|
'test/prefer-mock-promise-shorthand'?: Linter.RuleEntry<[]>
|
|
4851
4830
|
/**
|
|
4852
4831
|
* enforce including a hint with external snapshots
|
|
4853
|
-
* @see https://github.com/
|
|
4832
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-snapshot-hint.md
|
|
4854
4833
|
*/
|
|
4855
4834
|
'test/prefer-snapshot-hint'?: Linter.RuleEntry<TestPreferSnapshotHint>
|
|
4856
4835
|
/**
|
|
4857
4836
|
* enforce using `vi.spyOn`
|
|
4858
|
-
* @see https://github.com/
|
|
4837
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-spy-on.md
|
|
4859
4838
|
*/
|
|
4860
4839
|
'test/prefer-spy-on'?: Linter.RuleEntry<[]>
|
|
4861
4840
|
/**
|
|
4862
4841
|
* enforce strict equal over equal
|
|
4863
|
-
* @see https://github.com/
|
|
4842
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-strict-equal.md
|
|
4864
4843
|
*/
|
|
4865
4844
|
'test/prefer-strict-equal'?: Linter.RuleEntry<[]>
|
|
4866
4845
|
/**
|
|
4867
4846
|
* enforce using toBe()
|
|
4868
|
-
* @see https://github.com/
|
|
4847
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-to-be.md
|
|
4869
4848
|
*/
|
|
4870
4849
|
'test/prefer-to-be'?: Linter.RuleEntry<[]>
|
|
4871
4850
|
/**
|
|
4872
4851
|
* enforce using toBeFalsy()
|
|
4873
|
-
* @see https://github.com/
|
|
4852
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-to-be-falsy.md
|
|
4874
4853
|
*/
|
|
4875
4854
|
'test/prefer-to-be-falsy'?: Linter.RuleEntry<[]>
|
|
4876
4855
|
/**
|
|
4877
4856
|
* enforce using toBeObject()
|
|
4878
|
-
* @see https://github.com/
|
|
4857
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-to-be-object.md
|
|
4879
4858
|
*/
|
|
4880
4859
|
'test/prefer-to-be-object'?: Linter.RuleEntry<[]>
|
|
4881
4860
|
/**
|
|
4882
4861
|
* enforce using `toBeTruthy`
|
|
4883
|
-
* @see https://github.com/
|
|
4862
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-to-be-truthy.md
|
|
4884
4863
|
*/
|
|
4885
4864
|
'test/prefer-to-be-truthy'?: Linter.RuleEntry<[]>
|
|
4886
4865
|
/**
|
|
4887
4866
|
* enforce using toContain()
|
|
4888
|
-
* @see https://github.com/
|
|
4867
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-to-contain.md
|
|
4889
4868
|
*/
|
|
4890
4869
|
'test/prefer-to-contain'?: Linter.RuleEntry<[]>
|
|
4891
4870
|
/**
|
|
4892
4871
|
* enforce using toHaveLength()
|
|
4893
|
-
* @see https://github.com/
|
|
4872
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-to-have-length.md
|
|
4894
4873
|
*/
|
|
4895
4874
|
'test/prefer-to-have-length'?: Linter.RuleEntry<[]>
|
|
4896
4875
|
/**
|
|
4897
4876
|
* enforce using `test.todo`
|
|
4898
|
-
* @see https://github.com/
|
|
4877
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-todo.md
|
|
4899
4878
|
*/
|
|
4900
4879
|
'test/prefer-todo'?: Linter.RuleEntry<[]>
|
|
4880
|
+
/**
|
|
4881
|
+
* Prefer `vi.mocked()` over `fn as Mock`
|
|
4882
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-vi-mocked.md
|
|
4883
|
+
*/
|
|
4884
|
+
'test/prefer-vi-mocked'?: Linter.RuleEntry<[]>
|
|
4901
4885
|
/**
|
|
4902
4886
|
* require setup and teardown to be within a hook
|
|
4903
|
-
* @see https://github.com/
|
|
4887
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-hook.md
|
|
4904
4888
|
*/
|
|
4905
4889
|
'test/require-hook'?: Linter.RuleEntry<TestRequireHook>
|
|
4906
4890
|
/**
|
|
4907
4891
|
* require local Test Context for concurrent snapshot tests
|
|
4908
|
-
* @see https://github.com/
|
|
4892
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-local-test-context-for-concurrent-snapshots.md
|
|
4909
4893
|
*/
|
|
4910
4894
|
'test/require-local-test-context-for-concurrent-snapshots'?: Linter.RuleEntry<[]>
|
|
4911
4895
|
/**
|
|
4912
4896
|
* require toThrow() to be called with an error message
|
|
4913
|
-
* @see https://github.com/
|
|
4897
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-to-throw-message.md
|
|
4914
4898
|
*/
|
|
4915
4899
|
'test/require-to-throw-message'?: Linter.RuleEntry<[]>
|
|
4916
4900
|
/**
|
|
4917
4901
|
* enforce that all tests are in a top-level describe
|
|
4918
|
-
* @see https://github.com/
|
|
4902
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-top-level-describe.md
|
|
4919
4903
|
*/
|
|
4920
4904
|
'test/require-top-level-describe'?: Linter.RuleEntry<TestRequireTopLevelDescribe>
|
|
4921
4905
|
/**
|
|
4922
4906
|
* enforce valid describe callback
|
|
4923
|
-
* @see https://github.com/
|
|
4907
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-describe-callback.md
|
|
4924
4908
|
*/
|
|
4925
4909
|
'test/valid-describe-callback'?: Linter.RuleEntry<[]>
|
|
4926
4910
|
/**
|
|
4927
4911
|
* enforce valid `expect()` usage
|
|
4928
|
-
* @see https://github.com/
|
|
4912
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-expect.md
|
|
4929
4913
|
*/
|
|
4930
4914
|
'test/valid-expect'?: Linter.RuleEntry<TestValidExpect>
|
|
4931
4915
|
/**
|
|
4932
4916
|
* enforce valid titles
|
|
4933
|
-
* @see https://github.com/
|
|
4917
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-title.md
|
|
4934
4918
|
*/
|
|
4935
4919
|
'test/valid-title'?: Linter.RuleEntry<TestValidTitle>
|
|
4936
4920
|
/**
|
|
@@ -6537,7 +6521,7 @@ interface RuleOptions {
|
|
|
6537
6521
|
*/
|
|
6538
6522
|
'vue/define-emits-declaration'?: Linter.RuleEntry<VueDefineEmitsDeclaration>
|
|
6539
6523
|
/**
|
|
6540
|
-
* enforce order of
|
|
6524
|
+
* enforce order of compiler macros (`defineProps`, `defineEmits`, etc.)
|
|
6541
6525
|
* @see https://eslint.vuejs.org/rules/define-macros-order.html
|
|
6542
6526
|
*/
|
|
6543
6527
|
'vue/define-macros-order'?: Linter.RuleEntry<VueDefineMacrosOrder>
|
|
@@ -6632,7 +6616,7 @@ interface RuleOptions {
|
|
|
6632
6616
|
*/
|
|
6633
6617
|
'vue/jsx-uses-vars'?: Linter.RuleEntry<[]>
|
|
6634
6618
|
/**
|
|
6635
|
-
* Enforce consistent spacing between
|
|
6619
|
+
* Enforce consistent spacing between property names and type annotations in types and interfaces in `<template>`
|
|
6636
6620
|
* @see https://eslint.vuejs.org/rules/key-spacing.html
|
|
6637
6621
|
*/
|
|
6638
6622
|
'vue/key-spacing'?: Linter.RuleEntry<VueKeySpacing>
|
|
@@ -6666,6 +6650,16 @@ interface RuleOptions {
|
|
|
6666
6650
|
* @see https://eslint.vuejs.org/rules/max-lines-per-block.html
|
|
6667
6651
|
*/
|
|
6668
6652
|
'vue/max-lines-per-block'?: Linter.RuleEntry<VueMaxLinesPerBlock>
|
|
6653
|
+
/**
|
|
6654
|
+
* enforce maximum number of props in Vue component
|
|
6655
|
+
* @see https://eslint.vuejs.org/rules/max-props.html
|
|
6656
|
+
*/
|
|
6657
|
+
'vue/max-props'?: Linter.RuleEntry<VueMaxProps>
|
|
6658
|
+
/**
|
|
6659
|
+
* enforce maximum depth of template
|
|
6660
|
+
* @see https://eslint.vuejs.org/rules/max-template-depth.html
|
|
6661
|
+
*/
|
|
6662
|
+
'vue/max-template-depth'?: Linter.RuleEntry<VueMaxTemplateDepth>
|
|
6669
6663
|
/**
|
|
6670
6664
|
* require component names to be always multi-word
|
|
6671
6665
|
* @see https://eslint.vuejs.org/rules/multi-word-component-names.html
|
|
@@ -6722,7 +6716,7 @@ interface RuleOptions {
|
|
|
6722
6716
|
*/
|
|
6723
6717
|
'vue/no-child-content'?: Linter.RuleEntry<VueNoChildContent>
|
|
6724
6718
|
/**
|
|
6725
|
-
* disallow accessing computed properties in `data
|
|
6719
|
+
* disallow accessing computed properties in `data`
|
|
6726
6720
|
* @see https://eslint.vuejs.org/rules/no-computed-properties-in-data.html
|
|
6727
6721
|
*/
|
|
6728
6722
|
'vue/no-computed-properties-in-data'?: Linter.RuleEntry<[]>
|
|
@@ -7270,7 +7264,7 @@ interface RuleOptions {
|
|
|
7270
7264
|
*/
|
|
7271
7265
|
'vue/padding-lines-in-component-definition'?: Linter.RuleEntry<VuePaddingLinesInComponentDefinition>
|
|
7272
7266
|
/**
|
|
7273
|
-
* enforce use of `defineOptions` instead of default export
|
|
7267
|
+
* enforce use of `defineOptions` instead of default export
|
|
7274
7268
|
* @see https://eslint.vuejs.org/rules/prefer-define-options.html
|
|
7275
7269
|
*/
|
|
7276
7270
|
'vue/prefer-define-options'?: Linter.RuleEntry<[]>
|
|
@@ -7305,7 +7299,7 @@ interface RuleOptions {
|
|
|
7305
7299
|
*/
|
|
7306
7300
|
'vue/prop-name-casing'?: Linter.RuleEntry<VuePropNameCasing>
|
|
7307
7301
|
/**
|
|
7308
|
-
* Require quotes around object literal property names in `<template>`
|
|
7302
|
+
* Require quotes around object literal, type literal, interfaces and enums property names in `<template>`
|
|
7309
7303
|
* @see https://eslint.vuejs.org/rules/quote-props.html
|
|
7310
7304
|
*/
|
|
7311
7305
|
'vue/quote-props'?: Linter.RuleEntry<VueQuoteProps>
|
|
@@ -7314,6 +7308,11 @@ interface RuleOptions {
|
|
|
7314
7308
|
* @see https://eslint.vuejs.org/rules/require-component-is.html
|
|
7315
7309
|
*/
|
|
7316
7310
|
'vue/require-component-is'?: Linter.RuleEntry<[]>
|
|
7311
|
+
/**
|
|
7312
|
+
* require components to be the default export
|
|
7313
|
+
* @see https://eslint.vuejs.org/rules/require-default-export.html
|
|
7314
|
+
*/
|
|
7315
|
+
'vue/require-default-export'?: Linter.RuleEntry<[]>
|
|
7317
7316
|
/**
|
|
7318
7317
|
* require default value for props
|
|
7319
7318
|
* @see https://eslint.vuejs.org/rules/require-default-prop.html
|
|
@@ -7383,7 +7382,7 @@ interface RuleOptions {
|
|
|
7383
7382
|
* require control the display of the content inside `<transition>`
|
|
7384
7383
|
* @see https://eslint.vuejs.org/rules/require-toggle-inside-transition.html
|
|
7385
7384
|
*/
|
|
7386
|
-
'vue/require-toggle-inside-transition'?: Linter.RuleEntry<
|
|
7385
|
+
'vue/require-toggle-inside-transition'?: Linter.RuleEntry<VueRequireToggleInsideTransition>
|
|
7387
7386
|
/**
|
|
7388
7387
|
* enforce adding type declarations to object props
|
|
7389
7388
|
* @see https://eslint.vuejs.org/rules/require-typed-object-prop.html
|
|
@@ -7917,6 +7916,7 @@ type CommaStyle = []|[("first" | "last")]|[("first" | "last"), {
|
|
|
7917
7916
|
type Complexity = []|[(number | {
|
|
7918
7917
|
maximum?: number
|
|
7919
7918
|
max?: number
|
|
7919
|
+
variant?: ("classic" | "modified")
|
|
7920
7920
|
})]
|
|
7921
7921
|
// ----- computed-property-spacing -----
|
|
7922
7922
|
type ComputedPropertySpacing = []|[("always" | "never")]|[("always" | "never"), {
|
|
@@ -8165,6 +8165,7 @@ type ImportNoExtraneousDependencies = []|[{
|
|
|
8165
8165
|
packageDir?: (string | unknown[])
|
|
8166
8166
|
includeInternal?: boolean
|
|
8167
8167
|
includeTypes?: boolean
|
|
8168
|
+
whitelist?: unknown[]
|
|
8168
8169
|
}]
|
|
8169
8170
|
// ----- import/no-import-module-exports -----
|
|
8170
8171
|
type ImportNoImportModuleExports = []|[{
|
|
@@ -8201,6 +8202,11 @@ type ImportNoRelativeParentImports = []|[{
|
|
|
8201
8202
|
|
|
8202
8203
|
ignore?: [string, ...(string)[]]
|
|
8203
8204
|
}]
|
|
8205
|
+
// ----- import/no-rename-default -----
|
|
8206
|
+
type ImportNoRenameDefault = []|[{
|
|
8207
|
+
commonjs?: boolean
|
|
8208
|
+
preventRenamingBindings?: boolean
|
|
8209
|
+
}]
|
|
8204
8210
|
// ----- import/no-restricted-paths -----
|
|
8205
8211
|
type ImportNoRestrictedPaths = []|[{
|
|
8206
8212
|
|
|
@@ -8660,6 +8666,7 @@ type JsdocRequireParam = []|[{
|
|
|
8660
8666
|
enableRestElementFixer?: boolean
|
|
8661
8667
|
enableRootFixer?: boolean
|
|
8662
8668
|
exemptedBy?: string[]
|
|
8669
|
+
ignoreWhenAllParamsMissing?: boolean
|
|
8663
8670
|
unnamedRootBase?: string[]
|
|
8664
8671
|
useDefaultObjectProperties?: boolean
|
|
8665
8672
|
}]
|
|
@@ -9059,6 +9066,11 @@ type JsoncSpaceUnaryOps = []|[{
|
|
|
9059
9066
|
}]
|
|
9060
9067
|
// ----- jsx-quotes -----
|
|
9061
9068
|
type JsxQuotes = []|[("prefer-single" | "prefer-double")]
|
|
9069
|
+
// ----- jun/consistent-chaining -----
|
|
9070
|
+
type JunConsistentChaining = []|[{
|
|
9071
|
+
|
|
9072
|
+
allowLeadingPropertyAccess?: boolean
|
|
9073
|
+
}]
|
|
9062
9074
|
// ----- jun/consistent-list-newline -----
|
|
9063
9075
|
type JunConsistentListNewline = []|[{
|
|
9064
9076
|
ArrayExpression?: boolean
|
|
@@ -9474,6 +9486,14 @@ type LinesBetweenClassMembers = []|[({
|
|
|
9474
9486
|
type LogicalAssignmentOperators = (([]|["always"]|["always", {
|
|
9475
9487
|
enforceForIfStatements?: boolean
|
|
9476
9488
|
}] | ["never"]) & unknown[])
|
|
9489
|
+
// ----- markdown/fenced-code-language -----
|
|
9490
|
+
type MarkdownFencedCodeLanguage = []|[{
|
|
9491
|
+
required?: string[]
|
|
9492
|
+
}]
|
|
9493
|
+
// ----- markdown/no-html -----
|
|
9494
|
+
type MarkdownNoHtml = []|[{
|
|
9495
|
+
allowed?: string[]
|
|
9496
|
+
}]
|
|
9477
9497
|
// ----- max-classes-per-file -----
|
|
9478
9498
|
type MaxClassesPerFile = []|[(number | {
|
|
9479
9499
|
ignoreExpressions?: boolean
|
|
@@ -10012,7 +10032,7 @@ type NodeHashbang = []|[{
|
|
|
10012
10032
|
// ----- node/no-deprecated-api -----
|
|
10013
10033
|
type NodeNoDeprecatedApi = []|[{
|
|
10014
10034
|
version?: string
|
|
10015
|
-
ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext")[]
|
|
10035
|
+
ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "repl.REPLServer" | "repl.Recoverable" | "repl.REPL_MODE_MAGIC" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext" | "zlib.BrotliCompress()" | "zlib.BrotliDecompress()" | "zlib.Deflate()" | "zlib.DeflateRaw()" | "zlib.Gunzip()" | "zlib.Gzip()" | "zlib.Inflate()" | "zlib.InflateRaw()" | "zlib.Unzip()")[]
|
|
10016
10036
|
ignoreGlobalItems?: ("Buffer()" | "new Buffer()" | "COUNTER_NET_SERVER_CONNECTION" | "COUNTER_NET_SERVER_CONNECTION_CLOSE" | "COUNTER_HTTP_SERVER_REQUEST" | "COUNTER_HTTP_SERVER_RESPONSE" | "COUNTER_HTTP_CLIENT_REQUEST" | "COUNTER_HTTP_CLIENT_RESPONSE" | "GLOBAL" | "Intl.v8BreakIterator" | "require.extensions" | "root" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport")[]
|
|
10017
10037
|
ignoreIndirectDependencies?: boolean
|
|
10018
10038
|
}]
|
|
@@ -10070,6 +10090,7 @@ type NodeNoMissingImport = []|[{
|
|
|
10070
10090
|
allowModules?: string[]
|
|
10071
10091
|
resolvePaths?: string[]
|
|
10072
10092
|
tryExtensions?: string[]
|
|
10093
|
+
ignoreTypeImport?: boolean
|
|
10073
10094
|
tsconfigPath?: string
|
|
10074
10095
|
typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
|
|
10075
10096
|
}]
|
|
@@ -10086,6 +10107,10 @@ type NodeNoMixedRequires = []|[(boolean | {
|
|
|
10086
10107
|
grouping?: boolean
|
|
10087
10108
|
allowCall?: boolean
|
|
10088
10109
|
})]
|
|
10110
|
+
// ----- node/no-process-env -----
|
|
10111
|
+
type NodeNoProcessEnv = []|[{
|
|
10112
|
+
allowedVariables?: string[]
|
|
10113
|
+
}]
|
|
10089
10114
|
// ----- node/no-restricted-import -----
|
|
10090
10115
|
type NodeNoRestrictedImport = []|[(string | {
|
|
10091
10116
|
name: (string | string[])
|
|
@@ -10180,7 +10205,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
10180
10205
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
10181
10206
|
version?: string
|
|
10182
10207
|
allowExperimental?: boolean
|
|
10183
|
-
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CustomEvent" | "Event" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.createRequire" | "module.createRequireFromPath" | "module.isBuiltin" | "module.register" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.test.isSea" | "sea.test.getAsset" | "sea.test.getAssetAsBlob" | "sea.test.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.run" | "test.skip" | "test.todo" | "test.only" | "test.describe" | "test.describe.skip" | "test.describe.todo" | "test.describe.only" | "test.it" | "test.it.skip" | "test.it.todo" | "test.it.only" | "test.suite" | "test.suite.skip" | "test.suite.todo" | "test.suite.only" | "test.before" | "test.after" | "test.beforeEach" | "test.afterEach" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.MockFunctionContext" | "test.MockModuleContext" | "test.MockTracker" | "test.MockTimers" | "test.TestsStream" | "test.TestContext" | "test.SuiteContext" | "test.test.run" | "test.test.skip" | "test.test.todo" | "test.test.only" | "test.test.describe" | "test.test.it" | "test.test.suite" | "test.test.before" | "test.test.after" | "test.test.beforeEach" | "test.test.afterEach" | "test.test.snapshot" | "test.test.MockFunctionContext" | "test.test.MockModuleContext" | "test.test.MockTracker" | "test.test.MockTimers" | "test.test.TestsStream" | "test.test.TestContext" | "test.test.SuiteContext" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress" | "zlib.BrotliDecompress" | "zlib.Deflate" | "zlib.DeflateRaw" | "zlib.Gunzip" | "zlib.Gzip" | "zlib.Inflate" | "zlib.InflateRaw" | "zlib.Unzip" | "zlib")[]
|
|
10208
|
+
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CustomEvent" | "Event" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.Network.loadingFinished" | "inspector.Network.loadingFailed" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.test.isSea" | "sea.test.getAsset" | "sea.test.getAssetAsBlob" | "sea.test.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.run" | "test.skip" | "test.todo" | "test.only" | "test.describe" | "test.describe.skip" | "test.describe.todo" | "test.describe.only" | "test.it" | "test.it.skip" | "test.it.todo" | "test.it.only" | "test.suite" | "test.suite.skip" | "test.suite.todo" | "test.suite.only" | "test.before" | "test.after" | "test.beforeEach" | "test.afterEach" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.MockFunctionContext" | "test.MockModuleContext" | "test.MockTracker" | "test.MockTimers" | "test.TestsStream" | "test.TestContext" | "test.SuiteContext" | "test.test.run" | "test.test.skip" | "test.test.todo" | "test.test.only" | "test.test.describe" | "test.test.it" | "test.test.suite" | "test.test.before" | "test.test.after" | "test.test.beforeEach" | "test.test.afterEach" | "test.test.snapshot" | "test.test.MockFunctionContext" | "test.test.MockModuleContext" | "test.test.MockTracker" | "test.test.MockTimers" | "test.test.TestsStream" | "test.test.TestContext" | "test.test.SuiteContext" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
|
|
10184
10209
|
}]
|
|
10185
10210
|
// ----- node/prefer-global/buffer -----
|
|
10186
10211
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -10327,9 +10352,15 @@ type PerfectionistSortArrayIncludes = []|[{
|
|
|
10327
10352
|
|
|
10328
10353
|
order?: ("asc" | "desc")
|
|
10329
10354
|
|
|
10355
|
+
matcher?: ("minimatch" | "regex")
|
|
10356
|
+
|
|
10330
10357
|
ignoreCase?: boolean
|
|
10331
10358
|
|
|
10332
10359
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
10360
|
+
|
|
10361
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10362
|
+
|
|
10363
|
+
partitionByNewLine?: boolean
|
|
10333
10364
|
}]
|
|
10334
10365
|
// ----- perfectionist/sort-astro-attributes -----
|
|
10335
10366
|
type PerfectionistSortAstroAttributes = []|[{
|
|
@@ -10338,6 +10369,8 @@ type PerfectionistSortAstroAttributes = []|[{
|
|
|
10338
10369
|
|
|
10339
10370
|
order?: ("asc" | "desc")
|
|
10340
10371
|
|
|
10372
|
+
matcher?: ("minimatch" | "regex")
|
|
10373
|
+
|
|
10341
10374
|
ignoreCase?: boolean
|
|
10342
10375
|
|
|
10343
10376
|
groups?: (string | string[])[]
|
|
@@ -10353,15 +10386,49 @@ type PerfectionistSortClasses = []|[{
|
|
|
10353
10386
|
|
|
10354
10387
|
order?: ("asc" | "desc")
|
|
10355
10388
|
|
|
10389
|
+
matcher?: ("minimatch" | "regex")
|
|
10390
|
+
|
|
10356
10391
|
ignoreCase?: boolean
|
|
10357
10392
|
|
|
10358
10393
|
partitionByComment?: (string[] | boolean | string)
|
|
10359
10394
|
|
|
10360
10395
|
groups?: (string | string[])[]
|
|
10361
10396
|
|
|
10362
|
-
customGroups?: {
|
|
10397
|
+
customGroups?: ({
|
|
10363
10398
|
[k: string]: (string | string[]) | undefined
|
|
10364
|
-
}
|
|
10399
|
+
} | ({
|
|
10400
|
+
|
|
10401
|
+
groupName?: string
|
|
10402
|
+
|
|
10403
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10404
|
+
|
|
10405
|
+
order?: ("desc" | "asc")
|
|
10406
|
+
anyOf?: {
|
|
10407
|
+
|
|
10408
|
+
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
10409
|
+
|
|
10410
|
+
modifiers?: ("protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
10411
|
+
|
|
10412
|
+
elementNamePattern?: string
|
|
10413
|
+
|
|
10414
|
+
decoratorNamePattern?: string
|
|
10415
|
+
}[]
|
|
10416
|
+
} | {
|
|
10417
|
+
|
|
10418
|
+
groupName?: string
|
|
10419
|
+
|
|
10420
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10421
|
+
|
|
10422
|
+
order?: ("desc" | "asc")
|
|
10423
|
+
|
|
10424
|
+
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
10425
|
+
|
|
10426
|
+
modifiers?: ("protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
10427
|
+
|
|
10428
|
+
elementNamePattern?: string
|
|
10429
|
+
|
|
10430
|
+
decoratorNamePattern?: string
|
|
10431
|
+
})[])
|
|
10365
10432
|
}]
|
|
10366
10433
|
// ----- perfectionist/sort-enums -----
|
|
10367
10434
|
type PerfectionistSortEnums = []|[{
|
|
@@ -10370,6 +10437,8 @@ type PerfectionistSortEnums = []|[{
|
|
|
10370
10437
|
|
|
10371
10438
|
order?: ("asc" | "desc")
|
|
10372
10439
|
|
|
10440
|
+
matcher?: ("minimatch" | "regex")
|
|
10441
|
+
|
|
10373
10442
|
ignoreCase?: boolean
|
|
10374
10443
|
|
|
10375
10444
|
sortByValue?: boolean
|
|
@@ -10377,6 +10446,8 @@ type PerfectionistSortEnums = []|[{
|
|
|
10377
10446
|
forceNumericSort?: boolean
|
|
10378
10447
|
|
|
10379
10448
|
partitionByComment?: (string[] | boolean | string)
|
|
10449
|
+
|
|
10450
|
+
partitionByNewLine?: boolean
|
|
10380
10451
|
}]
|
|
10381
10452
|
// ----- perfectionist/sort-exports -----
|
|
10382
10453
|
type PerfectionistSortExports = []|[{
|
|
@@ -10385,7 +10456,15 @@ type PerfectionistSortExports = []|[{
|
|
|
10385
10456
|
|
|
10386
10457
|
order?: ("asc" | "desc")
|
|
10387
10458
|
|
|
10459
|
+
matcher?: ("minimatch" | "regex")
|
|
10460
|
+
|
|
10388
10461
|
ignoreCase?: boolean
|
|
10462
|
+
|
|
10463
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10464
|
+
|
|
10465
|
+
partitionByNewLine?: boolean
|
|
10466
|
+
|
|
10467
|
+
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10389
10468
|
}]
|
|
10390
10469
|
// ----- perfectionist/sort-imports -----
|
|
10391
10470
|
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
@@ -10395,10 +10474,14 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
10395
10474
|
|
|
10396
10475
|
order?: ("asc" | "desc")
|
|
10397
10476
|
|
|
10477
|
+
matcher?: ("minimatch" | "regex")
|
|
10478
|
+
|
|
10398
10479
|
ignoreCase?: boolean
|
|
10399
10480
|
|
|
10400
10481
|
internalPattern?: string[]
|
|
10401
10482
|
|
|
10483
|
+
sortSideEffects?: boolean
|
|
10484
|
+
|
|
10402
10485
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10403
10486
|
|
|
10404
10487
|
maxLineLength?: number
|
|
@@ -10430,10 +10513,14 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
10430
10513
|
|
|
10431
10514
|
order?: ("asc" | "desc")
|
|
10432
10515
|
|
|
10516
|
+
matcher?: ("minimatch" | "regex")
|
|
10517
|
+
|
|
10433
10518
|
ignoreCase?: boolean
|
|
10434
10519
|
|
|
10435
10520
|
ignorePattern?: string[]
|
|
10436
10521
|
|
|
10522
|
+
partitionByComment?: (boolean | string | string[])
|
|
10523
|
+
|
|
10437
10524
|
partitionByNewLine?: boolean
|
|
10438
10525
|
|
|
10439
10526
|
groupKind?: ("mixed" | "optional-first" | "required-first")
|
|
@@ -10451,9 +10538,15 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
10451
10538
|
|
|
10452
10539
|
order?: ("asc" | "desc")
|
|
10453
10540
|
|
|
10541
|
+
matcher?: ("minimatch" | "regex")
|
|
10542
|
+
|
|
10454
10543
|
ignoreCase?: boolean
|
|
10455
10544
|
|
|
10456
10545
|
groups?: (string | string[])[]
|
|
10546
|
+
|
|
10547
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10548
|
+
|
|
10549
|
+
partitionByNewLine?: boolean
|
|
10457
10550
|
}]
|
|
10458
10551
|
// ----- perfectionist/sort-jsx-props -----
|
|
10459
10552
|
type PerfectionistSortJsxProps = []|[{
|
|
@@ -10462,6 +10555,8 @@ type PerfectionistSortJsxProps = []|[{
|
|
|
10462
10555
|
|
|
10463
10556
|
order?: ("asc" | "desc")
|
|
10464
10557
|
|
|
10558
|
+
matcher?: ("minimatch" | "regex")
|
|
10559
|
+
|
|
10465
10560
|
ignoreCase?: boolean
|
|
10466
10561
|
|
|
10467
10562
|
ignorePattern?: string[]
|
|
@@ -10479,7 +10574,13 @@ type PerfectionistSortMaps = []|[{
|
|
|
10479
10574
|
|
|
10480
10575
|
order?: ("asc" | "desc")
|
|
10481
10576
|
|
|
10577
|
+
matcher?: ("minimatch" | "regex")
|
|
10578
|
+
|
|
10482
10579
|
ignoreCase?: boolean
|
|
10580
|
+
|
|
10581
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10582
|
+
|
|
10583
|
+
partitionByNewLine?: boolean
|
|
10483
10584
|
}]
|
|
10484
10585
|
// ----- perfectionist/sort-named-exports -----
|
|
10485
10586
|
type PerfectionistSortNamedExports = []|[{
|
|
@@ -10488,9 +10589,15 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
10488
10589
|
|
|
10489
10590
|
order?: ("asc" | "desc")
|
|
10490
10591
|
|
|
10592
|
+
matcher?: ("minimatch" | "regex")
|
|
10593
|
+
|
|
10491
10594
|
ignoreCase?: boolean
|
|
10492
10595
|
|
|
10493
10596
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10597
|
+
|
|
10598
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10599
|
+
|
|
10600
|
+
partitionByNewLine?: boolean
|
|
10494
10601
|
}]
|
|
10495
10602
|
// ----- perfectionist/sort-named-imports -----
|
|
10496
10603
|
type PerfectionistSortNamedImports = []|[{
|
|
@@ -10499,21 +10606,31 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
10499
10606
|
|
|
10500
10607
|
order?: ("asc" | "desc")
|
|
10501
10608
|
|
|
10609
|
+
matcher?: ("minimatch" | "regex")
|
|
10610
|
+
|
|
10502
10611
|
ignoreCase?: boolean
|
|
10503
10612
|
|
|
10504
10613
|
ignoreAlias?: boolean
|
|
10505
10614
|
|
|
10506
10615
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10507
|
-
|
|
10508
|
-
|
|
10509
|
-
|
|
10616
|
+
|
|
10617
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10618
|
+
|
|
10619
|
+
partitionByNewLine?: boolean
|
|
10620
|
+
}]
|
|
10621
|
+
// ----- perfectionist/sort-object-types -----
|
|
10622
|
+
type PerfectionistSortObjectTypes = []|[{
|
|
10510
10623
|
|
|
10511
10624
|
type?: ("alphabetical" | "natural" | "line-length")
|
|
10512
10625
|
|
|
10513
10626
|
order?: ("asc" | "desc")
|
|
10514
10627
|
|
|
10628
|
+
matcher?: ("minimatch" | "regex")
|
|
10629
|
+
|
|
10515
10630
|
ignoreCase?: boolean
|
|
10516
10631
|
|
|
10632
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10633
|
+
|
|
10517
10634
|
partitionByNewLine?: boolean
|
|
10518
10635
|
|
|
10519
10636
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
@@ -10531,6 +10648,8 @@ type PerfectionistSortObjects = []|[{
|
|
|
10531
10648
|
|
|
10532
10649
|
order?: ("asc" | "desc")
|
|
10533
10650
|
|
|
10651
|
+
matcher?: ("minimatch" | "regex")
|
|
10652
|
+
|
|
10534
10653
|
ignoreCase?: boolean
|
|
10535
10654
|
|
|
10536
10655
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -10549,6 +10668,23 @@ type PerfectionistSortObjects = []|[{
|
|
|
10549
10668
|
[k: string]: (string | string[]) | undefined
|
|
10550
10669
|
}
|
|
10551
10670
|
}]
|
|
10671
|
+
// ----- perfectionist/sort-sets -----
|
|
10672
|
+
type PerfectionistSortSets = []|[{
|
|
10673
|
+
|
|
10674
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
10675
|
+
|
|
10676
|
+
order?: ("asc" | "desc")
|
|
10677
|
+
|
|
10678
|
+
matcher?: ("minimatch" | "regex")
|
|
10679
|
+
|
|
10680
|
+
ignoreCase?: boolean
|
|
10681
|
+
|
|
10682
|
+
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
10683
|
+
|
|
10684
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10685
|
+
|
|
10686
|
+
partitionByNewLine?: boolean
|
|
10687
|
+
}]
|
|
10552
10688
|
// ----- perfectionist/sort-svelte-attributes -----
|
|
10553
10689
|
type PerfectionistSortSvelteAttributes = []|[{
|
|
10554
10690
|
|
|
@@ -10556,6 +10692,8 @@ type PerfectionistSortSvelteAttributes = []|[{
|
|
|
10556
10692
|
|
|
10557
10693
|
order?: ("asc" | "desc")
|
|
10558
10694
|
|
|
10695
|
+
matcher?: ("minimatch" | "regex")
|
|
10696
|
+
|
|
10559
10697
|
ignoreCase?: boolean
|
|
10560
10698
|
|
|
10561
10699
|
groups?: (string | string[])[]
|
|
@@ -10580,9 +10718,15 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
10580
10718
|
|
|
10581
10719
|
order?: ("asc" | "desc")
|
|
10582
10720
|
|
|
10721
|
+
matcher?: ("minimatch" | "regex")
|
|
10722
|
+
|
|
10583
10723
|
ignoreCase?: boolean
|
|
10584
10724
|
|
|
10585
10725
|
groups?: (string | string[])[]
|
|
10726
|
+
|
|
10727
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10728
|
+
|
|
10729
|
+
partitionByNewLine?: boolean
|
|
10586
10730
|
}]
|
|
10587
10731
|
// ----- perfectionist/sort-variable-declarations -----
|
|
10588
10732
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
@@ -10591,7 +10735,13 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
10591
10735
|
|
|
10592
10736
|
order?: ("asc" | "desc")
|
|
10593
10737
|
|
|
10738
|
+
matcher?: ("minimatch" | "regex")
|
|
10739
|
+
|
|
10594
10740
|
ignoreCase?: boolean
|
|
10741
|
+
|
|
10742
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10743
|
+
|
|
10744
|
+
partitionByNewLine?: boolean
|
|
10595
10745
|
}]
|
|
10596
10746
|
// ----- perfectionist/sort-vue-attributes -----
|
|
10597
10747
|
type PerfectionistSortVueAttributes = []|[{
|
|
@@ -10600,6 +10750,8 @@ type PerfectionistSortVueAttributes = []|[{
|
|
|
10600
10750
|
|
|
10601
10751
|
order?: ("asc" | "desc")
|
|
10602
10752
|
|
|
10753
|
+
matcher?: ("minimatch" | "regex")
|
|
10754
|
+
|
|
10603
10755
|
ignoreCase?: boolean
|
|
10604
10756
|
|
|
10605
10757
|
groups?: (string | string[])[]
|
|
@@ -10823,6 +10975,10 @@ type RegexpUnicodeProperty = []|[{
|
|
|
10823
10975
|
type RequireAtomicUpdates = []|[{
|
|
10824
10976
|
allowProperties?: boolean
|
|
10825
10977
|
}]
|
|
10978
|
+
// ----- require-unicode-regexp -----
|
|
10979
|
+
type RequireUnicodeRegexp = []|[{
|
|
10980
|
+
requireFlag?: ("u" | "v")
|
|
10981
|
+
}]
|
|
10826
10982
|
// ----- rest-spread-spacing -----
|
|
10827
10983
|
type RestSpreadSpacing = []|[("always" | "never")]
|
|
10828
10984
|
// ----- semi -----
|
|
@@ -11023,6 +11179,127 @@ type StyleCommaStyle = []|[("first" | "last")]|[("first" | "last"), {
|
|
|
11023
11179
|
type StyleComputedPropertySpacing = []|[("always" | "never")]|[("always" | "never"), {
|
|
11024
11180
|
enforceForClassMembers?: boolean
|
|
11025
11181
|
}]
|
|
11182
|
+
// ----- style/curly-newline -----
|
|
11183
|
+
type StyleCurlyNewline = []|[(("always" | "never") | {
|
|
11184
|
+
IfStatementConsequent?: (("always" | "never") | {
|
|
11185
|
+
multiline?: boolean
|
|
11186
|
+
minElements?: number
|
|
11187
|
+
consistent?: boolean
|
|
11188
|
+
})
|
|
11189
|
+
IfStatementAlternative?: (("always" | "never") | {
|
|
11190
|
+
multiline?: boolean
|
|
11191
|
+
minElements?: number
|
|
11192
|
+
consistent?: boolean
|
|
11193
|
+
})
|
|
11194
|
+
DoWhileStatement?: (("always" | "never") | {
|
|
11195
|
+
multiline?: boolean
|
|
11196
|
+
minElements?: number
|
|
11197
|
+
consistent?: boolean
|
|
11198
|
+
})
|
|
11199
|
+
ForInStatement?: (("always" | "never") | {
|
|
11200
|
+
multiline?: boolean
|
|
11201
|
+
minElements?: number
|
|
11202
|
+
consistent?: boolean
|
|
11203
|
+
})
|
|
11204
|
+
ForOfStatement?: (("always" | "never") | {
|
|
11205
|
+
multiline?: boolean
|
|
11206
|
+
minElements?: number
|
|
11207
|
+
consistent?: boolean
|
|
11208
|
+
})
|
|
11209
|
+
ForStatement?: (("always" | "never") | {
|
|
11210
|
+
multiline?: boolean
|
|
11211
|
+
minElements?: number
|
|
11212
|
+
consistent?: boolean
|
|
11213
|
+
})
|
|
11214
|
+
WhileStatement?: (("always" | "never") | {
|
|
11215
|
+
multiline?: boolean
|
|
11216
|
+
minElements?: number
|
|
11217
|
+
consistent?: boolean
|
|
11218
|
+
})
|
|
11219
|
+
SwitchStatement?: (("always" | "never") | {
|
|
11220
|
+
multiline?: boolean
|
|
11221
|
+
minElements?: number
|
|
11222
|
+
consistent?: boolean
|
|
11223
|
+
})
|
|
11224
|
+
SwitchCase?: (("always" | "never") | {
|
|
11225
|
+
multiline?: boolean
|
|
11226
|
+
minElements?: number
|
|
11227
|
+
consistent?: boolean
|
|
11228
|
+
})
|
|
11229
|
+
TryStatementBlock?: (("always" | "never") | {
|
|
11230
|
+
multiline?: boolean
|
|
11231
|
+
minElements?: number
|
|
11232
|
+
consistent?: boolean
|
|
11233
|
+
})
|
|
11234
|
+
TryStatementHandler?: (("always" | "never") | {
|
|
11235
|
+
multiline?: boolean
|
|
11236
|
+
minElements?: number
|
|
11237
|
+
consistent?: boolean
|
|
11238
|
+
})
|
|
11239
|
+
TryStatementFinalizer?: (("always" | "never") | {
|
|
11240
|
+
multiline?: boolean
|
|
11241
|
+
minElements?: number
|
|
11242
|
+
consistent?: boolean
|
|
11243
|
+
})
|
|
11244
|
+
BlockStatement?: (("always" | "never") | {
|
|
11245
|
+
multiline?: boolean
|
|
11246
|
+
minElements?: number
|
|
11247
|
+
consistent?: boolean
|
|
11248
|
+
})
|
|
11249
|
+
ArrowFunctionExpression?: (("always" | "never") | {
|
|
11250
|
+
multiline?: boolean
|
|
11251
|
+
minElements?: number
|
|
11252
|
+
consistent?: boolean
|
|
11253
|
+
})
|
|
11254
|
+
FunctionDeclaration?: (("always" | "never") | {
|
|
11255
|
+
multiline?: boolean
|
|
11256
|
+
minElements?: number
|
|
11257
|
+
consistent?: boolean
|
|
11258
|
+
})
|
|
11259
|
+
FunctionExpression?: (("always" | "never") | {
|
|
11260
|
+
multiline?: boolean
|
|
11261
|
+
minElements?: number
|
|
11262
|
+
consistent?: boolean
|
|
11263
|
+
})
|
|
11264
|
+
Property?: (("always" | "never") | {
|
|
11265
|
+
multiline?: boolean
|
|
11266
|
+
minElements?: number
|
|
11267
|
+
consistent?: boolean
|
|
11268
|
+
})
|
|
11269
|
+
ClassBody?: (("always" | "never") | {
|
|
11270
|
+
multiline?: boolean
|
|
11271
|
+
minElements?: number
|
|
11272
|
+
consistent?: boolean
|
|
11273
|
+
})
|
|
11274
|
+
StaticBlock?: (("always" | "never") | {
|
|
11275
|
+
multiline?: boolean
|
|
11276
|
+
minElements?: number
|
|
11277
|
+
consistent?: boolean
|
|
11278
|
+
})
|
|
11279
|
+
WithStatement?: (("always" | "never") | {
|
|
11280
|
+
multiline?: boolean
|
|
11281
|
+
minElements?: number
|
|
11282
|
+
consistent?: boolean
|
|
11283
|
+
})
|
|
11284
|
+
TSEnumBody?: (("always" | "never") | {
|
|
11285
|
+
multiline?: boolean
|
|
11286
|
+
minElements?: number
|
|
11287
|
+
consistent?: boolean
|
|
11288
|
+
})
|
|
11289
|
+
TSInterfaceBody?: (("always" | "never") | {
|
|
11290
|
+
multiline?: boolean
|
|
11291
|
+
minElements?: number
|
|
11292
|
+
consistent?: boolean
|
|
11293
|
+
})
|
|
11294
|
+
TSModuleBlock?: (("always" | "never") | {
|
|
11295
|
+
multiline?: boolean
|
|
11296
|
+
minElements?: number
|
|
11297
|
+
consistent?: boolean
|
|
11298
|
+
})
|
|
11299
|
+
multiline?: boolean
|
|
11300
|
+
minElements?: number
|
|
11301
|
+
consistent?: boolean
|
|
11302
|
+
})]
|
|
11026
11303
|
// ----- style/dot-location -----
|
|
11027
11304
|
type StyleDotLocation = []|[("object" | "property")]
|
|
11028
11305
|
// ----- style/eol-last -----
|
|
@@ -11091,6 +11368,7 @@ type StyleIndent = []|[("tab" | number)]|[("tab" | number), {
|
|
|
11091
11368
|
offsetTernaryExpressions?: boolean
|
|
11092
11369
|
ignoredNodes?: string[]
|
|
11093
11370
|
ignoreComments?: boolean
|
|
11371
|
+
tabLength?: number
|
|
11094
11372
|
}]
|
|
11095
11373
|
// ----- style/indent-binary-ops -----
|
|
11096
11374
|
type StyleIndentBinaryOps = []|[(number | "tab")]
|
|
@@ -11101,6 +11379,8 @@ type StyleJsxClosingBracketLocation = []|[(("after-props" | "props-aligned" | "t
|
|
|
11101
11379
|
nonEmpty?: (("after-props" | "props-aligned" | "tag-aligned" | "line-aligned") | false)
|
|
11102
11380
|
selfClosing?: (("after-props" | "props-aligned" | "tag-aligned" | "line-aligned") | false)
|
|
11103
11381
|
})]
|
|
11382
|
+
// ----- style/jsx-closing-tag-location -----
|
|
11383
|
+
type StyleJsxClosingTagLocation = []|[("tag-aligned" | "line-aligned")]
|
|
11104
11384
|
// ----- style/jsx-curly-brace-presence -----
|
|
11105
11385
|
type StyleJsxCurlyBracePresence = []|[({
|
|
11106
11386
|
props?: ("always" | "never" | "ignore")
|
|
@@ -11465,6 +11745,10 @@ type StyleKeywordSpacing = []|[{
|
|
|
11465
11745
|
before?: boolean
|
|
11466
11746
|
after?: boolean
|
|
11467
11747
|
}
|
|
11748
|
+
satisfies?: {
|
|
11749
|
+
before?: boolean
|
|
11750
|
+
after?: boolean
|
|
11751
|
+
}
|
|
11468
11752
|
set?: {
|
|
11469
11753
|
before?: boolean
|
|
11470
11754
|
after?: boolean
|
|
@@ -12007,6 +12291,7 @@ type SvelteHtmlQuotes = []|[{
|
|
|
12007
12291
|
type SvelteHtmlSelfClosing = []|[({
|
|
12008
12292
|
void?: ("never" | "always" | "ignore")
|
|
12009
12293
|
normal?: ("never" | "always" | "ignore")
|
|
12294
|
+
foreign?: ("never" | "always" | "ignore")
|
|
12010
12295
|
component?: ("never" | "always" | "ignore")
|
|
12011
12296
|
svelte?: ("never" | "always" | "ignore")
|
|
12012
12297
|
} | ("all" | "html" | "none"))]
|
|
@@ -12362,6 +12647,7 @@ type TsBanTsComment = []|[{
|
|
|
12362
12647
|
"ts-check"?: (boolean | "allow-with-description" | {
|
|
12363
12648
|
descriptionFormat?: string
|
|
12364
12649
|
})
|
|
12650
|
+
|
|
12365
12651
|
minimumDescriptionLength?: number
|
|
12366
12652
|
}]
|
|
12367
12653
|
// ----- ts/class-literal-property-style -----
|
|
@@ -12387,29 +12673,41 @@ type TsConsistentReturn = []|[{
|
|
|
12387
12673
|
}]
|
|
12388
12674
|
// ----- ts/consistent-type-assertions -----
|
|
12389
12675
|
type TsConsistentTypeAssertions = []|[({
|
|
12676
|
+
|
|
12390
12677
|
assertionStyle: "never"
|
|
12391
12678
|
} | {
|
|
12679
|
+
|
|
12392
12680
|
assertionStyle: ("as" | "angle-bracket")
|
|
12681
|
+
|
|
12393
12682
|
objectLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never")
|
|
12394
12683
|
})]
|
|
12395
12684
|
// ----- ts/consistent-type-definitions -----
|
|
12396
12685
|
type TsConsistentTypeDefinitions = []|[("interface" | "type")]
|
|
12397
12686
|
// ----- ts/consistent-type-exports -----
|
|
12398
12687
|
type TsConsistentTypeExports = []|[{
|
|
12688
|
+
|
|
12399
12689
|
fixMixedExportsWithInlineTypeSpecifier?: boolean
|
|
12400
12690
|
}]
|
|
12401
12691
|
// ----- ts/consistent-type-imports -----
|
|
12402
12692
|
type TsConsistentTypeImports = []|[{
|
|
12693
|
+
|
|
12403
12694
|
disallowTypeAnnotations?: boolean
|
|
12695
|
+
|
|
12404
12696
|
fixStyle?: ("separate-type-imports" | "inline-type-imports")
|
|
12697
|
+
|
|
12405
12698
|
prefer?: ("type-imports" | "no-type-imports")
|
|
12406
12699
|
}]
|
|
12407
12700
|
// ----- ts/dot-notation -----
|
|
12408
12701
|
type TsDotNotation = []|[{
|
|
12702
|
+
|
|
12409
12703
|
allowKeywords?: boolean
|
|
12704
|
+
|
|
12410
12705
|
allowPattern?: string
|
|
12706
|
+
|
|
12411
12707
|
allowPrivateClassPropertyAccess?: boolean
|
|
12708
|
+
|
|
12412
12709
|
allowProtectedClassPropertyAccess?: boolean
|
|
12710
|
+
|
|
12413
12711
|
allowIndexSignaturePropertyAccess?: boolean
|
|
12414
12712
|
}]
|
|
12415
12713
|
// ----- ts/explicit-function-return-type -----
|
|
@@ -12441,6 +12739,7 @@ type TsExplicitMemberAccessibility = []|[{
|
|
|
12441
12739
|
properties?: ("explicit" | "no-public" | "off")
|
|
12442
12740
|
parameterProperties?: ("explicit" | "no-public" | "off")
|
|
12443
12741
|
}
|
|
12742
|
+
|
|
12444
12743
|
ignoredMethodNames?: string[]
|
|
12445
12744
|
}]
|
|
12446
12745
|
// ----- ts/explicit-module-boundary-types -----
|
|
@@ -12462,8 +12761,11 @@ type TsInitDeclarations = ([]|["always"] | []|["never"]|["never", {
|
|
|
12462
12761
|
}])
|
|
12463
12762
|
// ----- ts/max-params -----
|
|
12464
12763
|
type TsMaxParams = []|[{
|
|
12465
|
-
|
|
12764
|
+
|
|
12466
12765
|
max?: number
|
|
12766
|
+
|
|
12767
|
+
maximum?: number
|
|
12768
|
+
|
|
12467
12769
|
countVoidThis?: boolean
|
|
12468
12770
|
}]
|
|
12469
12771
|
// ----- ts/member-ordering -----
|
|
@@ -12817,30 +13119,40 @@ interface _TsNamingConvention_MatchRegexConfig {
|
|
|
12817
13119
|
}
|
|
12818
13120
|
// ----- ts/no-base-to-string -----
|
|
12819
13121
|
type TsNoBaseToString = []|[{
|
|
13122
|
+
|
|
12820
13123
|
ignoredTypeNames?: string[]
|
|
12821
13124
|
}]
|
|
12822
13125
|
// ----- ts/no-confusing-void-expression -----
|
|
12823
13126
|
type TsNoConfusingVoidExpression = []|[{
|
|
13127
|
+
|
|
12824
13128
|
ignoreArrowShorthand?: boolean
|
|
13129
|
+
|
|
12825
13130
|
ignoreVoidOperator?: boolean
|
|
12826
13131
|
}]
|
|
12827
13132
|
// ----- ts/no-duplicate-type-constituents -----
|
|
12828
13133
|
type TsNoDuplicateTypeConstituents = []|[{
|
|
13134
|
+
|
|
12829
13135
|
ignoreIntersections?: boolean
|
|
13136
|
+
|
|
12830
13137
|
ignoreUnions?: boolean
|
|
12831
13138
|
}]
|
|
12832
13139
|
// ----- ts/no-empty-function -----
|
|
12833
13140
|
type TsNoEmptyFunction = []|[{
|
|
13141
|
+
|
|
12834
13142
|
allow?: ("functions" | "arrowFunctions" | "generatorFunctions" | "methods" | "generatorMethods" | "getters" | "setters" | "constructors" | "private-constructors" | "protected-constructors" | "asyncFunctions" | "asyncMethods" | "decoratedFunctions" | "overrideMethods")[]
|
|
12835
13143
|
}]
|
|
12836
13144
|
// ----- ts/no-empty-interface -----
|
|
12837
13145
|
type TsNoEmptyInterface = []|[{
|
|
13146
|
+
|
|
12838
13147
|
allowSingleExtends?: boolean
|
|
12839
13148
|
}]
|
|
12840
13149
|
// ----- ts/no-empty-object-type -----
|
|
12841
13150
|
type TsNoEmptyObjectType = []|[{
|
|
13151
|
+
|
|
12842
13152
|
allowInterfaces?: ("always" | "never" | "with-single-extends")
|
|
13153
|
+
|
|
12843
13154
|
allowObjectTypes?: ("always" | "never")
|
|
13155
|
+
|
|
12844
13156
|
allowWithName?: string
|
|
12845
13157
|
}]
|
|
12846
13158
|
// ----- ts/no-explicit-any -----
|
|
@@ -12863,6 +13175,7 @@ type TsNoExtraneousClass = []|[{
|
|
|
12863
13175
|
}]
|
|
12864
13176
|
// ----- ts/no-floating-promises -----
|
|
12865
13177
|
type TsNoFloatingPromises = []|[{
|
|
13178
|
+
|
|
12866
13179
|
allowForKnownSafePromises?: (string | {
|
|
12867
13180
|
from: "file"
|
|
12868
13181
|
name: (string | [string, ...(string)[]])
|
|
@@ -12875,6 +13188,7 @@ type TsNoFloatingPromises = []|[{
|
|
|
12875
13188
|
name: (string | [string, ...(string)[]])
|
|
12876
13189
|
package: string
|
|
12877
13190
|
})[]
|
|
13191
|
+
|
|
12878
13192
|
allowForKnownSafeCalls?: (string | {
|
|
12879
13193
|
from: "file"
|
|
12880
13194
|
name: (string | [string, ...(string)[]])
|
|
@@ -12896,7 +13210,9 @@ type TsNoFloatingPromises = []|[{
|
|
|
12896
13210
|
}]
|
|
12897
13211
|
// ----- ts/no-inferrable-types -----
|
|
12898
13212
|
type TsNoInferrableTypes = []|[{
|
|
13213
|
+
|
|
12899
13214
|
ignoreParameters?: boolean
|
|
13215
|
+
|
|
12900
13216
|
ignoreProperties?: boolean
|
|
12901
13217
|
}]
|
|
12902
13218
|
// ----- ts/no-invalid-this -----
|
|
@@ -12905,7 +13221,9 @@ type TsNoInvalidThis = []|[{
|
|
|
12905
13221
|
}]
|
|
12906
13222
|
// ----- ts/no-invalid-void-type -----
|
|
12907
13223
|
type TsNoInvalidVoidType = []|[{
|
|
13224
|
+
|
|
12908
13225
|
allowInGenericTypeArguments?: (boolean | [string, ...(string)[]])
|
|
13226
|
+
|
|
12909
13227
|
allowAsThisParameter?: boolean
|
|
12910
13228
|
}]
|
|
12911
13229
|
// ----- ts/no-magic-numbers -----
|
|
@@ -12916,26 +13234,38 @@ type TsNoMagicNumbers = []|[{
|
|
|
12916
13234
|
ignoreArrayIndexes?: boolean
|
|
12917
13235
|
ignoreDefaultValues?: boolean
|
|
12918
13236
|
ignoreClassFieldInitialValues?: boolean
|
|
13237
|
+
|
|
12919
13238
|
ignoreNumericLiteralTypes?: boolean
|
|
13239
|
+
|
|
12920
13240
|
ignoreEnums?: boolean
|
|
13241
|
+
|
|
12921
13242
|
ignoreReadonlyClassProperties?: boolean
|
|
13243
|
+
|
|
12922
13244
|
ignoreTypeIndexes?: boolean
|
|
12923
13245
|
}]
|
|
12924
13246
|
// ----- ts/no-meaningless-void-operator -----
|
|
12925
13247
|
type TsNoMeaninglessVoidOperator = []|[{
|
|
13248
|
+
|
|
12926
13249
|
checkNever?: boolean
|
|
12927
13250
|
}]
|
|
12928
13251
|
// ----- ts/no-misused-promises -----
|
|
12929
13252
|
type TsNoMisusedPromises = []|[{
|
|
12930
13253
|
checksConditionals?: boolean
|
|
12931
13254
|
checksVoidReturn?: (boolean | {
|
|
13255
|
+
|
|
12932
13256
|
arguments?: boolean
|
|
13257
|
+
|
|
12933
13258
|
attributes?: boolean
|
|
13259
|
+
|
|
12934
13260
|
inheritedMethods?: boolean
|
|
13261
|
+
|
|
12935
13262
|
properties?: boolean
|
|
13263
|
+
|
|
12936
13264
|
returns?: boolean
|
|
13265
|
+
|
|
12937
13266
|
variables?: boolean
|
|
12938
13267
|
})
|
|
13268
|
+
|
|
12939
13269
|
checksSpreads?: boolean
|
|
12940
13270
|
}]
|
|
12941
13271
|
// ----- ts/no-namespace -----
|
|
@@ -12947,7 +13277,9 @@ type TsNoNamespace = []|[{
|
|
|
12947
13277
|
}]
|
|
12948
13278
|
// ----- ts/no-redeclare -----
|
|
12949
13279
|
type TsNoRedeclare = []|[{
|
|
13280
|
+
|
|
12950
13281
|
builtinGlobals?: boolean
|
|
13282
|
+
|
|
12951
13283
|
ignoreDeclarationMerge?: boolean
|
|
12952
13284
|
}]
|
|
12953
13285
|
// ----- ts/no-require-imports -----
|
|
@@ -13005,11 +13337,17 @@ type TsNoRestrictedTypes = []|[{
|
|
|
13005
13337
|
}]
|
|
13006
13338
|
// ----- ts/no-shadow -----
|
|
13007
13339
|
type TsNoShadow = []|[{
|
|
13340
|
+
|
|
13008
13341
|
builtinGlobals?: boolean
|
|
13342
|
+
|
|
13009
13343
|
hoist?: ("all" | "functions" | "never")
|
|
13344
|
+
|
|
13010
13345
|
allow?: string[]
|
|
13346
|
+
|
|
13011
13347
|
ignoreOnInitialization?: boolean
|
|
13348
|
+
|
|
13012
13349
|
ignoreTypeValueShadow?: boolean
|
|
13350
|
+
|
|
13013
13351
|
ignoreFunctionTypeParameterNameValueShadow?: boolean
|
|
13014
13352
|
}]
|
|
13015
13353
|
// ----- ts/no-this-alias -----
|
|
@@ -13051,6 +13389,8 @@ type TsNoUnnecessaryCondition = []|[{
|
|
|
13051
13389
|
allowConstantLoopConditions?: boolean
|
|
13052
13390
|
|
|
13053
13391
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
13392
|
+
|
|
13393
|
+
checkTypePredicates?: boolean
|
|
13054
13394
|
}]
|
|
13055
13395
|
// ----- ts/no-unnecessary-type-assertion -----
|
|
13056
13396
|
type TsNoUnnecessaryTypeAssertion = []|[{
|
|
@@ -13066,24 +13406,40 @@ type TsNoUnusedExpressions = []|[{
|
|
|
13066
13406
|
}]
|
|
13067
13407
|
// ----- ts/no-unused-vars -----
|
|
13068
13408
|
type TsNoUnusedVars = []|[(("all" | "local") | {
|
|
13409
|
+
|
|
13069
13410
|
vars?: ("all" | "local")
|
|
13411
|
+
|
|
13070
13412
|
varsIgnorePattern?: string
|
|
13413
|
+
|
|
13071
13414
|
args?: ("all" | "after-used" | "none")
|
|
13072
|
-
|
|
13415
|
+
|
|
13073
13416
|
argsIgnorePattern?: string
|
|
13417
|
+
|
|
13074
13418
|
caughtErrors?: ("all" | "none")
|
|
13419
|
+
|
|
13075
13420
|
caughtErrorsIgnorePattern?: string
|
|
13421
|
+
|
|
13076
13422
|
destructuredArrayIgnorePattern?: string
|
|
13423
|
+
|
|
13077
13424
|
ignoreClassWithStaticInitBlock?: boolean
|
|
13425
|
+
|
|
13426
|
+
ignoreRestSiblings?: boolean
|
|
13427
|
+
|
|
13078
13428
|
reportUsedIgnorePattern?: boolean
|
|
13079
13429
|
})]
|
|
13080
13430
|
// ----- ts/no-use-before-define -----
|
|
13081
13431
|
type TsNoUseBeforeDefine = []|[("nofunc" | {
|
|
13432
|
+
|
|
13082
13433
|
functions?: boolean
|
|
13434
|
+
|
|
13083
13435
|
classes?: boolean
|
|
13436
|
+
|
|
13084
13437
|
enums?: boolean
|
|
13438
|
+
|
|
13085
13439
|
variables?: boolean
|
|
13440
|
+
|
|
13086
13441
|
typedefs?: boolean
|
|
13442
|
+
|
|
13087
13443
|
ignoreTypeReferences?: boolean
|
|
13088
13444
|
allowNamedExports?: boolean
|
|
13089
13445
|
})]
|
|
@@ -13094,12 +13450,16 @@ type TsNoVarRequires = []|[{
|
|
|
13094
13450
|
}]
|
|
13095
13451
|
// ----- ts/only-throw-error -----
|
|
13096
13452
|
type TsOnlyThrowError = []|[{
|
|
13453
|
+
|
|
13097
13454
|
allowThrowingAny?: boolean
|
|
13455
|
+
|
|
13098
13456
|
allowThrowingUnknown?: boolean
|
|
13099
13457
|
}]
|
|
13100
13458
|
// ----- ts/parameter-properties -----
|
|
13101
13459
|
type TsParameterProperties = []|[{
|
|
13460
|
+
|
|
13102
13461
|
allow?: ("readonly" | "private" | "protected" | "public" | "private readonly" | "protected readonly" | "public readonly")[]
|
|
13462
|
+
|
|
13103
13463
|
prefer?: ("class-property" | "parameter-property")
|
|
13104
13464
|
}]
|
|
13105
13465
|
// ----- ts/prefer-destructuring -----
|
|
@@ -13134,13 +13494,18 @@ type TsPreferDestructuring = []|[({
|
|
|
13134
13494
|
}]
|
|
13135
13495
|
// ----- ts/prefer-literal-enum-member -----
|
|
13136
13496
|
type TsPreferLiteralEnumMember = []|[{
|
|
13497
|
+
|
|
13137
13498
|
allowBitwiseExpressions?: boolean
|
|
13138
13499
|
}]
|
|
13139
13500
|
// ----- ts/prefer-nullish-coalescing -----
|
|
13140
13501
|
type TsPreferNullishCoalescing = []|[{
|
|
13502
|
+
|
|
13141
13503
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
13504
|
+
|
|
13142
13505
|
ignoreConditionalTests?: boolean
|
|
13506
|
+
|
|
13143
13507
|
ignoreMixedLogicalExpressions?: boolean
|
|
13508
|
+
|
|
13144
13509
|
ignorePrimitives?: ({
|
|
13145
13510
|
bigint?: boolean
|
|
13146
13511
|
boolean?: boolean
|
|
@@ -13148,6 +13513,7 @@ type TsPreferNullishCoalescing = []|[{
|
|
|
13148
13513
|
string?: boolean
|
|
13149
13514
|
[k: string]: unknown | undefined
|
|
13150
13515
|
} | true)
|
|
13516
|
+
|
|
13151
13517
|
ignoreTernaryTests?: boolean
|
|
13152
13518
|
}]
|
|
13153
13519
|
// ----- ts/prefer-optional-chain -----
|
|
@@ -13171,14 +13537,17 @@ type TsPreferOptionalChain = []|[{
|
|
|
13171
13537
|
}]
|
|
13172
13538
|
// ----- ts/prefer-promise-reject-errors -----
|
|
13173
13539
|
type TsPreferPromiseRejectErrors = []|[{
|
|
13540
|
+
|
|
13174
13541
|
allowEmptyReject?: boolean
|
|
13175
13542
|
}]
|
|
13176
13543
|
// ----- ts/prefer-readonly -----
|
|
13177
13544
|
type TsPreferReadonly = []|[{
|
|
13545
|
+
|
|
13178
13546
|
onlyInlineLambdas?: boolean
|
|
13179
13547
|
}]
|
|
13180
13548
|
// ----- ts/prefer-readonly-parameter-types -----
|
|
13181
13549
|
type TsPreferReadonlyParameterTypes = []|[{
|
|
13550
|
+
|
|
13182
13551
|
allow?: (string | {
|
|
13183
13552
|
from: "file"
|
|
13184
13553
|
name: (string | [string, ...(string)[]])
|
|
@@ -13191,8 +13560,11 @@ type TsPreferReadonlyParameterTypes = []|[{
|
|
|
13191
13560
|
name: (string | [string, ...(string)[]])
|
|
13192
13561
|
package: string
|
|
13193
13562
|
})[]
|
|
13563
|
+
|
|
13194
13564
|
checkParameterProperties?: boolean
|
|
13565
|
+
|
|
13195
13566
|
ignoreInferredTypes?: boolean
|
|
13567
|
+
|
|
13196
13568
|
treatMethodsAsReadonly?: boolean
|
|
13197
13569
|
}]
|
|
13198
13570
|
// ----- ts/prefer-string-starts-ends-with -----
|
|
@@ -13206,9 +13578,13 @@ type TsPromiseFunctionAsync = []|[{
|
|
|
13206
13578
|
allowAny?: boolean
|
|
13207
13579
|
|
|
13208
13580
|
allowedPromiseNames?: string[]
|
|
13581
|
+
|
|
13209
13582
|
checkArrowFunctions?: boolean
|
|
13583
|
+
|
|
13210
13584
|
checkFunctionDeclarations?: boolean
|
|
13585
|
+
|
|
13211
13586
|
checkFunctionExpressions?: boolean
|
|
13587
|
+
|
|
13212
13588
|
checkMethodDeclarations?: boolean
|
|
13213
13589
|
}]
|
|
13214
13590
|
// ----- ts/require-array-sort-compare -----
|
|
@@ -13247,9 +13623,22 @@ type TsRestrictTemplateExpressions = []|[{
|
|
|
13247
13623
|
allowRegExp?: boolean
|
|
13248
13624
|
|
|
13249
13625
|
allowNever?: boolean
|
|
13626
|
+
|
|
13627
|
+
allow?: (string | {
|
|
13628
|
+
from: "file"
|
|
13629
|
+
name: (string | [string, ...(string)[]])
|
|
13630
|
+
path?: string
|
|
13631
|
+
} | {
|
|
13632
|
+
from: "lib"
|
|
13633
|
+
name: (string | [string, ...(string)[]])
|
|
13634
|
+
} | {
|
|
13635
|
+
from: "package"
|
|
13636
|
+
name: (string | [string, ...(string)[]])
|
|
13637
|
+
package: string
|
|
13638
|
+
})[]
|
|
13250
13639
|
}]
|
|
13251
13640
|
// ----- ts/return-await -----
|
|
13252
|
-
type TsReturnAwait = []|[("
|
|
13641
|
+
type TsReturnAwait = []|[(("always" | "error-handling-correctness-only" | "in-try-catch" | "never") & string)]
|
|
13253
13642
|
// ----- ts/sort-type-constituents -----
|
|
13254
13643
|
type TsSortTypeConstituents = []|[{
|
|
13255
13644
|
|
|
@@ -13263,13 +13652,21 @@ type TsSortTypeConstituents = []|[{
|
|
|
13263
13652
|
}]
|
|
13264
13653
|
// ----- ts/strict-boolean-expressions -----
|
|
13265
13654
|
type TsStrictBooleanExpressions = []|[{
|
|
13655
|
+
|
|
13266
13656
|
allowString?: boolean
|
|
13657
|
+
|
|
13267
13658
|
allowNumber?: boolean
|
|
13659
|
+
|
|
13268
13660
|
allowNullableObject?: boolean
|
|
13661
|
+
|
|
13269
13662
|
allowNullableBoolean?: boolean
|
|
13663
|
+
|
|
13270
13664
|
allowNullableString?: boolean
|
|
13665
|
+
|
|
13271
13666
|
allowNullableNumber?: boolean
|
|
13667
|
+
|
|
13272
13668
|
allowNullableEnum?: boolean
|
|
13669
|
+
|
|
13273
13670
|
allowAny?: boolean
|
|
13274
13671
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
13275
13672
|
}]
|
|
@@ -13282,19 +13679,30 @@ type TsSwitchExhaustivenessCheck = []|[{
|
|
|
13282
13679
|
}]
|
|
13283
13680
|
// ----- ts/triple-slash-reference -----
|
|
13284
13681
|
type TsTripleSlashReference = []|[{
|
|
13682
|
+
|
|
13285
13683
|
lib?: ("always" | "never")
|
|
13684
|
+
|
|
13286
13685
|
path?: ("always" | "never")
|
|
13686
|
+
|
|
13287
13687
|
types?: ("always" | "never" | "prefer-import")
|
|
13288
13688
|
}]
|
|
13289
13689
|
// ----- ts/typedef -----
|
|
13290
13690
|
type TsTypedef = []|[{
|
|
13691
|
+
|
|
13291
13692
|
arrayDestructuring?: boolean
|
|
13693
|
+
|
|
13292
13694
|
arrowParameter?: boolean
|
|
13695
|
+
|
|
13293
13696
|
memberVariableDeclaration?: boolean
|
|
13697
|
+
|
|
13294
13698
|
objectDestructuring?: boolean
|
|
13699
|
+
|
|
13295
13700
|
parameter?: boolean
|
|
13701
|
+
|
|
13296
13702
|
propertyDeclaration?: boolean
|
|
13703
|
+
|
|
13297
13704
|
variableDeclaration?: boolean
|
|
13705
|
+
|
|
13298
13706
|
variableDeclarationIgnoreFunction?: boolean
|
|
13299
13707
|
}]
|
|
13300
13708
|
// ----- ts/unbound-method -----
|
|
@@ -13514,28 +13922,48 @@ type UnocssEnforceClassCompile = []|[{
|
|
|
13514
13922
|
}]
|
|
13515
13923
|
// ----- unused-imports/no-unused-imports -----
|
|
13516
13924
|
type UnusedImportsNoUnusedImports = []|[(("all" | "local") | {
|
|
13925
|
+
|
|
13517
13926
|
vars?: ("all" | "local")
|
|
13927
|
+
|
|
13518
13928
|
varsIgnorePattern?: string
|
|
13929
|
+
|
|
13519
13930
|
args?: ("all" | "after-used" | "none")
|
|
13520
|
-
|
|
13931
|
+
|
|
13521
13932
|
argsIgnorePattern?: string
|
|
13933
|
+
|
|
13522
13934
|
caughtErrors?: ("all" | "none")
|
|
13935
|
+
|
|
13523
13936
|
caughtErrorsIgnorePattern?: string
|
|
13937
|
+
|
|
13524
13938
|
destructuredArrayIgnorePattern?: string
|
|
13939
|
+
|
|
13525
13940
|
ignoreClassWithStaticInitBlock?: boolean
|
|
13941
|
+
|
|
13942
|
+
ignoreRestSiblings?: boolean
|
|
13943
|
+
|
|
13526
13944
|
reportUsedIgnorePattern?: boolean
|
|
13527
13945
|
})]
|
|
13528
13946
|
// ----- unused-imports/no-unused-vars -----
|
|
13529
13947
|
type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
13948
|
+
|
|
13530
13949
|
vars?: ("all" | "local")
|
|
13950
|
+
|
|
13531
13951
|
varsIgnorePattern?: string
|
|
13952
|
+
|
|
13532
13953
|
args?: ("all" | "after-used" | "none")
|
|
13533
|
-
|
|
13954
|
+
|
|
13534
13955
|
argsIgnorePattern?: string
|
|
13956
|
+
|
|
13535
13957
|
caughtErrors?: ("all" | "none")
|
|
13958
|
+
|
|
13536
13959
|
caughtErrorsIgnorePattern?: string
|
|
13960
|
+
|
|
13537
13961
|
destructuredArrayIgnorePattern?: string
|
|
13962
|
+
|
|
13538
13963
|
ignoreClassWithStaticInitBlock?: boolean
|
|
13964
|
+
|
|
13965
|
+
ignoreRestSiblings?: boolean
|
|
13966
|
+
|
|
13539
13967
|
reportUsedIgnorePattern?: boolean
|
|
13540
13968
|
})]
|
|
13541
13969
|
// ----- use-isnan -----
|
|
@@ -13679,7 +14107,7 @@ type VueCustomEventNameCasing = ([]|[("kebab-case" | "camelCase")]|[("kebab-case
|
|
|
13679
14107
|
type VueDefineEmitsDeclaration = []|[("type-based" | "type-literal" | "runtime")]
|
|
13680
14108
|
// ----- vue/define-macros-order -----
|
|
13681
14109
|
type VueDefineMacrosOrder = []|[{
|
|
13682
|
-
order?:
|
|
14110
|
+
order?: string[]
|
|
13683
14111
|
defineExposeLast?: boolean
|
|
13684
14112
|
}]
|
|
13685
14113
|
// ----- vue/define-props-declaration -----
|
|
@@ -14025,6 +14453,10 @@ type VueKeywordSpacing = []|[{
|
|
|
14025
14453
|
before?: boolean
|
|
14026
14454
|
after?: boolean
|
|
14027
14455
|
}
|
|
14456
|
+
satisfies?: {
|
|
14457
|
+
before?: boolean
|
|
14458
|
+
after?: boolean
|
|
14459
|
+
}
|
|
14028
14460
|
set?: {
|
|
14029
14461
|
before?: boolean
|
|
14030
14462
|
after?: boolean
|
|
@@ -14214,6 +14646,14 @@ type VueMaxLinesPerBlock = []|[{
|
|
|
14214
14646
|
script?: number
|
|
14215
14647
|
skipBlankLines?: boolean
|
|
14216
14648
|
}]
|
|
14649
|
+
// ----- vue/max-props -----
|
|
14650
|
+
type VueMaxProps = []|[{
|
|
14651
|
+
maxProps?: number
|
|
14652
|
+
}]
|
|
14653
|
+
// ----- vue/max-template-depth -----
|
|
14654
|
+
type VueMaxTemplateDepth = []|[{
|
|
14655
|
+
maxDepth?: number
|
|
14656
|
+
}]
|
|
14217
14657
|
// ----- vue/multi-word-component-names -----
|
|
14218
14658
|
type VueMultiWordComponentNames = []|[{
|
|
14219
14659
|
ignores?: string[]
|
|
@@ -14628,6 +15068,10 @@ type VueRequireMacroVariableName = []|[{
|
|
|
14628
15068
|
type VueRequirePropComment = []|[{
|
|
14629
15069
|
type?: ("JSDoc" | "line" | "block" | "any")
|
|
14630
15070
|
}]
|
|
15071
|
+
// ----- vue/require-toggle-inside-transition -----
|
|
15072
|
+
type VueRequireToggleInsideTransition = []|[{
|
|
15073
|
+
additionalDirectives?: string[]
|
|
15074
|
+
}]
|
|
14631
15075
|
// ----- vue/return-in-computed-property -----
|
|
14632
15076
|
type VueReturnInComputedProperty = []|[{
|
|
14633
15077
|
treatUndefinedAsUnspecified?: boolean
|
|
@@ -14936,7 +15380,126 @@ type Yoda = []|[("always" | "never")]|[("always" | "never"), {
|
|
|
14936
15380
|
onlyEquality?: boolean
|
|
14937
15381
|
}]
|
|
14938
15382
|
// Names of all the configs
|
|
14939
|
-
type ConfigNames = 'jun/astro/setup' | 'jun/astro/rules' | 'jun/eslint-comments/rules' | 'jun/formatter/setup' | 'jun/imports/rules' | 'jun/
|
|
15383
|
+
type ConfigNames = 'jun/astro/setup' | 'jun/astro/rules' | 'jun/eslint-comments/rules' | 'jun/formatter/setup' | 'jun/imports/rules' | 'jun/javascript/setup' | 'jun/javascript/rules' | 'jun/jsx/setup' | 'jun/jsdoc/rules' | 'jun/jsonc/setup' | 'jun/jsonc/rules' | 'jun/markdown/setup' | 'jun/markdown/processor' | 'jun/markdown/parser' | 'jun/markdown/disables' | 'jun/node/rules' | 'jun/perfectionist/setup' | 'jun/react/setup' | 'jun/react/rules' | 'jun/solid/setup' | 'jun/solid/rules' | 'jun/sort/package-json' | 'jun/stylistic/rules' | 'jun/svelte/setup' | 'jun/svelte/rules' | 'jun/test/setup' | 'jun/test/rules' | 'jun/toml/setup' | 'jun/toml/rules' | 'jun/regexp/rules' | 'jun/typescript/setup' | 'jun/typescript/parser' | 'jun/typescript/rules' | 'jun/unicorn/rules' | 'jun/unocss' | 'jun/vue/setup' | 'jun/vue/rules' | 'jun/yaml/setup' | 'jun/yaml/rules'
|
|
15384
|
+
|
|
15385
|
+
/**
|
|
15386
|
+
* Vendor types from Prettier so we don't rely on the dependency.
|
|
15387
|
+
*/
|
|
15388
|
+
type VendoredPrettierOptions = Partial<VendoredPrettierOptionsRequired>;
|
|
15389
|
+
interface VendoredPrettierOptionsRequired {
|
|
15390
|
+
/**
|
|
15391
|
+
* Specify the line length that the printer will wrap on.
|
|
15392
|
+
* @default 120
|
|
15393
|
+
*/
|
|
15394
|
+
printWidth: number;
|
|
15395
|
+
/**
|
|
15396
|
+
* Specify the number of spaces per indentation-level.
|
|
15397
|
+
*/
|
|
15398
|
+
tabWidth: number;
|
|
15399
|
+
/**
|
|
15400
|
+
* Indent lines with tabs instead of spaces
|
|
15401
|
+
*/
|
|
15402
|
+
useTabs?: boolean;
|
|
15403
|
+
/**
|
|
15404
|
+
* Print semicolons at the ends of statements.
|
|
15405
|
+
*/
|
|
15406
|
+
semi: boolean;
|
|
15407
|
+
/**
|
|
15408
|
+
* Use single quotes instead of double quotes.
|
|
15409
|
+
*/
|
|
15410
|
+
singleQuote: boolean;
|
|
15411
|
+
/**
|
|
15412
|
+
* Use single quotes in JSX.
|
|
15413
|
+
*/
|
|
15414
|
+
jsxSingleQuote: boolean;
|
|
15415
|
+
/**
|
|
15416
|
+
* Print trailing commas wherever possible.
|
|
15417
|
+
*/
|
|
15418
|
+
trailingComma: 'none' | 'es5' | 'all';
|
|
15419
|
+
/**
|
|
15420
|
+
* Print spaces between brackets in object literals.
|
|
15421
|
+
*/
|
|
15422
|
+
bracketSpacing: boolean;
|
|
15423
|
+
/**
|
|
15424
|
+
* Put the `>` of a multi-line HTML (HTML, XML, JSX, Vue, Angular) element at the end of the last line instead of being
|
|
15425
|
+
* alone on the next line (does not apply to self closing elements).
|
|
15426
|
+
*/
|
|
15427
|
+
bracketSameLine: boolean;
|
|
15428
|
+
/**
|
|
15429
|
+
* Put the `>` of a multi-line JSX element at the end of the last line instead of being alone on the next line.
|
|
15430
|
+
* @deprecated use bracketSameLine instead
|
|
15431
|
+
*/
|
|
15432
|
+
jsxBracketSameLine: boolean;
|
|
15433
|
+
/**
|
|
15434
|
+
* Format only a segment of a file.
|
|
15435
|
+
*/
|
|
15436
|
+
rangeStart: number;
|
|
15437
|
+
/**
|
|
15438
|
+
* Format only a segment of a file.
|
|
15439
|
+
* @default Number.POSITIVE_INFINITY
|
|
15440
|
+
*/
|
|
15441
|
+
rangeEnd: number;
|
|
15442
|
+
/**
|
|
15443
|
+
* By default, Prettier will wrap markdown text as-is since some services use a linebreak-sensitive renderer.
|
|
15444
|
+
* In some cases you may want to rely on editor/viewer soft wrapping instead, so this option allows you to opt out.
|
|
15445
|
+
* @default "preserve"
|
|
15446
|
+
*/
|
|
15447
|
+
proseWrap: 'always' | 'never' | 'preserve';
|
|
15448
|
+
/**
|
|
15449
|
+
* Include parentheses around a sole arrow function parameter.
|
|
15450
|
+
* @default "always"
|
|
15451
|
+
*/
|
|
15452
|
+
arrowParens: 'avoid' | 'always';
|
|
15453
|
+
/**
|
|
15454
|
+
* Provide ability to support new languages to prettier.
|
|
15455
|
+
*/
|
|
15456
|
+
plugins: Array<string | any>;
|
|
15457
|
+
/**
|
|
15458
|
+
* How to handle whitespaces in HTML.
|
|
15459
|
+
* @default "css"
|
|
15460
|
+
*/
|
|
15461
|
+
htmlWhitespaceSensitivity: 'css' | 'strict' | 'ignore';
|
|
15462
|
+
/**
|
|
15463
|
+
* Which end of line characters to apply.
|
|
15464
|
+
* @default "lf"
|
|
15465
|
+
*/
|
|
15466
|
+
endOfLine: 'auto' | 'lf' | 'crlf' | 'cr';
|
|
15467
|
+
/**
|
|
15468
|
+
* Change when properties in objects are quoted.
|
|
15469
|
+
* @default "as-needed"
|
|
15470
|
+
*/
|
|
15471
|
+
quoteProps: 'as-needed' | 'consistent' | 'preserve';
|
|
15472
|
+
/**
|
|
15473
|
+
* Whether or not to indent the code inside <script> and <style> tags in Vue files.
|
|
15474
|
+
* @default false
|
|
15475
|
+
*/
|
|
15476
|
+
vueIndentScriptAndStyle: boolean;
|
|
15477
|
+
/**
|
|
15478
|
+
* Enforce single attribute per line in HTML, XML, Vue and JSX.
|
|
15479
|
+
* @default false
|
|
15480
|
+
*/
|
|
15481
|
+
singleAttributePerLine: boolean;
|
|
15482
|
+
/**
|
|
15483
|
+
* How to handle whitespaces in XML.
|
|
15484
|
+
* @default "preserve"
|
|
15485
|
+
*/
|
|
15486
|
+
xmlQuoteAttributes: 'single' | 'double' | 'preserve';
|
|
15487
|
+
/**
|
|
15488
|
+
* Whether to put a space inside the brackets of self-closing XML elements.
|
|
15489
|
+
* @default true
|
|
15490
|
+
*/
|
|
15491
|
+
xmlSelfClosingSpace: boolean;
|
|
15492
|
+
/**
|
|
15493
|
+
* Whether to sort attributes by key in XML elements.
|
|
15494
|
+
* @default false
|
|
15495
|
+
*/
|
|
15496
|
+
xmlSortAttributesByKey: boolean;
|
|
15497
|
+
/**
|
|
15498
|
+
* How to handle whitespaces in XML.
|
|
15499
|
+
* @default "ignore"
|
|
15500
|
+
*/
|
|
15501
|
+
xmlWhitespaceSensitivity: 'ignore' | 'strict' | 'preserve';
|
|
15502
|
+
}
|
|
14940
15503
|
|
|
14941
15504
|
type Awaitable<T> = T | Promise<T>;
|
|
14942
15505
|
type Rules = RuleOptions;
|
|
@@ -14959,7 +15522,7 @@ interface OptionsVue extends OptionsOverrides {
|
|
|
14959
15522
|
/**
|
|
14960
15523
|
* Create virtual files for Vue SFC blocks to enable linting.
|
|
14961
15524
|
*
|
|
14962
|
-
* @see https://github.com/
|
|
15525
|
+
* @see https://github.com/jun/eslint-processor-vue-blocks
|
|
14963
15526
|
* @default true
|
|
14964
15527
|
*/
|
|
14965
15528
|
sfcBlocks?: boolean | Options;
|
|
@@ -15044,6 +15607,14 @@ interface OptionsComponentExts {
|
|
|
15044
15607
|
*/
|
|
15045
15608
|
componentExts?: string[];
|
|
15046
15609
|
}
|
|
15610
|
+
interface OptionsUnicorn {
|
|
15611
|
+
/**
|
|
15612
|
+
* Include all rules recommended by `eslint-plugin-unicorn`, instead of only ones picked by Anthony.
|
|
15613
|
+
*
|
|
15614
|
+
* @default false
|
|
15615
|
+
*/
|
|
15616
|
+
allRecommended?: boolean;
|
|
15617
|
+
}
|
|
15047
15618
|
interface OptionsTypeScriptParserOptions {
|
|
15048
15619
|
/**
|
|
15049
15620
|
* Additional parser options for TypeScript.
|
|
@@ -15092,7 +15663,7 @@ interface OptionsProjectType {
|
|
|
15092
15663
|
}
|
|
15093
15664
|
interface OptionsRegExp {
|
|
15094
15665
|
/**
|
|
15095
|
-
* Override
|
|
15666
|
+
* Override rulelevels
|
|
15096
15667
|
*/
|
|
15097
15668
|
level?: 'error' | 'warn';
|
|
15098
15669
|
}
|
|
@@ -15106,7 +15677,7 @@ interface OptionsUnoCSS extends OptionsOverrides {
|
|
|
15106
15677
|
*/
|
|
15107
15678
|
attributify?: boolean;
|
|
15108
15679
|
/**
|
|
15109
|
-
* Enable strict mode by throwing errors about
|
|
15680
|
+
* Enable strict mode by throwing errors about blocklisted classes.
|
|
15110
15681
|
* @default false
|
|
15111
15682
|
*/
|
|
15112
15683
|
strict?: boolean;
|
|
@@ -15117,7 +15688,7 @@ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
|
|
|
15117
15688
|
*
|
|
15118
15689
|
* Passing an object to configure the options.
|
|
15119
15690
|
*
|
|
15120
|
-
* @see https://github.com/
|
|
15691
|
+
* @see https://github.com/jun/eslint-config-flat-gitignore
|
|
15121
15692
|
* @default true
|
|
15122
15693
|
*/
|
|
15123
15694
|
gitignore?: boolean | FlatGitignoreOptions;
|
|
@@ -15151,6 +15722,12 @@ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
|
|
|
15151
15722
|
* @default true
|
|
15152
15723
|
*/
|
|
15153
15724
|
jsx?: boolean;
|
|
15725
|
+
/**
|
|
15726
|
+
* Options for eslint-plugin-unicorn.
|
|
15727
|
+
*
|
|
15728
|
+
* @default true
|
|
15729
|
+
*/
|
|
15730
|
+
unicorn?: boolean | OptionsUnicorn;
|
|
15154
15731
|
/**
|
|
15155
15732
|
* Enable test support.
|
|
15156
15733
|
*
|
|
@@ -15317,7 +15894,7 @@ declare const defaultPluginRenaming: {
|
|
|
15317
15894
|
* @returns {Promise<TypedFlatConfigItem[]>}
|
|
15318
15895
|
* The merged ESLint configurations.
|
|
15319
15896
|
*/
|
|
15320
|
-
declare function jun(options?: OptionsConfig & TypedFlatConfigItem, ...userConfigs: Awaitable<TypedFlatConfigItem | TypedFlatConfigItem[] | FlatConfigComposer<any, any> | Linter.Config[]>[]): FlatConfigComposer<TypedFlatConfigItem, ConfigNames>;
|
|
15897
|
+
declare function jun(options?: OptionsConfig & Omit<TypedFlatConfigItem, 'files'>, ...userConfigs: Awaitable<TypedFlatConfigItem | TypedFlatConfigItem[] | FlatConfigComposer<any, any> | Linter.Config[]>[]): FlatConfigComposer<TypedFlatConfigItem, ConfigNames>;
|
|
15321
15898
|
type ResolvedOptions<T> = T extends boolean ? never : NonNullable<T>;
|
|
15322
15899
|
declare function resolveSubOptions<K extends keyof OptionsConfig>(options: OptionsConfig, key: K): ResolvedOptions<OptionsConfig[K]>;
|
|
15323
15900
|
declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsConfig, key: K): Partial<Linter.RulesRecord & RuleOptions>;
|
|
@@ -15328,9 +15905,11 @@ declare function command(): Promise<TypedFlatConfigItem[]>;
|
|
|
15328
15905
|
|
|
15329
15906
|
declare function comments(): Promise<TypedFlatConfigItem[]>;
|
|
15330
15907
|
|
|
15908
|
+
declare function disables(): Promise<TypedFlatConfigItem[]>;
|
|
15909
|
+
|
|
15331
15910
|
declare function formatters(options?: OptionsFormatters | true, stylistic?: StylisticConfig): Promise<TypedFlatConfigItem[]>;
|
|
15332
15911
|
|
|
15333
|
-
declare function ignores(): Promise<TypedFlatConfigItem[]>;
|
|
15912
|
+
declare function ignores(userIgnores?: string[]): Promise<TypedFlatConfigItem[]>;
|
|
15334
15913
|
|
|
15335
15914
|
declare function imports(options?: OptionsStylistic): Promise<TypedFlatConfigItem[]>;
|
|
15336
15915
|
|
|
@@ -15338,16 +15917,16 @@ declare function javascript(options?: OptionsIsInEditor & OptionsOverrides): Pro
|
|
|
15338
15917
|
|
|
15339
15918
|
declare function jsdoc(options?: OptionsStylistic): Promise<TypedFlatConfigItem[]>;
|
|
15340
15919
|
|
|
15341
|
-
declare function jsx(): Promise<TypedFlatConfigItem[]>;
|
|
15342
|
-
|
|
15343
15920
|
declare function jsonc(options?: OptionsFiles & OptionsStylistic & OptionsOverrides): Promise<TypedFlatConfigItem[]>;
|
|
15344
15921
|
|
|
15922
|
+
declare function jsx(): Promise<TypedFlatConfigItem[]>;
|
|
15923
|
+
|
|
15345
15924
|
declare function markdown(options?: OptionsFiles & OptionsComponentExts & OptionsOverrides): Promise<TypedFlatConfigItem[]>;
|
|
15346
15925
|
|
|
15347
15926
|
declare function node(): Promise<TypedFlatConfigItem[]>;
|
|
15348
15927
|
|
|
15349
15928
|
/**
|
|
15350
|
-
*
|
|
15929
|
+
* Perfectionist plugin for props and items sorting.
|
|
15351
15930
|
*
|
|
15352
15931
|
* @see https://github.com/azat-io/eslint-plugin-perfectionist
|
|
15353
15932
|
*/
|
|
@@ -15355,6 +15934,8 @@ declare function perfectionist(): Promise<TypedFlatConfigItem[]>;
|
|
|
15355
15934
|
|
|
15356
15935
|
declare function react(options?: OptionsTypeScriptWithTypes & OptionsOverrides & OptionsFiles): Promise<TypedFlatConfigItem[]>;
|
|
15357
15936
|
|
|
15937
|
+
declare function regexp(options?: OptionsRegExp & OptionsOverrides): Promise<TypedFlatConfigItem[]>;
|
|
15938
|
+
|
|
15358
15939
|
declare function solid(options?: OptionsHasTypeScript & OptionsOverrides & OptionsFiles & OptionsTypeScriptWithTypes): Promise<TypedFlatConfigItem[]>;
|
|
15359
15940
|
|
|
15360
15941
|
/**
|
|
@@ -15384,7 +15965,7 @@ declare function toml(options?: OptionsOverrides & OptionsStylistic & OptionsFil
|
|
|
15384
15965
|
|
|
15385
15966
|
declare function typescript(options?: OptionsFiles & OptionsComponentExts & OptionsOverrides & OptionsTypeScriptWithTypes & OptionsTypeScriptParserOptions & OptionsProjectType): Promise<TypedFlatConfigItem[]>;
|
|
15386
15967
|
|
|
15387
|
-
declare function unicorn(): Promise<TypedFlatConfigItem[]>;
|
|
15968
|
+
declare function unicorn(options?: OptionsUnicorn): Promise<TypedFlatConfigItem[]>;
|
|
15388
15969
|
|
|
15389
15970
|
declare function unocss(options?: OptionsUnoCSS): Promise<TypedFlatConfigItem[]>;
|
|
15390
15971
|
|
|
@@ -15392,8 +15973,6 @@ declare function vue(options?: OptionsVue & OptionsHasTypeScript & OptionsOverri
|
|
|
15392
15973
|
|
|
15393
15974
|
declare function yaml(options?: OptionsOverrides & OptionsStylistic & OptionsFiles): Promise<TypedFlatConfigItem[]>;
|
|
15394
15975
|
|
|
15395
|
-
declare function regexp(options?: OptionsRegExp & OptionsOverrides): Promise<TypedFlatConfigItem[]>;
|
|
15396
|
-
|
|
15397
15976
|
declare const GLOB_SRC_EXT = "?([cm])[jt]s?(x)";
|
|
15398
15977
|
declare const GLOB_SRC = "**/*.?([cm])[jt]s?(x)";
|
|
15399
15978
|
declare const GLOB_JS = "**/*.?([cm])js";
|
|
@@ -15460,7 +16039,7 @@ declare function combine(...configs: Awaitable<TypedFlatConfigItem | TypedFlatCo
|
|
|
15460
16039
|
*
|
|
15461
16040
|
* @example
|
|
15462
16041
|
* ```ts
|
|
15463
|
-
* import { renameRules } from '@
|
|
16042
|
+
* import { renameRules } from '@jun2030/eslint-config'
|
|
15464
16043
|
*
|
|
15465
16044
|
* export default [{
|
|
15466
16045
|
* rules: renameRules(
|
|
@@ -15478,7 +16057,7 @@ declare function renameRules(rules: Record<string, any>, map: Record<string, str
|
|
|
15478
16057
|
*
|
|
15479
16058
|
* @example
|
|
15480
16059
|
* ```ts
|
|
15481
|
-
* import { renamePluginInConfigs } from '@
|
|
16060
|
+
* import { renamePluginInConfigs } from '@jun2030/eslint-config'
|
|
15482
16061
|
* import someConfigs from './some-configs'
|
|
15483
16062
|
*
|
|
15484
16063
|
* export default renamePluginInConfigs(someConfigs, {
|
|
@@ -15497,4 +16076,4 @@ declare function ensurePackages(packages: (string | undefined)[]): Promise<void>
|
|
|
15497
16076
|
declare function isInEditorEnv(): boolean;
|
|
15498
16077
|
declare function isInGitHooksOrLintStaged(): boolean;
|
|
15499
16078
|
|
|
15500
|
-
export { type Awaitable, type ConfigNames, GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_XML, GLOB_YAML, type OptionsComponentExts, type OptionsConfig, type OptionsFiles, type OptionsFormatters, type OptionsHasTypeScript, type OptionsIsInEditor, type OptionsOverrides, type OptionsProjectType, type OptionsRegExp, type OptionsStylistic, type OptionsTypeScriptParserOptions, type OptionsTypeScriptWithTypes, type OptionsTypescript, type OptionsUnoCSS, type OptionsVue, type ResolvedOptions, type Rules, type StylisticConfig, StylisticConfigDefaults, type StylisticOptions, type TypedFlatConfigItem, astro, combine, command, comments, jun as default, defaultPluginRenaming, ensurePackages, formatters, getOverrides, ignores, imports, interopDefault, isInEditorEnv, isInGitHooksOrLintStaged, isPackageInScope, javascript, jsdoc, jsonc, jsx, jun, markdown, node, parserPlain, perfectionist, react, regexp, renamePluginInConfigs, renameRules, resolveSubOptions, solid, sortPackageJson, sortTsconfig, stylistic, svelte, test, toArray, toml, typescript, unicorn, unocss, vue, yaml };
|
|
16079
|
+
export { type Awaitable, type ConfigNames, GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_XML, GLOB_YAML, type OptionsComponentExts, type OptionsConfig, type OptionsFiles, type OptionsFormatters, type OptionsHasTypeScript, type OptionsIsInEditor, type OptionsOverrides, type OptionsProjectType, type OptionsRegExp, type OptionsStylistic, type OptionsTypeScriptParserOptions, type OptionsTypeScriptWithTypes, type OptionsTypescript, type OptionsUnicorn, type OptionsUnoCSS, type OptionsVue, type ResolvedOptions, type Rules, type StylisticConfig, StylisticConfigDefaults, type StylisticOptions, type TypedFlatConfigItem, astro, combine, command, comments, jun as default, defaultPluginRenaming, disables, ensurePackages, formatters, getOverrides, ignores, imports, interopDefault, isInEditorEnv, isInGitHooksOrLintStaged, isPackageInScope, javascript, jsdoc, jsonc, jsx, jun, markdown, node, parserPlain, perfectionist, react, regexp, renamePluginInConfigs, renameRules, resolveSubOptions, solid, sortPackageJson, sortTsconfig, stylistic, svelte, test, toArray, toml, typescript, unicorn, unocss, vue, yaml };
|