@lincy/eslint-config 5.2.4 → 5.2.6
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/README.md +2 -4
- package/dist/index.cjs +74 -29
- package/dist/index.d.cts +698 -358
- package/dist/index.d.ts +698 -358
- package/dist/index.js +73 -28
- package/package.json +31 -31
package/dist/index.d.cts
CHANGED
|
@@ -102,6 +102,26 @@ interface VendoredPrettierOptionsRequired {
|
|
|
102
102
|
* @default false
|
|
103
103
|
*/
|
|
104
104
|
singleAttributePerLine: boolean;
|
|
105
|
+
/**
|
|
106
|
+
* 如何处理 XML 中的空格
|
|
107
|
+
* @default "preserve"
|
|
108
|
+
*/
|
|
109
|
+
xmlQuoteAttributes: 'single' | 'double' | 'preserve';
|
|
110
|
+
/**
|
|
111
|
+
* 是否在自闭合 XML 元素的括号内放置空格.
|
|
112
|
+
* @default true
|
|
113
|
+
*/
|
|
114
|
+
xmlSelfClosingSpace: boolean;
|
|
115
|
+
/**
|
|
116
|
+
* 是否按 XML 元素中的键对属性进行排序.
|
|
117
|
+
* @default false
|
|
118
|
+
*/
|
|
119
|
+
xmlSortAttributesByKey: boolean;
|
|
120
|
+
/**
|
|
121
|
+
* 如何处理 XML 中的空格
|
|
122
|
+
* @default "ignore"
|
|
123
|
+
*/
|
|
124
|
+
xmlWhitespaceSensitivity: 'ignore' | 'strict' | 'preserve';
|
|
105
125
|
}
|
|
106
126
|
|
|
107
127
|
/* eslint-disable */
|
|
@@ -154,6 +174,11 @@ interface RuleOptions {
|
|
|
154
174
|
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-node-modules-by-path.test.ts
|
|
155
175
|
*/
|
|
156
176
|
'antfu/no-import-node-modules-by-path'?: Linter.RuleEntry<[]>
|
|
177
|
+
/**
|
|
178
|
+
* Prevent using top-level await
|
|
179
|
+
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-top-level-await.test.ts
|
|
180
|
+
*/
|
|
181
|
+
'antfu/no-top-level-await'?: Linter.RuleEntry<[]>
|
|
157
182
|
/**
|
|
158
183
|
* Do not use `exports =`
|
|
159
184
|
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-ts-export-equal.test.ts
|
|
@@ -481,233 +506,233 @@ interface RuleOptions {
|
|
|
481
506
|
'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
|
|
482
507
|
/**
|
|
483
508
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
484
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
509
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/consistent-type-specifier-style.md
|
|
485
510
|
*/
|
|
486
511
|
'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
|
|
487
512
|
/**
|
|
488
513
|
* Ensure a default export is present, given a default import.
|
|
489
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
514
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/default.md
|
|
490
515
|
*/
|
|
491
516
|
'import/default'?: Linter.RuleEntry<[]>
|
|
492
517
|
/**
|
|
493
518
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
494
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
519
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/dynamic-import-chunkname.md
|
|
495
520
|
*/
|
|
496
521
|
'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
|
|
497
522
|
/**
|
|
498
523
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
499
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
524
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/export.md
|
|
500
525
|
*/
|
|
501
526
|
'import/export'?: Linter.RuleEntry<[]>
|
|
502
527
|
/**
|
|
503
528
|
* Ensure all exports appear after other statements.
|
|
504
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
529
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/exports-last.md
|
|
505
530
|
*/
|
|
506
531
|
'import/exports-last'?: Linter.RuleEntry<[]>
|
|
507
532
|
/**
|
|
508
533
|
* Ensure consistent use of file extension within the import path.
|
|
509
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
534
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/extensions.md
|
|
510
535
|
*/
|
|
511
536
|
'import/extensions'?: Linter.RuleEntry<ImportExtensions>
|
|
512
537
|
/**
|
|
513
538
|
* Ensure all imports appear before other statements.
|
|
514
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
539
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/first.md
|
|
515
540
|
*/
|
|
516
541
|
'import/first'?: Linter.RuleEntry<ImportFirst>
|
|
517
542
|
/**
|
|
518
543
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
519
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
544
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/group-exports.md
|
|
520
545
|
*/
|
|
521
546
|
'import/group-exports'?: Linter.RuleEntry<[]>
|
|
522
547
|
/**
|
|
523
548
|
* Replaced by `import-x/first`.
|
|
524
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
549
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/imports-first.md
|
|
525
550
|
* @deprecated
|
|
526
551
|
*/
|
|
527
552
|
'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
|
|
528
553
|
/**
|
|
529
554
|
* Enforce the maximum number of dependencies a module can have.
|
|
530
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
555
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/max-dependencies.md
|
|
531
556
|
*/
|
|
532
557
|
'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
|
|
533
558
|
/**
|
|
534
559
|
* Ensure named imports correspond to a named export in the remote file.
|
|
535
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
560
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/named.md
|
|
536
561
|
*/
|
|
537
562
|
'import/named'?: Linter.RuleEntry<ImportNamed>
|
|
538
563
|
/**
|
|
539
564
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
540
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
565
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/namespace.md
|
|
541
566
|
*/
|
|
542
567
|
'import/namespace'?: Linter.RuleEntry<ImportNamespace>
|
|
543
568
|
/**
|
|
544
569
|
* Enforce a newline after import statements.
|
|
545
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
570
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/newline-after-import.md
|
|
546
571
|
*/
|
|
547
572
|
'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
|
|
548
573
|
/**
|
|
549
574
|
* Forbid import of modules using absolute paths.
|
|
550
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
575
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-absolute-path.md
|
|
551
576
|
*/
|
|
552
577
|
'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
|
|
553
578
|
/**
|
|
554
579
|
* Forbid AMD `require` and `define` calls.
|
|
555
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
580
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-amd.md
|
|
556
581
|
*/
|
|
557
582
|
'import/no-amd'?: Linter.RuleEntry<[]>
|
|
558
583
|
/**
|
|
559
584
|
* Forbid anonymous values as default exports.
|
|
560
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
585
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-anonymous-default-export.md
|
|
561
586
|
*/
|
|
562
587
|
'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
|
|
563
588
|
/**
|
|
564
589
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
565
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
590
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-commonjs.md
|
|
566
591
|
*/
|
|
567
592
|
'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
|
|
568
593
|
/**
|
|
569
594
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
570
|
-
* @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/no-cycle.md
|
|
571
596
|
*/
|
|
572
597
|
'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
|
|
573
598
|
/**
|
|
574
599
|
* Forbid default exports.
|
|
575
|
-
* @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/no-default-export.md
|
|
576
601
|
*/
|
|
577
602
|
'import/no-default-export'?: Linter.RuleEntry<[]>
|
|
578
603
|
/**
|
|
579
604
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
580
|
-
* @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/no-deprecated.md
|
|
581
606
|
*/
|
|
582
607
|
'import/no-deprecated'?: Linter.RuleEntry<[]>
|
|
583
608
|
/**
|
|
584
609
|
* Forbid repeated import of the same module in multiple places.
|
|
585
|
-
* @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/no-duplicates.md
|
|
586
611
|
*/
|
|
587
612
|
'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
|
|
588
613
|
/**
|
|
589
614
|
* Forbid `require()` calls with expressions.
|
|
590
|
-
* @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/no-dynamic-require.md
|
|
591
616
|
*/
|
|
592
617
|
'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
|
|
593
618
|
/**
|
|
594
619
|
* Forbid empty named import blocks.
|
|
595
|
-
* @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/no-empty-named-blocks.md
|
|
596
621
|
*/
|
|
597
622
|
'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
598
623
|
/**
|
|
599
624
|
* Forbid the use of extraneous packages.
|
|
600
|
-
* @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/no-extraneous-dependencies.md
|
|
601
626
|
*/
|
|
602
627
|
'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
|
|
603
628
|
/**
|
|
604
629
|
* Forbid import statements with CommonJS module.exports.
|
|
605
|
-
* @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/no-import-module-exports.md
|
|
606
631
|
*/
|
|
607
632
|
'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
|
|
608
633
|
/**
|
|
609
634
|
* Forbid importing the submodules of other modules.
|
|
610
|
-
* @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/no-internal-modules.md
|
|
611
636
|
*/
|
|
612
637
|
'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
|
|
613
638
|
/**
|
|
614
639
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
615
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
640
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-mutable-exports.md
|
|
616
641
|
*/
|
|
617
642
|
'import/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
618
643
|
/**
|
|
619
644
|
* Forbid use of exported name as identifier of default export.
|
|
620
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
645
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-as-default.md
|
|
621
646
|
*/
|
|
622
647
|
'import/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
623
648
|
/**
|
|
624
649
|
* Forbid use of exported name as property of default export.
|
|
625
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
650
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-as-default-member.md
|
|
626
651
|
*/
|
|
627
652
|
'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
628
653
|
/**
|
|
629
654
|
* Forbid named default exports.
|
|
630
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
655
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-default.md
|
|
631
656
|
*/
|
|
632
657
|
'import/no-named-default'?: Linter.RuleEntry<[]>
|
|
633
658
|
/**
|
|
634
659
|
* Forbid named exports.
|
|
635
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
660
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-export.md
|
|
636
661
|
*/
|
|
637
662
|
'import/no-named-export'?: Linter.RuleEntry<[]>
|
|
638
663
|
/**
|
|
639
664
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
640
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
665
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-namespace.md
|
|
641
666
|
*/
|
|
642
667
|
'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
|
|
643
668
|
/**
|
|
644
669
|
* Forbid Node.js builtin modules.
|
|
645
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
670
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-nodejs-modules.md
|
|
646
671
|
*/
|
|
647
672
|
'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
|
|
648
673
|
/**
|
|
649
674
|
* Forbid importing packages through relative paths.
|
|
650
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
675
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-relative-packages.md
|
|
651
676
|
*/
|
|
652
677
|
'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
|
|
653
678
|
/**
|
|
654
679
|
* Forbid importing modules from parent directories.
|
|
655
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
680
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-relative-parent-imports.md
|
|
656
681
|
*/
|
|
657
682
|
'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
|
|
658
683
|
/**
|
|
659
684
|
* Forbid importing a default export by a different name.
|
|
660
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
685
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-rename-default.md
|
|
661
686
|
*/
|
|
662
687
|
'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
|
|
663
688
|
/**
|
|
664
689
|
* Enforce which files can be imported in a given folder.
|
|
665
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
690
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-restricted-paths.md
|
|
666
691
|
*/
|
|
667
692
|
'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
|
|
668
693
|
/**
|
|
669
694
|
* Forbid a module from importing itself.
|
|
670
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
695
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-self-import.md
|
|
671
696
|
*/
|
|
672
697
|
'import/no-self-import'?: Linter.RuleEntry<[]>
|
|
673
698
|
/**
|
|
674
699
|
* Forbid unassigned imports.
|
|
675
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
700
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-unassigned-import.md
|
|
676
701
|
*/
|
|
677
702
|
'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
|
|
678
703
|
/**
|
|
679
704
|
* Ensure imports point to a file/module that can be resolved.
|
|
680
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
705
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-unresolved.md
|
|
681
706
|
*/
|
|
682
707
|
'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
|
|
683
708
|
/**
|
|
684
709
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
685
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
710
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-unused-modules.md
|
|
686
711
|
*/
|
|
687
712
|
'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
|
|
688
713
|
/**
|
|
689
714
|
* Forbid unnecessary path segments in import and require statements.
|
|
690
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
715
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-useless-path-segments.md
|
|
691
716
|
*/
|
|
692
717
|
'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
|
|
693
718
|
/**
|
|
694
719
|
* Forbid webpack loader syntax in imports.
|
|
695
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
720
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-webpack-loader-syntax.md
|
|
696
721
|
*/
|
|
697
722
|
'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
698
723
|
/**
|
|
699
724
|
* Enforce a convention in module import order.
|
|
700
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
725
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/order.md
|
|
701
726
|
*/
|
|
702
727
|
'import/order'?: Linter.RuleEntry<ImportOrder>
|
|
703
728
|
/**
|
|
704
729
|
* Prefer a default export if module exports a single name or multiple names.
|
|
705
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
730
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/prefer-default-export.md
|
|
706
731
|
*/
|
|
707
732
|
'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
|
|
708
733
|
/**
|
|
709
734
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
710
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
735
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/unambiguous.md
|
|
711
736
|
*/
|
|
712
737
|
'import/unambiguous'?: Linter.RuleEntry<[]>
|
|
713
738
|
/**
|
|
@@ -858,6 +883,7 @@ interface RuleOptions {
|
|
|
858
883
|
*/
|
|
859
884
|
'jsdoc/no-missing-syntax'?: Linter.RuleEntry<JsdocNoMissingSyntax>
|
|
860
885
|
/**
|
|
886
|
+
* Prevents use of multiple asterisks at the beginning of lines.
|
|
861
887
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-multi-asterisks.md#repos-sticky-header
|
|
862
888
|
*/
|
|
863
889
|
'jsdoc/no-multi-asterisks'?: Linter.RuleEntry<JsdocNoMultiAsterisks>
|
|
@@ -1002,6 +1028,7 @@ interface RuleOptions {
|
|
|
1002
1028
|
*/
|
|
1003
1029
|
'jsdoc/tag-lines'?: Linter.RuleEntry<JsdocTagLines>
|
|
1004
1030
|
/**
|
|
1031
|
+
* Auto-escape certain characters that are input within block and tag descriptions.
|
|
1005
1032
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/text-escaping.md#repos-sticky-header
|
|
1006
1033
|
*/
|
|
1007
1034
|
'jsdoc/text-escaping'?: Linter.RuleEntry<JsdocTextEscaping>
|
|
@@ -2290,7 +2317,7 @@ interface RuleOptions {
|
|
|
2290
2317
|
* disallow the use of `process.env`
|
|
2291
2318
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-process-env.md
|
|
2292
2319
|
*/
|
|
2293
|
-
'node/no-process-env'?: Linter.RuleEntry<
|
|
2320
|
+
'node/no-process-env'?: Linter.RuleEntry<NodeNoProcessEnv>
|
|
2294
2321
|
/**
|
|
2295
2322
|
* disallow the use of `process.exit()`
|
|
2296
2323
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-process-exit.md
|
|
@@ -2473,6 +2500,7 @@ interface RuleOptions {
|
|
|
2473
2500
|
/**
|
|
2474
2501
|
* Enforce sorted Astro attributes.
|
|
2475
2502
|
* @see https://perfectionist.dev/rules/sort-astro-attributes
|
|
2503
|
+
* @deprecated
|
|
2476
2504
|
*/
|
|
2477
2505
|
'perfectionist/sort-astro-attributes'?: Linter.RuleEntry<PerfectionistSortAstroAttributes>
|
|
2478
2506
|
/**
|
|
@@ -2543,6 +2571,7 @@ interface RuleOptions {
|
|
|
2543
2571
|
/**
|
|
2544
2572
|
* Enforce sorted Svelte attributes.
|
|
2545
2573
|
* @see https://perfectionist.dev/rules/sort-svelte-attributes
|
|
2574
|
+
* @deprecated
|
|
2546
2575
|
*/
|
|
2547
2576
|
'perfectionist/sort-svelte-attributes'?: Linter.RuleEntry<PerfectionistSortSvelteAttributes>
|
|
2548
2577
|
/**
|
|
@@ -2563,6 +2592,7 @@ interface RuleOptions {
|
|
|
2563
2592
|
/**
|
|
2564
2593
|
* Enforce sorted Vue attributes.
|
|
2565
2594
|
* @see https://perfectionist.dev/rules/sort-vue-attributes
|
|
2595
|
+
* @deprecated
|
|
2566
2596
|
*/
|
|
2567
2597
|
'perfectionist/sort-vue-attributes'?: Linter.RuleEntry<PerfectionistSortVueAttributes>
|
|
2568
2598
|
/**
|
|
@@ -2724,8 +2754,8 @@ interface RuleOptions {
|
|
|
2724
2754
|
*/
|
|
2725
2755
|
'react-hooks-extra/no-direct-set-state-in-use-effect'?: Linter.RuleEntry<[]>
|
|
2726
2756
|
/**
|
|
2727
|
-
* disallow direct calls to the 'set' function of 'useState' in '
|
|
2728
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-effect
|
|
2757
|
+
* disallow direct calls to the 'set' function of 'useState' in 'useLayoutEffect'
|
|
2758
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-layout-effect
|
|
2729
2759
|
*/
|
|
2730
2760
|
'react-hooks-extra/no-direct-set-state-in-use-layout-effect'?: Linter.RuleEntry<[]>
|
|
2731
2761
|
/**
|
|
@@ -2988,12 +3018,17 @@ interface RuleOptions {
|
|
|
2988
3018
|
* disallow unnecessary fragments
|
|
2989
3019
|
* @see https://eslint-react.xyz/docs/rules/no-useless-fragment
|
|
2990
3020
|
*/
|
|
2991
|
-
'react/no-useless-fragment'?: Linter.RuleEntry<
|
|
3021
|
+
'react/no-useless-fragment'?: Linter.RuleEntry<ReactNoUselessFragment>
|
|
2992
3022
|
/**
|
|
2993
3023
|
* enforce using destructuring assignment in component props and context
|
|
2994
3024
|
* @see https://eslint-react.xyz/docs/rules/prefer-destructuring-assignment
|
|
2995
3025
|
*/
|
|
2996
3026
|
'react/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>
|
|
3027
|
+
/**
|
|
3028
|
+
* enforce React is imported via a namespace import
|
|
3029
|
+
* @see https://eslint-react.xyz/docs/rules/prefer-react-namespace-import
|
|
3030
|
+
*/
|
|
3031
|
+
'react/prefer-react-namespace-import'?: Linter.RuleEntry<[]>
|
|
2997
3032
|
/**
|
|
2998
3033
|
* enforce read-only props in components
|
|
2999
3034
|
* @see https://eslint-react.xyz/docs/rules/prefer-read-only-props
|
|
@@ -3574,6 +3609,11 @@ interface RuleOptions {
|
|
|
3574
3609
|
* @see https://eslint.style/rules/js/computed-property-spacing
|
|
3575
3610
|
*/
|
|
3576
3611
|
'style/computed-property-spacing'?: Linter.RuleEntry<StyleComputedPropertySpacing>
|
|
3612
|
+
/**
|
|
3613
|
+
* Enforce consistent line breaks after opening and before closing braces
|
|
3614
|
+
* @see https://eslint.style/rules/plus/curly-newline
|
|
3615
|
+
*/
|
|
3616
|
+
'style/curly-newline'?: Linter.RuleEntry<StyleCurlyNewline>
|
|
3577
3617
|
/**
|
|
3578
3618
|
* Enforce consistent newlines before and after dots
|
|
3579
3619
|
* @see https://eslint.style/rules/js/dot-location
|
|
@@ -3638,7 +3678,7 @@ interface RuleOptions {
|
|
|
3638
3678
|
* Enforce closing tag location for multiline JSX
|
|
3639
3679
|
* @see https://eslint.style/rules/jsx/jsx-closing-tag-location
|
|
3640
3680
|
*/
|
|
3641
|
-
'style/jsx-closing-tag-location'?: Linter.RuleEntry<
|
|
3681
|
+
'style/jsx-closing-tag-location'?: Linter.RuleEntry<StyleJsxClosingTagLocation>
|
|
3642
3682
|
/**
|
|
3643
3683
|
* Disallow unnecessary JSX expressions when literals alone are sufficient or enforce JSX expressions on literals in JSX children or attributes
|
|
3644
3684
|
* @see https://eslint.style/rules/jsx/jsx-curly-brace-presence
|
|
@@ -4289,6 +4329,11 @@ interface RuleOptions {
|
|
|
4289
4329
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-todo.md
|
|
4290
4330
|
*/
|
|
4291
4331
|
'test/prefer-todo'?: Linter.RuleEntry<[]>
|
|
4332
|
+
/**
|
|
4333
|
+
* Prefer `vi.mocked()` over `fn as Mock`
|
|
4334
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-vi-mocked.md
|
|
4335
|
+
*/
|
|
4336
|
+
'test/prefer-vi-mocked'?: Linter.RuleEntry<[]>
|
|
4292
4337
|
/**
|
|
4293
4338
|
* require setup and teardown to be within a hook
|
|
4294
4339
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-hook.md
|
|
@@ -5083,687 +5128,702 @@ interface RuleOptions {
|
|
|
5083
5128
|
'unicode-bom'?: Linter.RuleEntry<UnicodeBom>
|
|
5084
5129
|
/**
|
|
5085
5130
|
* Improve regexes by making them shorter, consistent, and safer.
|
|
5086
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5131
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/better-regex.md
|
|
5087
5132
|
*/
|
|
5088
5133
|
'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>
|
|
5089
5134
|
/**
|
|
5090
5135
|
* Enforce a specific parameter name in catch clauses.
|
|
5091
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5136
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/catch-error-name.md
|
|
5092
5137
|
*/
|
|
5093
5138
|
'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>
|
|
5094
5139
|
/**
|
|
5095
5140
|
* Use destructured variables over properties.
|
|
5096
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5141
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-destructuring.md
|
|
5097
5142
|
*/
|
|
5098
5143
|
'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>
|
|
5099
5144
|
/**
|
|
5100
5145
|
* Prefer consistent types when spreading a ternary in an array literal.
|
|
5101
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5146
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-empty-array-spread.md
|
|
5102
5147
|
*/
|
|
5103
5148
|
'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>
|
|
5149
|
+
/**
|
|
5150
|
+
* Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
|
|
5151
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-existence-index-check.md
|
|
5152
|
+
*/
|
|
5153
|
+
'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>
|
|
5104
5154
|
/**
|
|
5105
5155
|
* Move function definitions to the highest possible scope.
|
|
5106
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5156
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-function-scoping.md
|
|
5107
5157
|
*/
|
|
5108
5158
|
'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>
|
|
5109
5159
|
/**
|
|
5110
5160
|
* Enforce correct `Error` subclassing.
|
|
5111
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5161
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/custom-error-definition.md
|
|
5112
5162
|
*/
|
|
5113
5163
|
'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>
|
|
5114
5164
|
/**
|
|
5115
5165
|
* Enforce no spaces between braces.
|
|
5116
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5166
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/empty-brace-spaces.md
|
|
5117
5167
|
*/
|
|
5118
5168
|
'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>
|
|
5119
5169
|
/**
|
|
5120
5170
|
* Enforce passing a `message` value when creating a built-in error.
|
|
5121
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5171
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/error-message.md
|
|
5122
5172
|
*/
|
|
5123
5173
|
'unicorn/error-message'?: Linter.RuleEntry<[]>
|
|
5124
5174
|
/**
|
|
5125
5175
|
* Require escape sequences to use uppercase values.
|
|
5126
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5176
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/escape-case.md
|
|
5127
5177
|
*/
|
|
5128
5178
|
'unicorn/escape-case'?: Linter.RuleEntry<[]>
|
|
5129
5179
|
/**
|
|
5130
5180
|
* Add expiration conditions to TODO comments.
|
|
5131
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5181
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/expiring-todo-comments.md
|
|
5132
5182
|
*/
|
|
5133
5183
|
'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>
|
|
5134
5184
|
/**
|
|
5135
5185
|
* Enforce explicitly comparing the `length` or `size` property of a value.
|
|
5136
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5186
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/explicit-length-check.md
|
|
5137
5187
|
*/
|
|
5138
5188
|
'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>
|
|
5139
5189
|
/**
|
|
5140
5190
|
* Enforce a case style for filenames.
|
|
5141
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5191
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/filename-case.md
|
|
5142
5192
|
*/
|
|
5143
5193
|
'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>
|
|
5144
5194
|
/**
|
|
5145
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5195
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#import-index
|
|
5146
5196
|
* @deprecated
|
|
5147
5197
|
*/
|
|
5148
5198
|
'unicorn/import-index'?: Linter.RuleEntry<[]>
|
|
5149
5199
|
/**
|
|
5150
5200
|
* Enforce specific import styles per module.
|
|
5151
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5201
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/import-style.md
|
|
5152
5202
|
*/
|
|
5153
5203
|
'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>
|
|
5154
5204
|
/**
|
|
5155
5205
|
* Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
|
|
5156
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5206
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/new-for-builtins.md
|
|
5157
5207
|
*/
|
|
5158
5208
|
'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>
|
|
5159
5209
|
/**
|
|
5160
5210
|
* Enforce specifying rules to disable in `eslint-disable` comments.
|
|
5161
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5211
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-abusive-eslint-disable.md
|
|
5162
5212
|
*/
|
|
5163
5213
|
'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>
|
|
5164
5214
|
/**
|
|
5165
5215
|
* Disallow anonymous functions and classes as the default export.
|
|
5166
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5216
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-anonymous-default-export.md
|
|
5167
5217
|
*/
|
|
5168
5218
|
'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>
|
|
5169
5219
|
/**
|
|
5170
5220
|
* Prevent passing a function reference directly to iterator methods.
|
|
5171
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5221
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-callback-reference.md
|
|
5172
5222
|
*/
|
|
5173
5223
|
'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>
|
|
5174
5224
|
/**
|
|
5175
5225
|
* Prefer `for…of` over the `forEach` method.
|
|
5176
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5226
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-for-each.md
|
|
5177
5227
|
*/
|
|
5178
5228
|
'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>
|
|
5179
5229
|
/**
|
|
5180
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5230
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-array-instanceof
|
|
5181
5231
|
* @deprecated
|
|
5182
5232
|
*/
|
|
5183
5233
|
'unicorn/no-array-instanceof'?: Linter.RuleEntry<[]>
|
|
5184
5234
|
/**
|
|
5185
5235
|
* Disallow using the `this` argument in array methods.
|
|
5186
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5236
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-method-this-argument.md
|
|
5187
5237
|
*/
|
|
5188
5238
|
'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>
|
|
5189
5239
|
/**
|
|
5190
5240
|
* Enforce combining multiple `Array#push()` into one call.
|
|
5191
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5241
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-push-push.md
|
|
5192
5242
|
*/
|
|
5193
5243
|
'unicorn/no-array-push-push'?: Linter.RuleEntry<UnicornNoArrayPushPush>
|
|
5194
5244
|
/**
|
|
5195
5245
|
* Disallow `Array#reduce()` and `Array#reduceRight()`.
|
|
5196
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5246
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-reduce.md
|
|
5197
5247
|
*/
|
|
5198
5248
|
'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>
|
|
5199
5249
|
/**
|
|
5200
5250
|
* Disallow member access from await expression.
|
|
5201
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5251
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-await-expression-member.md
|
|
5202
5252
|
*/
|
|
5203
5253
|
'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>
|
|
5204
5254
|
/**
|
|
5205
5255
|
* Disallow using `await` in `Promise` method parameters.
|
|
5206
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5256
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-await-in-promise-methods.md
|
|
5207
5257
|
*/
|
|
5208
5258
|
'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
5209
5259
|
/**
|
|
5210
5260
|
* Do not use leading/trailing space between `console.log` parameters.
|
|
5211
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5261
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-console-spaces.md
|
|
5212
5262
|
*/
|
|
5213
5263
|
'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>
|
|
5214
5264
|
/**
|
|
5215
5265
|
* Do not use `document.cookie` directly.
|
|
5216
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5266
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-document-cookie.md
|
|
5217
5267
|
*/
|
|
5218
5268
|
'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>
|
|
5219
5269
|
/**
|
|
5220
5270
|
* Disallow empty files.
|
|
5221
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5271
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-empty-file.md
|
|
5222
5272
|
*/
|
|
5223
5273
|
'unicorn/no-empty-file'?: Linter.RuleEntry<[]>
|
|
5224
5274
|
/**
|
|
5225
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5275
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-fn-reference-in-iterator
|
|
5226
5276
|
* @deprecated
|
|
5227
5277
|
*/
|
|
5228
5278
|
'unicorn/no-fn-reference-in-iterator'?: Linter.RuleEntry<[]>
|
|
5229
5279
|
/**
|
|
5230
5280
|
* Do not use a `for` loop that can be replaced with a `for-of` loop.
|
|
5231
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5281
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-for-loop.md
|
|
5232
5282
|
*/
|
|
5233
5283
|
'unicorn/no-for-loop'?: Linter.RuleEntry<[]>
|
|
5234
5284
|
/**
|
|
5235
5285
|
* Enforce the use of Unicode escapes instead of hexadecimal escapes.
|
|
5236
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5286
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-hex-escape.md
|
|
5237
5287
|
*/
|
|
5238
5288
|
'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>
|
|
5239
5289
|
/**
|
|
5240
5290
|
* Require `Array.isArray()` instead of `instanceof Array`.
|
|
5241
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5291
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-instanceof-array.md
|
|
5242
5292
|
*/
|
|
5243
5293
|
'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>
|
|
5244
5294
|
/**
|
|
5245
5295
|
* Disallow invalid options in `fetch()` and `new Request()`.
|
|
5246
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5296
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-invalid-fetch-options.md
|
|
5247
5297
|
*/
|
|
5248
5298
|
'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>
|
|
5249
5299
|
/**
|
|
5250
5300
|
* Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
|
|
5251
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5301
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-invalid-remove-event-listener.md
|
|
5252
5302
|
*/
|
|
5253
5303
|
'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>
|
|
5254
5304
|
/**
|
|
5255
5305
|
* Disallow identifiers starting with `new` or `class`.
|
|
5256
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5306
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-keyword-prefix.md
|
|
5257
5307
|
*/
|
|
5258
5308
|
'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>
|
|
5259
5309
|
/**
|
|
5260
5310
|
* Disallow using `.length` as the `end` argument of `{Array,String,TypedArray}#slice()`.
|
|
5261
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5311
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-length-as-slice-end.md
|
|
5262
5312
|
*/
|
|
5263
5313
|
'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>
|
|
5264
5314
|
/**
|
|
5265
5315
|
* Disallow `if` statements as the only statement in `if` blocks without `else`.
|
|
5266
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5316
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-lonely-if.md
|
|
5267
5317
|
*/
|
|
5268
5318
|
'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>
|
|
5269
5319
|
/**
|
|
5270
5320
|
* Disallow a magic number as the `depth` argument in `Array#flat(…).`
|
|
5271
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5321
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-magic-array-flat-depth.md
|
|
5272
5322
|
*/
|
|
5273
5323
|
'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>
|
|
5274
5324
|
/**
|
|
5275
5325
|
* Disallow negated conditions.
|
|
5276
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5326
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-negated-condition.md
|
|
5277
5327
|
*/
|
|
5278
5328
|
'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>
|
|
5279
5329
|
/**
|
|
5280
5330
|
* Disallow negated expression in equality check.
|
|
5281
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5331
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-negation-in-equality-check.md
|
|
5282
5332
|
*/
|
|
5283
5333
|
'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>
|
|
5284
5334
|
/**
|
|
5285
5335
|
* Disallow nested ternary expressions.
|
|
5286
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5336
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-nested-ternary.md
|
|
5287
5337
|
*/
|
|
5288
5338
|
'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>
|
|
5289
5339
|
/**
|
|
5290
5340
|
* Disallow `new Array()`.
|
|
5291
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5341
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-new-array.md
|
|
5292
5342
|
*/
|
|
5293
5343
|
'unicorn/no-new-array'?: Linter.RuleEntry<[]>
|
|
5294
5344
|
/**
|
|
5295
5345
|
* Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
|
|
5296
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5346
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-new-buffer.md
|
|
5297
5347
|
*/
|
|
5298
5348
|
'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>
|
|
5299
5349
|
/**
|
|
5300
5350
|
* Disallow the use of the `null` literal.
|
|
5301
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5351
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-null.md
|
|
5302
5352
|
*/
|
|
5303
5353
|
'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>
|
|
5304
5354
|
/**
|
|
5305
5355
|
* Disallow the use of objects as default parameters.
|
|
5306
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5356
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-object-as-default-parameter.md
|
|
5307
5357
|
*/
|
|
5308
5358
|
'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>
|
|
5309
5359
|
/**
|
|
5310
5360
|
* Disallow `process.exit()`.
|
|
5311
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5361
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-process-exit.md
|
|
5312
5362
|
*/
|
|
5313
5363
|
'unicorn/no-process-exit'?: Linter.RuleEntry<[]>
|
|
5314
5364
|
/**
|
|
5315
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5365
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-reduce
|
|
5316
5366
|
* @deprecated
|
|
5317
5367
|
*/
|
|
5318
5368
|
'unicorn/no-reduce'?: Linter.RuleEntry<[]>
|
|
5319
5369
|
/**
|
|
5320
5370
|
* Disallow passing single-element arrays to `Promise` methods.
|
|
5321
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5371
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-single-promise-in-promise-methods.md
|
|
5322
5372
|
*/
|
|
5323
5373
|
'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
5324
5374
|
/**
|
|
5325
5375
|
* Disallow classes that only have static members.
|
|
5326
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5376
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-static-only-class.md
|
|
5327
5377
|
*/
|
|
5328
5378
|
'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>
|
|
5329
5379
|
/**
|
|
5330
5380
|
* Disallow `then` property.
|
|
5331
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5381
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-thenable.md
|
|
5332
5382
|
*/
|
|
5333
5383
|
'unicorn/no-thenable'?: Linter.RuleEntry<[]>
|
|
5334
5384
|
/**
|
|
5335
5385
|
* Disallow assigning `this` to a variable.
|
|
5336
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5386
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-this-assignment.md
|
|
5337
5387
|
*/
|
|
5338
5388
|
'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>
|
|
5339
5389
|
/**
|
|
5340
5390
|
* Disallow comparing `undefined` using `typeof`.
|
|
5341
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5391
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-typeof-undefined.md
|
|
5342
5392
|
*/
|
|
5343
5393
|
'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>
|
|
5344
5394
|
/**
|
|
5345
5395
|
* Disallow awaiting non-promise values.
|
|
5346
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5396
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unnecessary-await.md
|
|
5347
5397
|
*/
|
|
5348
5398
|
'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>
|
|
5349
5399
|
/**
|
|
5350
5400
|
* Enforce the use of built-in methods instead of unnecessary polyfills.
|
|
5351
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5401
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unnecessary-polyfills.md
|
|
5352
5402
|
*/
|
|
5353
5403
|
'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>
|
|
5354
5404
|
/**
|
|
5355
5405
|
* Disallow unreadable array destructuring.
|
|
5356
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5406
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unreadable-array-destructuring.md
|
|
5357
5407
|
*/
|
|
5358
5408
|
'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>
|
|
5359
5409
|
/**
|
|
5360
5410
|
* Disallow unreadable IIFEs.
|
|
5361
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5411
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unreadable-iife.md
|
|
5362
5412
|
*/
|
|
5363
5413
|
'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>
|
|
5364
5414
|
/**
|
|
5365
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5415
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-unsafe-regex
|
|
5366
5416
|
* @deprecated
|
|
5367
5417
|
*/
|
|
5368
5418
|
'unicorn/no-unsafe-regex'?: Linter.RuleEntry<[]>
|
|
5369
5419
|
/**
|
|
5370
5420
|
* Disallow unused object properties.
|
|
5371
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5421
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unused-properties.md
|
|
5372
5422
|
*/
|
|
5373
5423
|
'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>
|
|
5374
5424
|
/**
|
|
5375
5425
|
* Disallow useless fallback when spreading in object literals.
|
|
5376
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5426
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-fallback-in-spread.md
|
|
5377
5427
|
*/
|
|
5378
5428
|
'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>
|
|
5379
5429
|
/**
|
|
5380
5430
|
* Disallow useless array length check.
|
|
5381
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5431
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-length-check.md
|
|
5382
5432
|
*/
|
|
5383
5433
|
'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>
|
|
5384
5434
|
/**
|
|
5385
5435
|
* Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
|
|
5386
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5436
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-promise-resolve-reject.md
|
|
5387
5437
|
*/
|
|
5388
5438
|
'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>
|
|
5389
5439
|
/**
|
|
5390
5440
|
* Disallow unnecessary spread.
|
|
5391
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5441
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-spread.md
|
|
5392
5442
|
*/
|
|
5393
5443
|
'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>
|
|
5394
5444
|
/**
|
|
5395
5445
|
* Disallow useless case in switch statements.
|
|
5396
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5446
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-switch-case.md
|
|
5397
5447
|
*/
|
|
5398
5448
|
'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>
|
|
5399
5449
|
/**
|
|
5400
5450
|
* Disallow useless `undefined`.
|
|
5401
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5451
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-undefined.md
|
|
5402
5452
|
*/
|
|
5403
5453
|
'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>
|
|
5404
5454
|
/**
|
|
5405
5455
|
* Disallow number literals with zero fractions or dangling dots.
|
|
5406
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5456
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-zero-fractions.md
|
|
5407
5457
|
*/
|
|
5408
5458
|
'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>
|
|
5409
5459
|
/**
|
|
5410
5460
|
* Enforce proper case for numeric literals.
|
|
5411
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5461
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/number-literal-case.md
|
|
5412
5462
|
*/
|
|
5413
5463
|
'unicorn/number-literal-case'?: Linter.RuleEntry<[]>
|
|
5414
5464
|
/**
|
|
5415
5465
|
* Enforce the style of numeric separators by correctly grouping digits.
|
|
5416
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5466
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/numeric-separators-style.md
|
|
5417
5467
|
*/
|
|
5418
5468
|
'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>
|
|
5419
5469
|
/**
|
|
5420
5470
|
* Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
|
|
5421
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5471
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-add-event-listener.md
|
|
5422
5472
|
*/
|
|
5423
5473
|
'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>
|
|
5424
5474
|
/**
|
|
5425
5475
|
* Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
|
|
5426
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5476
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-find.md
|
|
5427
5477
|
*/
|
|
5428
5478
|
'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>
|
|
5429
5479
|
/**
|
|
5430
5480
|
* Prefer `Array#flat()` over legacy techniques to flatten arrays.
|
|
5431
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5481
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-flat.md
|
|
5432
5482
|
*/
|
|
5433
5483
|
'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>
|
|
5434
5484
|
/**
|
|
5435
5485
|
* Prefer `.flatMap(…)` over `.map(…).flat()`.
|
|
5436
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5486
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-flat-map.md
|
|
5437
5487
|
*/
|
|
5438
5488
|
'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>
|
|
5439
5489
|
/**
|
|
5440
5490
|
* Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
|
|
5441
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5491
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-index-of.md
|
|
5442
5492
|
*/
|
|
5443
5493
|
'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>
|
|
5444
5494
|
/**
|
|
5445
5495
|
* Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
|
|
5446
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5496
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-some.md
|
|
5447
5497
|
*/
|
|
5448
5498
|
'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>
|
|
5449
5499
|
/**
|
|
5450
5500
|
* Prefer `.at()` method for index access and `String#charAt()`.
|
|
5451
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5501
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-at.md
|
|
5452
5502
|
*/
|
|
5453
5503
|
'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>
|
|
5454
5504
|
/**
|
|
5455
5505
|
* Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
|
|
5456
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5506
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-blob-reading-methods.md
|
|
5457
5507
|
*/
|
|
5458
5508
|
'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>
|
|
5459
5509
|
/**
|
|
5460
5510
|
* Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
|
|
5461
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5511
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-code-point.md
|
|
5462
5512
|
*/
|
|
5463
5513
|
'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>
|
|
5464
5514
|
/**
|
|
5465
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5515
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-dataset
|
|
5466
5516
|
* @deprecated
|
|
5467
5517
|
*/
|
|
5468
5518
|
'unicorn/prefer-dataset'?: Linter.RuleEntry<[]>
|
|
5469
5519
|
/**
|
|
5470
5520
|
* Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
|
|
5471
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5521
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-date-now.md
|
|
5472
5522
|
*/
|
|
5473
5523
|
'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>
|
|
5474
5524
|
/**
|
|
5475
5525
|
* Prefer default parameters over reassignment.
|
|
5476
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5526
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-default-parameters.md
|
|
5477
5527
|
*/
|
|
5478
5528
|
'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>
|
|
5479
5529
|
/**
|
|
5480
5530
|
* Prefer `Node#append()` over `Node#appendChild()`.
|
|
5481
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5531
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-append.md
|
|
5482
5532
|
*/
|
|
5483
5533
|
'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>
|
|
5484
5534
|
/**
|
|
5485
5535
|
* Prefer using `.dataset` on DOM elements over calling attribute methods.
|
|
5486
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5536
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-dataset.md
|
|
5487
5537
|
*/
|
|
5488
5538
|
'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>
|
|
5489
5539
|
/**
|
|
5490
5540
|
* Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
|
|
5491
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5541
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-remove.md
|
|
5492
5542
|
*/
|
|
5493
5543
|
'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>
|
|
5494
5544
|
/**
|
|
5495
5545
|
* Prefer `.textContent` over `.innerText`.
|
|
5496
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5546
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-text-content.md
|
|
5497
5547
|
*/
|
|
5498
5548
|
'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>
|
|
5499
5549
|
/**
|
|
5500
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5550
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-event-key
|
|
5501
5551
|
* @deprecated
|
|
5502
5552
|
*/
|
|
5503
5553
|
'unicorn/prefer-event-key'?: Linter.RuleEntry<[]>
|
|
5504
5554
|
/**
|
|
5505
5555
|
* Prefer `EventTarget` over `EventEmitter`.
|
|
5506
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5556
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-event-target.md
|
|
5507
5557
|
*/
|
|
5508
5558
|
'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>
|
|
5509
5559
|
/**
|
|
5510
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5560
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-exponentiation-operator
|
|
5511
5561
|
* @deprecated
|
|
5512
5562
|
*/
|
|
5513
5563
|
'unicorn/prefer-exponentiation-operator'?: Linter.RuleEntry<[]>
|
|
5514
5564
|
/**
|
|
5515
5565
|
* Prefer `export…from` when re-exporting.
|
|
5516
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5566
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-export-from.md
|
|
5517
5567
|
*/
|
|
5518
5568
|
'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>
|
|
5519
5569
|
/**
|
|
5520
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5570
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-flat-map
|
|
5521
5571
|
* @deprecated
|
|
5522
5572
|
*/
|
|
5523
5573
|
'unicorn/prefer-flat-map'?: Linter.RuleEntry<[]>
|
|
5574
|
+
/**
|
|
5575
|
+
* Prefer `globalThis` over `window`, `self`, and `global`.
|
|
5576
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-global-this.md
|
|
5577
|
+
*/
|
|
5578
|
+
'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>
|
|
5524
5579
|
/**
|
|
5525
5580
|
* Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
|
|
5526
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5581
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-includes.md
|
|
5527
5582
|
*/
|
|
5528
5583
|
'unicorn/prefer-includes'?: Linter.RuleEntry<[]>
|
|
5529
5584
|
/**
|
|
5530
5585
|
* Prefer reading a JSON file as a buffer.
|
|
5531
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5586
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-json-parse-buffer.md
|
|
5532
5587
|
*/
|
|
5533
5588
|
'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>
|
|
5534
5589
|
/**
|
|
5535
5590
|
* Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
|
|
5536
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5591
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-keyboard-event-key.md
|
|
5537
5592
|
*/
|
|
5538
5593
|
'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>
|
|
5539
5594
|
/**
|
|
5540
5595
|
* Prefer using a logical operator over a ternary.
|
|
5541
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5596
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-logical-operator-over-ternary.md
|
|
5542
5597
|
*/
|
|
5543
5598
|
'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>
|
|
5599
|
+
/**
|
|
5600
|
+
* Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
|
|
5601
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-math-min-max.md
|
|
5602
|
+
*/
|
|
5603
|
+
'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>
|
|
5544
5604
|
/**
|
|
5545
5605
|
* Enforce the use of `Math.trunc` instead of bitwise operators.
|
|
5546
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5606
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-math-trunc.md
|
|
5547
5607
|
*/
|
|
5548
5608
|
'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>
|
|
5549
5609
|
/**
|
|
5550
5610
|
* Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
|
|
5551
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5611
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-modern-dom-apis.md
|
|
5552
5612
|
*/
|
|
5553
5613
|
'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>
|
|
5554
5614
|
/**
|
|
5555
5615
|
* Prefer modern `Math` APIs over legacy patterns.
|
|
5556
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5616
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-modern-math-apis.md
|
|
5557
5617
|
*/
|
|
5558
5618
|
'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>
|
|
5559
5619
|
/**
|
|
5560
5620
|
* Prefer JavaScript modules (ESM) over CommonJS.
|
|
5561
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5621
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-module.md
|
|
5562
5622
|
*/
|
|
5563
5623
|
'unicorn/prefer-module'?: Linter.RuleEntry<[]>
|
|
5564
5624
|
/**
|
|
5565
5625
|
* Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
|
|
5566
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5626
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-native-coercion-functions.md
|
|
5567
5627
|
*/
|
|
5568
5628
|
'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>
|
|
5569
5629
|
/**
|
|
5570
5630
|
* Prefer negative index over `.length - index` when possible.
|
|
5571
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5631
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-negative-index.md
|
|
5572
5632
|
*/
|
|
5573
5633
|
'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>
|
|
5574
5634
|
/**
|
|
5575
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5635
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-node-append
|
|
5576
5636
|
* @deprecated
|
|
5577
5637
|
*/
|
|
5578
5638
|
'unicorn/prefer-node-append'?: Linter.RuleEntry<[]>
|
|
5579
5639
|
/**
|
|
5580
5640
|
* Prefer using the `node:` protocol when importing Node.js builtin modules.
|
|
5581
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5641
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-node-protocol.md
|
|
5582
5642
|
*/
|
|
5583
5643
|
'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>
|
|
5584
5644
|
/**
|
|
5585
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5645
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-node-remove
|
|
5586
5646
|
* @deprecated
|
|
5587
5647
|
*/
|
|
5588
5648
|
'unicorn/prefer-node-remove'?: Linter.RuleEntry<[]>
|
|
5589
5649
|
/**
|
|
5590
5650
|
* Prefer `Number` static properties over global ones.
|
|
5591
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5651
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-number-properties.md
|
|
5592
5652
|
*/
|
|
5593
5653
|
'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>
|
|
5594
5654
|
/**
|
|
5595
5655
|
* Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
|
|
5596
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5656
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-object-from-entries.md
|
|
5597
5657
|
*/
|
|
5598
5658
|
'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>
|
|
5599
5659
|
/**
|
|
5600
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5660
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-object-has-own
|
|
5601
5661
|
* @deprecated
|
|
5602
5662
|
*/
|
|
5603
5663
|
'unicorn/prefer-object-has-own'?: Linter.RuleEntry<[]>
|
|
5604
5664
|
/**
|
|
5605
5665
|
* Prefer omitting the `catch` binding parameter.
|
|
5606
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5666
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-optional-catch-binding.md
|
|
5607
5667
|
*/
|
|
5608
5668
|
'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>
|
|
5609
5669
|
/**
|
|
5610
5670
|
* Prefer borrowing methods from the prototype instead of the instance.
|
|
5611
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5671
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-prototype-methods.md
|
|
5612
5672
|
*/
|
|
5613
5673
|
'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>
|
|
5614
5674
|
/**
|
|
5615
|
-
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()`.
|
|
5616
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5675
|
+
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
|
|
5676
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-query-selector.md
|
|
5617
5677
|
*/
|
|
5618
5678
|
'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>
|
|
5619
5679
|
/**
|
|
5620
5680
|
* Prefer `Reflect.apply()` over `Function#apply()`.
|
|
5621
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5681
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-reflect-apply.md
|
|
5622
5682
|
*/
|
|
5623
5683
|
'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>
|
|
5624
5684
|
/**
|
|
5625
5685
|
* Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
|
|
5626
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5686
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-regexp-test.md
|
|
5627
5687
|
*/
|
|
5628
5688
|
'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>
|
|
5629
5689
|
/**
|
|
5630
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5690
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-replace-all
|
|
5631
5691
|
* @deprecated
|
|
5632
5692
|
*/
|
|
5633
5693
|
'unicorn/prefer-replace-all'?: Linter.RuleEntry<[]>
|
|
5634
5694
|
/**
|
|
5635
5695
|
* Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
|
|
5636
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5696
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-set-has.md
|
|
5637
5697
|
*/
|
|
5638
5698
|
'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>
|
|
5639
5699
|
/**
|
|
5640
5700
|
* Prefer using `Set#size` instead of `Array#length`.
|
|
5641
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5701
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-set-size.md
|
|
5642
5702
|
*/
|
|
5643
5703
|
'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>
|
|
5644
5704
|
/**
|
|
5645
5705
|
* Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
|
|
5646
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5706
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-spread.md
|
|
5647
5707
|
*/
|
|
5648
5708
|
'unicorn/prefer-spread'?: Linter.RuleEntry<[]>
|
|
5649
5709
|
/**
|
|
5650
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5710
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-starts-ends-with
|
|
5651
5711
|
* @deprecated
|
|
5652
5712
|
*/
|
|
5653
5713
|
'unicorn/prefer-starts-ends-with'?: Linter.RuleEntry<[]>
|
|
5654
5714
|
/**
|
|
5655
5715
|
* Prefer using the `String.raw` tag to avoid escaping `\`.
|
|
5656
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5716
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-raw.md
|
|
5657
5717
|
*/
|
|
5658
5718
|
'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>
|
|
5659
5719
|
/**
|
|
5660
5720
|
* Prefer `String#replaceAll()` over regex searches with the global flag.
|
|
5661
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5721
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-replace-all.md
|
|
5662
5722
|
*/
|
|
5663
5723
|
'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>
|
|
5664
5724
|
/**
|
|
5665
5725
|
* Prefer `String#slice()` over `String#substr()` and `String#substring()`.
|
|
5666
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5726
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-slice.md
|
|
5667
5727
|
*/
|
|
5668
5728
|
'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>
|
|
5669
5729
|
/**
|
|
5670
5730
|
* Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
|
|
5671
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5731
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-starts-ends-with.md
|
|
5672
5732
|
*/
|
|
5673
5733
|
'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>
|
|
5674
5734
|
/**
|
|
5675
5735
|
* Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
|
|
5676
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5736
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-trim-start-end.md
|
|
5677
5737
|
*/
|
|
5678
5738
|
'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>
|
|
5679
5739
|
/**
|
|
5680
5740
|
* Prefer using `structuredClone` to create a deep clone.
|
|
5681
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5741
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-structured-clone.md
|
|
5682
5742
|
*/
|
|
5683
5743
|
'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>
|
|
5684
5744
|
/**
|
|
5685
5745
|
* Prefer `switch` over multiple `else-if`.
|
|
5686
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5746
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-switch.md
|
|
5687
5747
|
*/
|
|
5688
5748
|
'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>
|
|
5689
5749
|
/**
|
|
5690
5750
|
* Prefer ternary expressions over simple `if-else` statements.
|
|
5691
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5751
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-ternary.md
|
|
5692
5752
|
*/
|
|
5693
5753
|
'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>
|
|
5694
5754
|
/**
|
|
5695
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5755
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-text-content
|
|
5696
5756
|
* @deprecated
|
|
5697
5757
|
*/
|
|
5698
5758
|
'unicorn/prefer-text-content'?: Linter.RuleEntry<[]>
|
|
5699
5759
|
/**
|
|
5700
5760
|
* Prefer top-level await over top-level promises and async function calls.
|
|
5701
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5761
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-top-level-await.md
|
|
5702
5762
|
*/
|
|
5703
5763
|
'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>
|
|
5704
5764
|
/**
|
|
5705
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5765
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-trim-start-end
|
|
5706
5766
|
* @deprecated
|
|
5707
5767
|
*/
|
|
5708
5768
|
'unicorn/prefer-trim-start-end'?: Linter.RuleEntry<[]>
|
|
5709
5769
|
/**
|
|
5710
5770
|
* Enforce throwing `TypeError` in type checking conditions.
|
|
5711
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5771
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-type-error.md
|
|
5712
5772
|
*/
|
|
5713
5773
|
'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>
|
|
5714
5774
|
/**
|
|
5715
5775
|
* Prevent abbreviations.
|
|
5716
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5776
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prevent-abbreviations.md
|
|
5717
5777
|
*/
|
|
5718
5778
|
'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>
|
|
5719
5779
|
/**
|
|
5720
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5780
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#regex-shorthand
|
|
5721
5781
|
* @deprecated
|
|
5722
5782
|
*/
|
|
5723
5783
|
'unicorn/regex-shorthand'?: Linter.RuleEntry<[]>
|
|
5724
5784
|
/**
|
|
5725
5785
|
* Enforce consistent relative URL style.
|
|
5726
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5786
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/relative-url-style.md
|
|
5727
5787
|
*/
|
|
5728
5788
|
'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>
|
|
5729
5789
|
/**
|
|
5730
5790
|
* Enforce using the separator argument with `Array#join()`.
|
|
5731
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5791
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-array-join-separator.md
|
|
5732
5792
|
*/
|
|
5733
5793
|
'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>
|
|
5734
5794
|
/**
|
|
5735
5795
|
* Enforce using the digits argument with `Number#toFixed()`.
|
|
5736
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5796
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-number-to-fixed-digits-argument.md
|
|
5737
5797
|
*/
|
|
5738
5798
|
'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>
|
|
5739
5799
|
/**
|
|
5740
5800
|
* Enforce using the `targetOrigin` argument with `window.postMessage()`.
|
|
5741
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5801
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-post-message-target-origin.md
|
|
5742
5802
|
*/
|
|
5743
5803
|
'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>
|
|
5744
5804
|
/**
|
|
5745
5805
|
* Enforce better string content.
|
|
5746
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5806
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/string-content.md
|
|
5747
5807
|
*/
|
|
5748
5808
|
'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>
|
|
5749
5809
|
/**
|
|
5750
5810
|
* Enforce consistent brace style for `case` clauses.
|
|
5751
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5811
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/switch-case-braces.md
|
|
5752
5812
|
*/
|
|
5753
5813
|
'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>
|
|
5754
5814
|
/**
|
|
5755
5815
|
* Fix whitespace-insensitive template indentation.
|
|
5756
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5816
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/template-indent.md
|
|
5757
5817
|
*/
|
|
5758
5818
|
'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>
|
|
5759
5819
|
/**
|
|
5760
5820
|
* Enforce consistent case for text encoding identifiers.
|
|
5761
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5821
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/text-encoding-identifier-case.md
|
|
5762
5822
|
*/
|
|
5763
5823
|
'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>
|
|
5764
5824
|
/**
|
|
5765
5825
|
* Require `new` when creating an error.
|
|
5766
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5826
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/throw-new-error.md
|
|
5767
5827
|
*/
|
|
5768
5828
|
'unicorn/throw-new-error'?: Linter.RuleEntry<[]>
|
|
5769
5829
|
/**
|
|
@@ -6147,6 +6207,11 @@ interface RuleOptions {
|
|
|
6147
6207
|
* @see https://eslint.vuejs.org/rules/no-deprecated-data-object-declaration.html
|
|
6148
6208
|
*/
|
|
6149
6209
|
'vue/no-deprecated-data-object-declaration'?: Linter.RuleEntry<[]>
|
|
6210
|
+
/**
|
|
6211
|
+
* disallow using deprecated `$delete` and `$set` (in Vue.js 3.0.0+)
|
|
6212
|
+
* @see https://eslint.vuejs.org/rules/no-deprecated-delete-set.html
|
|
6213
|
+
*/
|
|
6214
|
+
'vue/no-deprecated-delete-set'?: Linter.RuleEntry<[]>
|
|
6150
6215
|
/**
|
|
6151
6216
|
* disallow using deprecated `destroyed` and `beforeDestroy` lifecycle hooks (in Vue.js 3.0.0+)
|
|
6152
6217
|
* @see https://eslint.vuejs.org/rules/no-deprecated-destroyed-lifecycle.html
|
|
@@ -7345,6 +7410,7 @@ type CommaStyle = []|[("first" | "last")]|[("first" | "last"), {
|
|
|
7345
7410
|
type Complexity = []|[(number | {
|
|
7346
7411
|
maximum?: number
|
|
7347
7412
|
max?: number
|
|
7413
|
+
variant?: ("classic" | "modified")
|
|
7348
7414
|
})]
|
|
7349
7415
|
// ----- computed-property-spacing -----
|
|
7350
7416
|
type ComputedPropertySpacing = []|[("always" | "never")]|[("always" | "never"), {
|
|
@@ -8094,6 +8160,7 @@ type JsdocRequireParam = []|[{
|
|
|
8094
8160
|
enableRestElementFixer?: boolean
|
|
8095
8161
|
enableRootFixer?: boolean
|
|
8096
8162
|
exemptedBy?: string[]
|
|
8163
|
+
ignoreWhenAllParamsMissing?: boolean
|
|
8097
8164
|
unnamedRootBase?: string[]
|
|
8098
8165
|
useDefaultObjectProperties?: boolean
|
|
8099
8166
|
}]
|
|
@@ -9426,7 +9493,7 @@ type NodeHashbang = []|[{
|
|
|
9426
9493
|
// ----- node/no-deprecated-api -----
|
|
9427
9494
|
type NodeNoDeprecatedApi = []|[{
|
|
9428
9495
|
version?: string
|
|
9429
|
-
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")[]
|
|
9496
|
+
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()")[]
|
|
9430
9497
|
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")[]
|
|
9431
9498
|
ignoreIndirectDependencies?: boolean
|
|
9432
9499
|
}]
|
|
@@ -9484,6 +9551,7 @@ type NodeNoMissingImport = []|[{
|
|
|
9484
9551
|
allowModules?: string[]
|
|
9485
9552
|
resolvePaths?: string[]
|
|
9486
9553
|
tryExtensions?: string[]
|
|
9554
|
+
ignoreTypeImport?: boolean
|
|
9487
9555
|
tsconfigPath?: string
|
|
9488
9556
|
typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
|
|
9489
9557
|
}]
|
|
@@ -9500,6 +9568,10 @@ type NodeNoMixedRequires = []|[(boolean | {
|
|
|
9500
9568
|
grouping?: boolean
|
|
9501
9569
|
allowCall?: boolean
|
|
9502
9570
|
})]
|
|
9571
|
+
// ----- node/no-process-env -----
|
|
9572
|
+
type NodeNoProcessEnv = []|[{
|
|
9573
|
+
allowedVariables?: string[]
|
|
9574
|
+
}]
|
|
9503
9575
|
// ----- node/no-restricted-import -----
|
|
9504
9576
|
type NodeNoRestrictedImport = []|[(string | {
|
|
9505
9577
|
name: (string | string[])
|
|
@@ -9594,7 +9666,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
9594
9666
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
9595
9667
|
version?: string
|
|
9596
9668
|
allowExperimental?: boolean
|
|
9597
|
-
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")[]
|
|
9669
|
+
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")[]
|
|
9598
9670
|
}]
|
|
9599
9671
|
// ----- node/prefer-global/buffer -----
|
|
9600
9672
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -9741,9 +9813,17 @@ type PerfectionistSortArrayIncludes = []|[{
|
|
|
9741
9813
|
|
|
9742
9814
|
order?: ("asc" | "desc")
|
|
9743
9815
|
|
|
9816
|
+
matcher?: ("minimatch" | "regex")
|
|
9817
|
+
|
|
9744
9818
|
ignoreCase?: boolean
|
|
9745
9819
|
|
|
9820
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9821
|
+
|
|
9746
9822
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
9823
|
+
|
|
9824
|
+
partitionByComment?: (string[] | boolean | string)
|
|
9825
|
+
|
|
9826
|
+
partitionByNewLine?: boolean
|
|
9747
9827
|
}]
|
|
9748
9828
|
// ----- perfectionist/sort-astro-attributes -----
|
|
9749
9829
|
type PerfectionistSortAstroAttributes = []|[{
|
|
@@ -9752,8 +9832,12 @@ type PerfectionistSortAstroAttributes = []|[{
|
|
|
9752
9832
|
|
|
9753
9833
|
order?: ("asc" | "desc")
|
|
9754
9834
|
|
|
9835
|
+
matcher?: ("minimatch" | "regex")
|
|
9836
|
+
|
|
9755
9837
|
ignoreCase?: boolean
|
|
9756
9838
|
|
|
9839
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9840
|
+
|
|
9757
9841
|
groups?: (string | string[])[]
|
|
9758
9842
|
|
|
9759
9843
|
customGroups?: {
|
|
@@ -9767,8 +9851,12 @@ type PerfectionistSortClasses = []|[{
|
|
|
9767
9851
|
|
|
9768
9852
|
order?: ("asc" | "desc")
|
|
9769
9853
|
|
|
9854
|
+
matcher?: ("minimatch" | "regex")
|
|
9855
|
+
|
|
9770
9856
|
ignoreCase?: boolean
|
|
9771
9857
|
|
|
9858
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9859
|
+
|
|
9772
9860
|
partitionByComment?: (string[] | boolean | string)
|
|
9773
9861
|
|
|
9774
9862
|
groups?: (string | string[])[]
|
|
@@ -9790,6 +9878,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
9790
9878
|
|
|
9791
9879
|
elementNamePattern?: string
|
|
9792
9880
|
|
|
9881
|
+
elementValuePattern?: string
|
|
9882
|
+
|
|
9793
9883
|
decoratorNamePattern?: string
|
|
9794
9884
|
}[]
|
|
9795
9885
|
} | {
|
|
@@ -9806,6 +9896,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
9806
9896
|
|
|
9807
9897
|
elementNamePattern?: string
|
|
9808
9898
|
|
|
9899
|
+
elementValuePattern?: string
|
|
9900
|
+
|
|
9809
9901
|
decoratorNamePattern?: string
|
|
9810
9902
|
})[])
|
|
9811
9903
|
}]
|
|
@@ -9816,13 +9908,19 @@ type PerfectionistSortEnums = []|[{
|
|
|
9816
9908
|
|
|
9817
9909
|
order?: ("asc" | "desc")
|
|
9818
9910
|
|
|
9911
|
+
matcher?: ("minimatch" | "regex")
|
|
9912
|
+
|
|
9819
9913
|
ignoreCase?: boolean
|
|
9820
9914
|
|
|
9915
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9916
|
+
|
|
9821
9917
|
sortByValue?: boolean
|
|
9822
9918
|
|
|
9823
9919
|
forceNumericSort?: boolean
|
|
9824
9920
|
|
|
9825
9921
|
partitionByComment?: (string[] | boolean | string)
|
|
9922
|
+
|
|
9923
|
+
partitionByNewLine?: boolean
|
|
9826
9924
|
}]
|
|
9827
9925
|
// ----- perfectionist/sort-exports -----
|
|
9828
9926
|
type PerfectionistSortExports = []|[{
|
|
@@ -9831,7 +9929,17 @@ type PerfectionistSortExports = []|[{
|
|
|
9831
9929
|
|
|
9832
9930
|
order?: ("asc" | "desc")
|
|
9833
9931
|
|
|
9932
|
+
matcher?: ("minimatch" | "regex")
|
|
9933
|
+
|
|
9834
9934
|
ignoreCase?: boolean
|
|
9935
|
+
|
|
9936
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9937
|
+
|
|
9938
|
+
partitionByComment?: (string[] | boolean | string)
|
|
9939
|
+
|
|
9940
|
+
partitionByNewLine?: boolean
|
|
9941
|
+
|
|
9942
|
+
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
9835
9943
|
}]
|
|
9836
9944
|
// ----- perfectionist/sort-imports -----
|
|
9837
9945
|
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
@@ -9841,8 +9949,12 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
9841
9949
|
|
|
9842
9950
|
order?: ("asc" | "desc")
|
|
9843
9951
|
|
|
9952
|
+
matcher?: ("minimatch" | "regex")
|
|
9953
|
+
|
|
9844
9954
|
ignoreCase?: boolean
|
|
9845
9955
|
|
|
9956
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9957
|
+
|
|
9846
9958
|
internalPattern?: string[]
|
|
9847
9959
|
|
|
9848
9960
|
sortSideEffects?: boolean
|
|
@@ -9878,10 +9990,16 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
9878
9990
|
|
|
9879
9991
|
order?: ("asc" | "desc")
|
|
9880
9992
|
|
|
9993
|
+
matcher?: ("minimatch" | "regex")
|
|
9994
|
+
|
|
9881
9995
|
ignoreCase?: boolean
|
|
9882
9996
|
|
|
9997
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9998
|
+
|
|
9883
9999
|
ignorePattern?: string[]
|
|
9884
10000
|
|
|
10001
|
+
partitionByComment?: (boolean | string | string[])
|
|
10002
|
+
|
|
9885
10003
|
partitionByNewLine?: boolean
|
|
9886
10004
|
|
|
9887
10005
|
groupKind?: ("mixed" | "optional-first" | "required-first")
|
|
@@ -9899,9 +10017,17 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
9899
10017
|
|
|
9900
10018
|
order?: ("asc" | "desc")
|
|
9901
10019
|
|
|
10020
|
+
matcher?: ("minimatch" | "regex")
|
|
10021
|
+
|
|
9902
10022
|
ignoreCase?: boolean
|
|
9903
10023
|
|
|
10024
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10025
|
+
|
|
9904
10026
|
groups?: (string | string[])[]
|
|
10027
|
+
|
|
10028
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10029
|
+
|
|
10030
|
+
partitionByNewLine?: boolean
|
|
9905
10031
|
}]
|
|
9906
10032
|
// ----- perfectionist/sort-jsx-props -----
|
|
9907
10033
|
type PerfectionistSortJsxProps = []|[{
|
|
@@ -9910,8 +10036,12 @@ type PerfectionistSortJsxProps = []|[{
|
|
|
9910
10036
|
|
|
9911
10037
|
order?: ("asc" | "desc")
|
|
9912
10038
|
|
|
10039
|
+
matcher?: ("minimatch" | "regex")
|
|
10040
|
+
|
|
9913
10041
|
ignoreCase?: boolean
|
|
9914
10042
|
|
|
10043
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10044
|
+
|
|
9915
10045
|
ignorePattern?: string[]
|
|
9916
10046
|
|
|
9917
10047
|
groups?: (string | string[])[]
|
|
@@ -9927,7 +10057,15 @@ type PerfectionistSortMaps = []|[{
|
|
|
9927
10057
|
|
|
9928
10058
|
order?: ("asc" | "desc")
|
|
9929
10059
|
|
|
10060
|
+
matcher?: ("minimatch" | "regex")
|
|
10061
|
+
|
|
9930
10062
|
ignoreCase?: boolean
|
|
10063
|
+
|
|
10064
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10065
|
+
|
|
10066
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10067
|
+
|
|
10068
|
+
partitionByNewLine?: boolean
|
|
9931
10069
|
}]
|
|
9932
10070
|
// ----- perfectionist/sort-named-exports -----
|
|
9933
10071
|
type PerfectionistSortNamedExports = []|[{
|
|
@@ -9936,9 +10074,17 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
9936
10074
|
|
|
9937
10075
|
order?: ("asc" | "desc")
|
|
9938
10076
|
|
|
10077
|
+
matcher?: ("minimatch" | "regex")
|
|
10078
|
+
|
|
9939
10079
|
ignoreCase?: boolean
|
|
9940
10080
|
|
|
10081
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10082
|
+
|
|
9941
10083
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10084
|
+
|
|
10085
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10086
|
+
|
|
10087
|
+
partitionByNewLine?: boolean
|
|
9942
10088
|
}]
|
|
9943
10089
|
// ----- perfectionist/sort-named-imports -----
|
|
9944
10090
|
type PerfectionistSortNamedImports = []|[{
|
|
@@ -9947,11 +10093,19 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
9947
10093
|
|
|
9948
10094
|
order?: ("asc" | "desc")
|
|
9949
10095
|
|
|
10096
|
+
matcher?: ("minimatch" | "regex")
|
|
10097
|
+
|
|
9950
10098
|
ignoreCase?: boolean
|
|
9951
10099
|
|
|
10100
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10101
|
+
|
|
9952
10102
|
ignoreAlias?: boolean
|
|
9953
10103
|
|
|
9954
10104
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10105
|
+
|
|
10106
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10107
|
+
|
|
10108
|
+
partitionByNewLine?: boolean
|
|
9955
10109
|
}]
|
|
9956
10110
|
// ----- perfectionist/sort-object-types -----
|
|
9957
10111
|
type PerfectionistSortObjectTypes = []|[{
|
|
@@ -9960,8 +10114,14 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
9960
10114
|
|
|
9961
10115
|
order?: ("asc" | "desc")
|
|
9962
10116
|
|
|
10117
|
+
matcher?: ("minimatch" | "regex")
|
|
10118
|
+
|
|
9963
10119
|
ignoreCase?: boolean
|
|
9964
10120
|
|
|
10121
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10122
|
+
|
|
10123
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10124
|
+
|
|
9965
10125
|
partitionByNewLine?: boolean
|
|
9966
10126
|
|
|
9967
10127
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
@@ -9979,8 +10139,12 @@ type PerfectionistSortObjects = []|[{
|
|
|
9979
10139
|
|
|
9980
10140
|
order?: ("asc" | "desc")
|
|
9981
10141
|
|
|
10142
|
+
matcher?: ("minimatch" | "regex")
|
|
10143
|
+
|
|
9982
10144
|
ignoreCase?: boolean
|
|
9983
10145
|
|
|
10146
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10147
|
+
|
|
9984
10148
|
partitionByComment?: (string[] | boolean | string)
|
|
9985
10149
|
|
|
9986
10150
|
partitionByNewLine?: boolean
|
|
@@ -10004,9 +10168,17 @@ type PerfectionistSortSets = []|[{
|
|
|
10004
10168
|
|
|
10005
10169
|
order?: ("asc" | "desc")
|
|
10006
10170
|
|
|
10171
|
+
matcher?: ("minimatch" | "regex")
|
|
10172
|
+
|
|
10007
10173
|
ignoreCase?: boolean
|
|
10008
10174
|
|
|
10175
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10176
|
+
|
|
10009
10177
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
10178
|
+
|
|
10179
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10180
|
+
|
|
10181
|
+
partitionByNewLine?: boolean
|
|
10010
10182
|
}]
|
|
10011
10183
|
// ----- perfectionist/sort-svelte-attributes -----
|
|
10012
10184
|
type PerfectionistSortSvelteAttributes = []|[{
|
|
@@ -10015,8 +10187,12 @@ type PerfectionistSortSvelteAttributes = []|[{
|
|
|
10015
10187
|
|
|
10016
10188
|
order?: ("asc" | "desc")
|
|
10017
10189
|
|
|
10190
|
+
matcher?: ("minimatch" | "regex")
|
|
10191
|
+
|
|
10018
10192
|
ignoreCase?: boolean
|
|
10019
10193
|
|
|
10194
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10195
|
+
|
|
10020
10196
|
groups?: (string | string[])[]
|
|
10021
10197
|
|
|
10022
10198
|
customGroups?: {
|
|
@@ -10031,6 +10207,8 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
10031
10207
|
order?: ("asc" | "desc")
|
|
10032
10208
|
|
|
10033
10209
|
ignoreCase?: boolean
|
|
10210
|
+
|
|
10211
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10034
10212
|
}]
|
|
10035
10213
|
// ----- perfectionist/sort-union-types -----
|
|
10036
10214
|
type PerfectionistSortUnionTypes = []|[{
|
|
@@ -10039,9 +10217,17 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
10039
10217
|
|
|
10040
10218
|
order?: ("asc" | "desc")
|
|
10041
10219
|
|
|
10220
|
+
matcher?: ("minimatch" | "regex")
|
|
10221
|
+
|
|
10042
10222
|
ignoreCase?: boolean
|
|
10043
10223
|
|
|
10224
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10225
|
+
|
|
10044
10226
|
groups?: (string | string[])[]
|
|
10227
|
+
|
|
10228
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10229
|
+
|
|
10230
|
+
partitionByNewLine?: boolean
|
|
10045
10231
|
}]
|
|
10046
10232
|
// ----- perfectionist/sort-variable-declarations -----
|
|
10047
10233
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
@@ -10050,7 +10236,15 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
10050
10236
|
|
|
10051
10237
|
order?: ("asc" | "desc")
|
|
10052
10238
|
|
|
10239
|
+
matcher?: ("minimatch" | "regex")
|
|
10240
|
+
|
|
10053
10241
|
ignoreCase?: boolean
|
|
10242
|
+
|
|
10243
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10244
|
+
|
|
10245
|
+
partitionByComment?: (string[] | boolean | string)
|
|
10246
|
+
|
|
10247
|
+
partitionByNewLine?: boolean
|
|
10054
10248
|
}]
|
|
10055
10249
|
// ----- perfectionist/sort-vue-attributes -----
|
|
10056
10250
|
type PerfectionistSortVueAttributes = []|[{
|
|
@@ -10059,8 +10253,12 @@ type PerfectionistSortVueAttributes = []|[{
|
|
|
10059
10253
|
|
|
10060
10254
|
order?: ("asc" | "desc")
|
|
10061
10255
|
|
|
10256
|
+
matcher?: ("minimatch" | "regex")
|
|
10257
|
+
|
|
10062
10258
|
ignoreCase?: boolean
|
|
10063
10259
|
|
|
10260
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10261
|
+
|
|
10064
10262
|
groups?: (string | string[])[]
|
|
10065
10263
|
|
|
10066
10264
|
customGroups?: {
|
|
@@ -10160,6 +10358,10 @@ type ReactRefreshOnlyExportComponents = []|[{
|
|
|
10160
10358
|
checkJS?: boolean
|
|
10161
10359
|
allowExportNames?: string[]
|
|
10162
10360
|
}]
|
|
10361
|
+
// ----- react/no-useless-fragment -----
|
|
10362
|
+
type ReactNoUselessFragment = []|[{
|
|
10363
|
+
allowExpressions?: boolean
|
|
10364
|
+
}]
|
|
10163
10365
|
// ----- regexp/hexadecimal-escape -----
|
|
10164
10366
|
type RegexpHexadecimalEscape = []|[("always" | "never")]
|
|
10165
10367
|
// ----- regexp/letter-case -----
|
|
@@ -10430,6 +10632,127 @@ type StyleCommaStyle = []|[("first" | "last")]|[("first" | "last"), {
|
|
|
10430
10632
|
type StyleComputedPropertySpacing = []|[("always" | "never")]|[("always" | "never"), {
|
|
10431
10633
|
enforceForClassMembers?: boolean
|
|
10432
10634
|
}]
|
|
10635
|
+
// ----- style/curly-newline -----
|
|
10636
|
+
type StyleCurlyNewline = []|[(("always" | "never") | {
|
|
10637
|
+
IfStatementConsequent?: (("always" | "never") | {
|
|
10638
|
+
multiline?: boolean
|
|
10639
|
+
minElements?: number
|
|
10640
|
+
consistent?: boolean
|
|
10641
|
+
})
|
|
10642
|
+
IfStatementAlternative?: (("always" | "never") | {
|
|
10643
|
+
multiline?: boolean
|
|
10644
|
+
minElements?: number
|
|
10645
|
+
consistent?: boolean
|
|
10646
|
+
})
|
|
10647
|
+
DoWhileStatement?: (("always" | "never") | {
|
|
10648
|
+
multiline?: boolean
|
|
10649
|
+
minElements?: number
|
|
10650
|
+
consistent?: boolean
|
|
10651
|
+
})
|
|
10652
|
+
ForInStatement?: (("always" | "never") | {
|
|
10653
|
+
multiline?: boolean
|
|
10654
|
+
minElements?: number
|
|
10655
|
+
consistent?: boolean
|
|
10656
|
+
})
|
|
10657
|
+
ForOfStatement?: (("always" | "never") | {
|
|
10658
|
+
multiline?: boolean
|
|
10659
|
+
minElements?: number
|
|
10660
|
+
consistent?: boolean
|
|
10661
|
+
})
|
|
10662
|
+
ForStatement?: (("always" | "never") | {
|
|
10663
|
+
multiline?: boolean
|
|
10664
|
+
minElements?: number
|
|
10665
|
+
consistent?: boolean
|
|
10666
|
+
})
|
|
10667
|
+
WhileStatement?: (("always" | "never") | {
|
|
10668
|
+
multiline?: boolean
|
|
10669
|
+
minElements?: number
|
|
10670
|
+
consistent?: boolean
|
|
10671
|
+
})
|
|
10672
|
+
SwitchStatement?: (("always" | "never") | {
|
|
10673
|
+
multiline?: boolean
|
|
10674
|
+
minElements?: number
|
|
10675
|
+
consistent?: boolean
|
|
10676
|
+
})
|
|
10677
|
+
SwitchCase?: (("always" | "never") | {
|
|
10678
|
+
multiline?: boolean
|
|
10679
|
+
minElements?: number
|
|
10680
|
+
consistent?: boolean
|
|
10681
|
+
})
|
|
10682
|
+
TryStatementBlock?: (("always" | "never") | {
|
|
10683
|
+
multiline?: boolean
|
|
10684
|
+
minElements?: number
|
|
10685
|
+
consistent?: boolean
|
|
10686
|
+
})
|
|
10687
|
+
TryStatementHandler?: (("always" | "never") | {
|
|
10688
|
+
multiline?: boolean
|
|
10689
|
+
minElements?: number
|
|
10690
|
+
consistent?: boolean
|
|
10691
|
+
})
|
|
10692
|
+
TryStatementFinalizer?: (("always" | "never") | {
|
|
10693
|
+
multiline?: boolean
|
|
10694
|
+
minElements?: number
|
|
10695
|
+
consistent?: boolean
|
|
10696
|
+
})
|
|
10697
|
+
BlockStatement?: (("always" | "never") | {
|
|
10698
|
+
multiline?: boolean
|
|
10699
|
+
minElements?: number
|
|
10700
|
+
consistent?: boolean
|
|
10701
|
+
})
|
|
10702
|
+
ArrowFunctionExpression?: (("always" | "never") | {
|
|
10703
|
+
multiline?: boolean
|
|
10704
|
+
minElements?: number
|
|
10705
|
+
consistent?: boolean
|
|
10706
|
+
})
|
|
10707
|
+
FunctionDeclaration?: (("always" | "never") | {
|
|
10708
|
+
multiline?: boolean
|
|
10709
|
+
minElements?: number
|
|
10710
|
+
consistent?: boolean
|
|
10711
|
+
})
|
|
10712
|
+
FunctionExpression?: (("always" | "never") | {
|
|
10713
|
+
multiline?: boolean
|
|
10714
|
+
minElements?: number
|
|
10715
|
+
consistent?: boolean
|
|
10716
|
+
})
|
|
10717
|
+
Property?: (("always" | "never") | {
|
|
10718
|
+
multiline?: boolean
|
|
10719
|
+
minElements?: number
|
|
10720
|
+
consistent?: boolean
|
|
10721
|
+
})
|
|
10722
|
+
ClassBody?: (("always" | "never") | {
|
|
10723
|
+
multiline?: boolean
|
|
10724
|
+
minElements?: number
|
|
10725
|
+
consistent?: boolean
|
|
10726
|
+
})
|
|
10727
|
+
StaticBlock?: (("always" | "never") | {
|
|
10728
|
+
multiline?: boolean
|
|
10729
|
+
minElements?: number
|
|
10730
|
+
consistent?: boolean
|
|
10731
|
+
})
|
|
10732
|
+
WithStatement?: (("always" | "never") | {
|
|
10733
|
+
multiline?: boolean
|
|
10734
|
+
minElements?: number
|
|
10735
|
+
consistent?: boolean
|
|
10736
|
+
})
|
|
10737
|
+
TSEnumBody?: (("always" | "never") | {
|
|
10738
|
+
multiline?: boolean
|
|
10739
|
+
minElements?: number
|
|
10740
|
+
consistent?: boolean
|
|
10741
|
+
})
|
|
10742
|
+
TSInterfaceBody?: (("always" | "never") | {
|
|
10743
|
+
multiline?: boolean
|
|
10744
|
+
minElements?: number
|
|
10745
|
+
consistent?: boolean
|
|
10746
|
+
})
|
|
10747
|
+
TSModuleBlock?: (("always" | "never") | {
|
|
10748
|
+
multiline?: boolean
|
|
10749
|
+
minElements?: number
|
|
10750
|
+
consistent?: boolean
|
|
10751
|
+
})
|
|
10752
|
+
multiline?: boolean
|
|
10753
|
+
minElements?: number
|
|
10754
|
+
consistent?: boolean
|
|
10755
|
+
})]
|
|
10433
10756
|
// ----- style/dot-location -----
|
|
10434
10757
|
type StyleDotLocation = []|[("object" | "property")]
|
|
10435
10758
|
// ----- style/eol-last -----
|
|
@@ -10509,6 +10832,8 @@ type StyleJsxClosingBracketLocation = []|[(("after-props" | "props-aligned" | "t
|
|
|
10509
10832
|
nonEmpty?: (("after-props" | "props-aligned" | "tag-aligned" | "line-aligned") | false)
|
|
10510
10833
|
selfClosing?: (("after-props" | "props-aligned" | "tag-aligned" | "line-aligned") | false)
|
|
10511
10834
|
})]
|
|
10835
|
+
// ----- style/jsx-closing-tag-location -----
|
|
10836
|
+
type StyleJsxClosingTagLocation = []|[("tag-aligned" | "line-aligned")]
|
|
10512
10837
|
// ----- style/jsx-curly-brace-presence -----
|
|
10513
10838
|
type StyleJsxCurlyBracePresence = []|[({
|
|
10514
10839
|
props?: ("always" | "never" | "ignore")
|
|
@@ -11612,6 +11937,11 @@ type TsArrayType = []|[{
|
|
|
11612
11937
|
}]
|
|
11613
11938
|
// ----- ts/ban-ts-comment -----
|
|
11614
11939
|
type TsBanTsComment = []|[{
|
|
11940
|
+
|
|
11941
|
+
minimumDescriptionLength?: number
|
|
11942
|
+
"ts-check"?: (boolean | "allow-with-description" | {
|
|
11943
|
+
descriptionFormat?: string
|
|
11944
|
+
})
|
|
11615
11945
|
"ts-expect-error"?: (boolean | "allow-with-description" | {
|
|
11616
11946
|
descriptionFormat?: string
|
|
11617
11947
|
})
|
|
@@ -11621,24 +11951,19 @@ type TsBanTsComment = []|[{
|
|
|
11621
11951
|
"ts-nocheck"?: (boolean | "allow-with-description" | {
|
|
11622
11952
|
descriptionFormat?: string
|
|
11623
11953
|
})
|
|
11624
|
-
"ts-check"?: (boolean | "allow-with-description" | {
|
|
11625
|
-
descriptionFormat?: string
|
|
11626
|
-
})
|
|
11627
|
-
|
|
11628
|
-
minimumDescriptionLength?: number
|
|
11629
11954
|
}]
|
|
11630
11955
|
// ----- ts/class-literal-property-style -----
|
|
11631
11956
|
type TsClassLiteralPropertyStyle = []|[("fields" | "getters")]
|
|
11632
11957
|
// ----- ts/class-methods-use-this -----
|
|
11633
11958
|
type TsClassMethodsUseThis = []|[{
|
|
11634
11959
|
|
|
11635
|
-
exceptMethods?: string[]
|
|
11636
|
-
|
|
11637
11960
|
enforceForClassFields?: boolean
|
|
11638
11961
|
|
|
11639
|
-
|
|
11962
|
+
exceptMethods?: string[]
|
|
11640
11963
|
|
|
11641
11964
|
ignoreClassesThatImplementAnInterface?: (boolean | "public-fields")
|
|
11965
|
+
|
|
11966
|
+
ignoreOverrideMethods?: boolean
|
|
11642
11967
|
}]
|
|
11643
11968
|
// ----- ts/consistent-generic-constructors -----
|
|
11644
11969
|
type TsConsistentGenericConstructors = []|[("type-annotation" | "constructor")]
|
|
@@ -11677,6 +12002,8 @@ type TsConsistentTypeImports = []|[{
|
|
|
11677
12002
|
// ----- ts/dot-notation -----
|
|
11678
12003
|
type TsDotNotation = []|[{
|
|
11679
12004
|
|
|
12005
|
+
allowIndexSignaturePropertyAccess?: boolean
|
|
12006
|
+
|
|
11680
12007
|
allowKeywords?: boolean
|
|
11681
12008
|
|
|
11682
12009
|
allowPattern?: string
|
|
@@ -11684,40 +12011,40 @@ type TsDotNotation = []|[{
|
|
|
11684
12011
|
allowPrivateClassPropertyAccess?: boolean
|
|
11685
12012
|
|
|
11686
12013
|
allowProtectedClassPropertyAccess?: boolean
|
|
11687
|
-
|
|
11688
|
-
allowIndexSignaturePropertyAccess?: boolean
|
|
11689
12014
|
}]
|
|
11690
12015
|
// ----- ts/explicit-function-return-type -----
|
|
11691
12016
|
type TsExplicitFunctionReturnType = []|[{
|
|
11692
12017
|
|
|
11693
12018
|
allowConciseArrowFunctionExpressionsStartingWithVoid?: boolean
|
|
11694
12019
|
|
|
11695
|
-
|
|
11696
|
-
|
|
11697
|
-
allowHigherOrderFunctions?: boolean
|
|
12020
|
+
allowDirectConstAssertionInArrowFunctions?: boolean
|
|
11698
12021
|
|
|
11699
|
-
|
|
12022
|
+
allowedNames?: string[]
|
|
11700
12023
|
|
|
11701
|
-
|
|
12024
|
+
allowExpressions?: boolean
|
|
11702
12025
|
|
|
11703
12026
|
allowFunctionsWithoutTypeParameters?: boolean
|
|
11704
12027
|
|
|
11705
|
-
|
|
12028
|
+
allowHigherOrderFunctions?: boolean
|
|
11706
12029
|
|
|
11707
12030
|
allowIIFEs?: boolean
|
|
12031
|
+
|
|
12032
|
+
allowTypedFunctionExpressions?: boolean
|
|
11708
12033
|
}]
|
|
11709
12034
|
// ----- ts/explicit-member-accessibility -----
|
|
11710
12035
|
type TsExplicitMemberAccessibility = []|[{
|
|
12036
|
+
|
|
11711
12037
|
accessibility?: ("explicit" | "no-public" | "off")
|
|
12038
|
+
|
|
12039
|
+
ignoredMethodNames?: string[]
|
|
12040
|
+
|
|
11712
12041
|
overrides?: {
|
|
11713
12042
|
accessors?: ("explicit" | "no-public" | "off")
|
|
11714
12043
|
constructors?: ("explicit" | "no-public" | "off")
|
|
11715
12044
|
methods?: ("explicit" | "no-public" | "off")
|
|
11716
|
-
properties?: ("explicit" | "no-public" | "off")
|
|
11717
12045
|
parameterProperties?: ("explicit" | "no-public" | "off")
|
|
12046
|
+
properties?: ("explicit" | "no-public" | "off")
|
|
11718
12047
|
}
|
|
11719
|
-
|
|
11720
|
-
ignoredMethodNames?: string[]
|
|
11721
12048
|
}]
|
|
11722
12049
|
// ----- ts/explicit-module-boundary-types -----
|
|
11723
12050
|
type TsExplicitModuleBoundaryTypes = []|[{
|
|
@@ -11739,38 +12066,38 @@ type TsInitDeclarations = ([]|["always"] | []|["never"]|["never", {
|
|
|
11739
12066
|
// ----- ts/max-params -----
|
|
11740
12067
|
type TsMaxParams = []|[{
|
|
11741
12068
|
|
|
12069
|
+
countVoidThis?: boolean
|
|
12070
|
+
|
|
11742
12071
|
max?: number
|
|
11743
12072
|
|
|
11744
12073
|
maximum?: number
|
|
11745
|
-
|
|
11746
|
-
countVoidThis?: boolean
|
|
11747
12074
|
}]
|
|
11748
12075
|
// ----- ts/member-ordering -----
|
|
11749
12076
|
type TsMemberOrdering = []|[{
|
|
11750
|
-
default?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
11751
|
-
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
11752
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
11753
|
-
optionalityOrder?: ("optional-first" | "required-first")
|
|
11754
|
-
})
|
|
11755
12077
|
classes?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
11756
12078
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
11757
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
11758
12079
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
12080
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
11759
12081
|
})
|
|
11760
12082
|
classExpressions?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
11761
12083
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
12084
|
+
optionalityOrder?: ("optional-first" | "required-first")
|
|
11762
12085
|
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12086
|
+
})
|
|
12087
|
+
default?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
12088
|
+
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
11763
12089
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
12090
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
11764
12091
|
})
|
|
11765
12092
|
interfaces?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | {
|
|
11766
12093
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | "never")
|
|
11767
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
11768
12094
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
12095
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
11769
12096
|
})
|
|
11770
12097
|
typeLiterals?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | {
|
|
11771
12098
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | "never")
|
|
11772
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
11773
12099
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
12100
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
11774
12101
|
})
|
|
11775
12102
|
}]
|
|
11776
12103
|
// ----- ts/method-signature-style -----
|
|
@@ -11782,310 +12109,310 @@ type _TsNamingConventionUnderscoreOptions = ("forbid" | "allow" | "require" | "r
|
|
|
11782
12109
|
type _TsNamingConvention_PrefixSuffixConfig = string[]
|
|
11783
12110
|
type _TsNamingConventionTypeModifiers = ("boolean" | "string" | "number" | "function" | "array")
|
|
11784
12111
|
type TsNamingConvention = ({
|
|
11785
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11786
12112
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
11787
|
-
|
|
11788
|
-
|
|
12113
|
+
failureMessage?: string
|
|
12114
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12115
|
+
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11789
12116
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11790
12117
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11791
|
-
|
|
12118
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11792
12119
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11793
|
-
selector: ("default" | "variableLike" | "memberLike" | "typeLike" | "method" | "property" | "accessor" | "variable" | "function" | "parameter" | "parameterProperty" | "classicAccessor" | "enumMember" | "classMethod" | "objectLiteralMethod" | "typeMethod" | "classProperty" | "objectLiteralProperty" | "typeProperty" | "autoAccessor" | "class" | "interface" | "typeAlias" | "enum" | "typeParameter" | "import")[]
|
|
11794
12120
|
modifiers?: ("const" | "readonly" | "static" | "public" | "protected" | "private" | "#private" | "abstract" | "destructured" | "global" | "exported" | "unused" | "requiresQuotes" | "override" | "async" | "default" | "namespace")[]
|
|
12121
|
+
selector: ("default" | "variableLike" | "memberLike" | "typeLike" | "method" | "property" | "accessor" | "variable" | "function" | "parameter" | "parameterProperty" | "classicAccessor" | "enumMember" | "classMethod" | "objectLiteralMethod" | "typeMethod" | "classProperty" | "objectLiteralProperty" | "typeProperty" | "autoAccessor" | "class" | "interface" | "typeAlias" | "enum" | "typeParameter" | "import")[]
|
|
11795
12122
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11796
12123
|
} | {
|
|
11797
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11798
12124
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12125
|
+
failureMessage?: string
|
|
12126
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11799
12127
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11800
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11801
12128
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11802
12129
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11803
|
-
|
|
12130
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11804
12131
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11805
12132
|
selector: "default"
|
|
11806
12133
|
modifiers?: ("const" | "readonly" | "static" | "public" | "protected" | "private" | "#private" | "abstract" | "destructured" | "global" | "exported" | "unused" | "requiresQuotes" | "override" | "async" | "default" | "namespace")[]
|
|
11807
12134
|
} | {
|
|
11808
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11809
12135
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12136
|
+
failureMessage?: string
|
|
12137
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11810
12138
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11811
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11812
12139
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11813
12140
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11814
|
-
|
|
12141
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11815
12142
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11816
12143
|
selector: "variableLike"
|
|
11817
12144
|
modifiers?: ("unused" | "async")[]
|
|
11818
12145
|
} | {
|
|
11819
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11820
12146
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12147
|
+
failureMessage?: string
|
|
12148
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11821
12149
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11822
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11823
12150
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11824
12151
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11825
|
-
|
|
12152
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11826
12153
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11827
12154
|
selector: "variable"
|
|
11828
12155
|
modifiers?: ("const" | "destructured" | "exported" | "global" | "unused" | "async")[]
|
|
11829
12156
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11830
12157
|
} | {
|
|
11831
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11832
12158
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12159
|
+
failureMessage?: string
|
|
12160
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11833
12161
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11834
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11835
12162
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11836
12163
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11837
|
-
|
|
12164
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11838
12165
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11839
12166
|
selector: "function"
|
|
11840
12167
|
modifiers?: ("exported" | "global" | "unused" | "async")[]
|
|
11841
12168
|
} | {
|
|
11842
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11843
12169
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12170
|
+
failureMessage?: string
|
|
12171
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11844
12172
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11845
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11846
12173
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11847
12174
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11848
|
-
|
|
12175
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11849
12176
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11850
12177
|
selector: "parameter"
|
|
11851
12178
|
modifiers?: ("destructured" | "unused")[]
|
|
11852
12179
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11853
12180
|
} | {
|
|
11854
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11855
12181
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12182
|
+
failureMessage?: string
|
|
12183
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11856
12184
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11857
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11858
12185
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11859
12186
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11860
|
-
|
|
12187
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11861
12188
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11862
12189
|
selector: "memberLike"
|
|
11863
12190
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
11864
12191
|
} | {
|
|
11865
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11866
12192
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12193
|
+
failureMessage?: string
|
|
12194
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11867
12195
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11868
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11869
12196
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11870
12197
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11871
|
-
|
|
12198
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11872
12199
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11873
12200
|
selector: "classProperty"
|
|
11874
12201
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override")[]
|
|
11875
12202
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11876
12203
|
} | {
|
|
11877
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11878
12204
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12205
|
+
failureMessage?: string
|
|
12206
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11879
12207
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11880
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11881
12208
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11882
12209
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11883
|
-
|
|
12210
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11884
12211
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11885
12212
|
selector: "objectLiteralProperty"
|
|
11886
12213
|
modifiers?: ("public" | "requiresQuotes")[]
|
|
11887
12214
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11888
12215
|
} | {
|
|
11889
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11890
12216
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12217
|
+
failureMessage?: string
|
|
12218
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11891
12219
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11892
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11893
12220
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11894
12221
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11895
|
-
|
|
12222
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11896
12223
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11897
12224
|
selector: "typeProperty"
|
|
11898
12225
|
modifiers?: ("public" | "readonly" | "requiresQuotes")[]
|
|
11899
12226
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11900
12227
|
} | {
|
|
11901
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11902
12228
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12229
|
+
failureMessage?: string
|
|
12230
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11903
12231
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11904
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11905
12232
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11906
12233
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11907
|
-
|
|
12234
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11908
12235
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11909
12236
|
selector: "parameterProperty"
|
|
11910
12237
|
modifiers?: ("private" | "protected" | "public" | "readonly")[]
|
|
11911
12238
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11912
12239
|
} | {
|
|
11913
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11914
12240
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12241
|
+
failureMessage?: string
|
|
12242
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11915
12243
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11916
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11917
12244
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11918
12245
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11919
|
-
|
|
12246
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11920
12247
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11921
12248
|
selector: "property"
|
|
11922
12249
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
11923
12250
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11924
12251
|
} | {
|
|
11925
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11926
12252
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12253
|
+
failureMessage?: string
|
|
12254
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11927
12255
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11928
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11929
12256
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11930
12257
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11931
|
-
|
|
12258
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11932
12259
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11933
12260
|
selector: "classMethod"
|
|
11934
12261
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
11935
12262
|
} | {
|
|
11936
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11937
12263
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12264
|
+
failureMessage?: string
|
|
12265
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11938
12266
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11939
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11940
12267
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11941
12268
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11942
|
-
|
|
12269
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11943
12270
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11944
12271
|
selector: "objectLiteralMethod"
|
|
11945
12272
|
modifiers?: ("public" | "requiresQuotes" | "async")[]
|
|
11946
12273
|
} | {
|
|
11947
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11948
12274
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12275
|
+
failureMessage?: string
|
|
12276
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11949
12277
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11950
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11951
12278
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11952
12279
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11953
|
-
|
|
12280
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11954
12281
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11955
12282
|
selector: "typeMethod"
|
|
11956
12283
|
modifiers?: ("public" | "requiresQuotes")[]
|
|
11957
12284
|
} | {
|
|
11958
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11959
12285
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12286
|
+
failureMessage?: string
|
|
12287
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11960
12288
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11961
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11962
12289
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11963
12290
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11964
|
-
|
|
12291
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11965
12292
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11966
12293
|
selector: "method"
|
|
11967
12294
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
11968
12295
|
} | {
|
|
11969
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11970
12296
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12297
|
+
failureMessage?: string
|
|
12298
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11971
12299
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11972
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11973
12300
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11974
12301
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11975
|
-
|
|
12302
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11976
12303
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11977
12304
|
selector: "classicAccessor"
|
|
11978
12305
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
11979
12306
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11980
12307
|
} | {
|
|
11981
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11982
12308
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12309
|
+
failureMessage?: string
|
|
12310
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11983
12311
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11984
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11985
12312
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11986
12313
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11987
|
-
|
|
12314
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11988
12315
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11989
12316
|
selector: "autoAccessor"
|
|
11990
12317
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
11991
12318
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11992
12319
|
} | {
|
|
11993
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11994
12320
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12321
|
+
failureMessage?: string
|
|
12322
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11995
12323
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11996
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11997
12324
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11998
12325
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11999
|
-
|
|
12326
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12000
12327
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12001
12328
|
selector: "accessor"
|
|
12002
12329
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
12003
12330
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12004
12331
|
} | {
|
|
12005
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12006
12332
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12333
|
+
failureMessage?: string
|
|
12334
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12007
12335
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12008
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12009
12336
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12010
12337
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12011
|
-
|
|
12338
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12012
12339
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12013
12340
|
selector: "enumMember"
|
|
12014
12341
|
modifiers?: ("requiresQuotes")[]
|
|
12015
12342
|
} | {
|
|
12016
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12017
12343
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12344
|
+
failureMessage?: string
|
|
12345
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12018
12346
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12019
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12020
12347
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12021
12348
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12022
|
-
|
|
12349
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12023
12350
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12024
12351
|
selector: "typeLike"
|
|
12025
12352
|
modifiers?: ("abstract" | "exported" | "unused")[]
|
|
12026
12353
|
} | {
|
|
12027
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12028
12354
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12355
|
+
failureMessage?: string
|
|
12356
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12029
12357
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12030
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12031
12358
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12032
12359
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12033
|
-
|
|
12360
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12034
12361
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12035
12362
|
selector: "class"
|
|
12036
12363
|
modifiers?: ("abstract" | "exported" | "unused")[]
|
|
12037
12364
|
} | {
|
|
12038
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12039
12365
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12366
|
+
failureMessage?: string
|
|
12367
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12040
12368
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12041
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12042
12369
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12043
12370
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12044
|
-
|
|
12371
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12045
12372
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12046
12373
|
selector: "interface"
|
|
12047
12374
|
modifiers?: ("exported" | "unused")[]
|
|
12048
12375
|
} | {
|
|
12049
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12050
12376
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12377
|
+
failureMessage?: string
|
|
12378
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12051
12379
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12052
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12053
12380
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12054
12381
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12055
|
-
|
|
12382
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12056
12383
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12057
12384
|
selector: "typeAlias"
|
|
12058
12385
|
modifiers?: ("exported" | "unused")[]
|
|
12059
12386
|
} | {
|
|
12060
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12061
12387
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12388
|
+
failureMessage?: string
|
|
12389
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12062
12390
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12063
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12064
12391
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12065
12392
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12066
|
-
|
|
12393
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12067
12394
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12068
12395
|
selector: "enum"
|
|
12069
12396
|
modifiers?: ("exported" | "unused")[]
|
|
12070
12397
|
} | {
|
|
12071
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12072
12398
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12399
|
+
failureMessage?: string
|
|
12400
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12073
12401
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12074
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12075
12402
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12076
12403
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12077
|
-
|
|
12404
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12078
12405
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12079
12406
|
selector: "typeParameter"
|
|
12080
12407
|
modifiers?: ("unused")[]
|
|
12081
12408
|
} | {
|
|
12082
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12083
12409
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12410
|
+
failureMessage?: string
|
|
12411
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12084
12412
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12085
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12086
12413
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12087
12414
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12088
|
-
|
|
12415
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12089
12416
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12090
12417
|
selector: "import"
|
|
12091
12418
|
modifiers?: ("default" | "namespace")[]
|
|
@@ -12153,7 +12480,7 @@ type TsNoExtraneousClass = []|[{
|
|
|
12153
12480
|
// ----- ts/no-floating-promises -----
|
|
12154
12481
|
type TsNoFloatingPromises = []|[{
|
|
12155
12482
|
|
|
12156
|
-
|
|
12483
|
+
allowForKnownSafeCalls?: (string | {
|
|
12157
12484
|
from: "file"
|
|
12158
12485
|
name: (string | [string, ...(string)[]])
|
|
12159
12486
|
path?: string
|
|
@@ -12166,7 +12493,7 @@ type TsNoFloatingPromises = []|[{
|
|
|
12166
12493
|
package: string
|
|
12167
12494
|
})[]
|
|
12168
12495
|
|
|
12169
|
-
|
|
12496
|
+
allowForKnownSafePromises?: (string | {
|
|
12170
12497
|
from: "file"
|
|
12171
12498
|
name: (string | [string, ...(string)[]])
|
|
12172
12499
|
path?: string
|
|
@@ -12181,9 +12508,9 @@ type TsNoFloatingPromises = []|[{
|
|
|
12181
12508
|
|
|
12182
12509
|
checkThenables?: boolean
|
|
12183
12510
|
|
|
12184
|
-
ignoreVoid?: boolean
|
|
12185
|
-
|
|
12186
12511
|
ignoreIIFE?: boolean
|
|
12512
|
+
|
|
12513
|
+
ignoreVoid?: boolean
|
|
12187
12514
|
}]
|
|
12188
12515
|
// ----- ts/no-inferrable-types -----
|
|
12189
12516
|
type TsNoInferrableTypes = []|[{
|
|
@@ -12199,9 +12526,9 @@ type TsNoInvalidThis = []|[{
|
|
|
12199
12526
|
// ----- ts/no-invalid-void-type -----
|
|
12200
12527
|
type TsNoInvalidVoidType = []|[{
|
|
12201
12528
|
|
|
12202
|
-
allowInGenericTypeArguments?: (boolean | [string, ...(string)[]])
|
|
12203
|
-
|
|
12204
12529
|
allowAsThisParameter?: boolean
|
|
12530
|
+
|
|
12531
|
+
allowInGenericTypeArguments?: (boolean | [string, ...(string)[]])
|
|
12205
12532
|
}]
|
|
12206
12533
|
// ----- ts/no-magic-numbers -----
|
|
12207
12534
|
type TsNoMagicNumbers = []|[{
|
|
@@ -12212,10 +12539,10 @@ type TsNoMagicNumbers = []|[{
|
|
|
12212
12539
|
ignoreDefaultValues?: boolean
|
|
12213
12540
|
ignoreClassFieldInitialValues?: boolean
|
|
12214
12541
|
|
|
12215
|
-
ignoreNumericLiteralTypes?: boolean
|
|
12216
|
-
|
|
12217
12542
|
ignoreEnums?: boolean
|
|
12218
12543
|
|
|
12544
|
+
ignoreNumericLiteralTypes?: boolean
|
|
12545
|
+
|
|
12219
12546
|
ignoreReadonlyClassProperties?: boolean
|
|
12220
12547
|
|
|
12221
12548
|
ignoreTypeIndexes?: boolean
|
|
@@ -12227,7 +12554,11 @@ type TsNoMeaninglessVoidOperator = []|[{
|
|
|
12227
12554
|
}]
|
|
12228
12555
|
// ----- ts/no-misused-promises -----
|
|
12229
12556
|
type TsNoMisusedPromises = []|[{
|
|
12557
|
+
|
|
12230
12558
|
checksConditionals?: boolean
|
|
12559
|
+
|
|
12560
|
+
checksSpreads?: boolean
|
|
12561
|
+
|
|
12231
12562
|
checksVoidReturn?: (boolean | {
|
|
12232
12563
|
|
|
12233
12564
|
arguments?: boolean
|
|
@@ -12242,8 +12573,6 @@ type TsNoMisusedPromises = []|[{
|
|
|
12242
12573
|
|
|
12243
12574
|
variables?: boolean
|
|
12244
12575
|
})
|
|
12245
|
-
|
|
12246
|
-
checksSpreads?: boolean
|
|
12247
12576
|
}]
|
|
12248
12577
|
// ----- ts/no-namespace -----
|
|
12249
12578
|
type TsNoNamespace = []|[{
|
|
@@ -12301,13 +12630,14 @@ type TsNoRestrictedImports = ((string | {
|
|
|
12301
12630
|
}])
|
|
12302
12631
|
// ----- ts/no-restricted-types -----
|
|
12303
12632
|
type TsNoRestrictedTypes = []|[{
|
|
12633
|
+
|
|
12304
12634
|
types?: {
|
|
12305
12635
|
[k: string]: (true | string | {
|
|
12306
12636
|
|
|
12307
|
-
message?: string
|
|
12308
|
-
|
|
12309
12637
|
fixWith?: string
|
|
12310
12638
|
|
|
12639
|
+
message?: string
|
|
12640
|
+
|
|
12311
12641
|
suggest?: string[]
|
|
12312
12642
|
}) | undefined
|
|
12313
12643
|
}
|
|
@@ -12315,17 +12645,17 @@ type TsNoRestrictedTypes = []|[{
|
|
|
12315
12645
|
// ----- ts/no-shadow -----
|
|
12316
12646
|
type TsNoShadow = []|[{
|
|
12317
12647
|
|
|
12648
|
+
allow?: string[]
|
|
12649
|
+
|
|
12318
12650
|
builtinGlobals?: boolean
|
|
12319
12651
|
|
|
12320
12652
|
hoist?: ("all" | "functions" | "never")
|
|
12321
12653
|
|
|
12322
|
-
|
|
12654
|
+
ignoreFunctionTypeParameterNameValueShadow?: boolean
|
|
12323
12655
|
|
|
12324
12656
|
ignoreOnInitialization?: boolean
|
|
12325
12657
|
|
|
12326
12658
|
ignoreTypeValueShadow?: boolean
|
|
12327
|
-
|
|
12328
|
-
ignoreFunctionTypeParameterNameValueShadow?: boolean
|
|
12329
12659
|
}]
|
|
12330
12660
|
// ----- ts/no-this-alias -----
|
|
12331
12661
|
type TsNoThisAlias = []|[{
|
|
@@ -12345,20 +12675,20 @@ type TsNoTypeAlias = []|[{
|
|
|
12345
12675
|
|
|
12346
12676
|
allowConstructors?: ("always" | "never")
|
|
12347
12677
|
|
|
12678
|
+
allowGenerics?: ("always" | "never")
|
|
12679
|
+
|
|
12348
12680
|
allowLiterals?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
12349
12681
|
|
|
12350
12682
|
allowMappedTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
12351
12683
|
|
|
12352
12684
|
allowTupleTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
12353
|
-
|
|
12354
|
-
allowGenerics?: ("always" | "never")
|
|
12355
12685
|
}]
|
|
12356
12686
|
// ----- ts/no-unnecessary-boolean-literal-compare -----
|
|
12357
12687
|
type TsNoUnnecessaryBooleanLiteralCompare = []|[{
|
|
12358
12688
|
|
|
12359
|
-
allowComparingNullableBooleansToTrue?: boolean
|
|
12360
|
-
|
|
12361
12689
|
allowComparingNullableBooleansToFalse?: boolean
|
|
12690
|
+
|
|
12691
|
+
allowComparingNullableBooleansToTrue?: boolean
|
|
12362
12692
|
}]
|
|
12363
12693
|
// ----- ts/no-unnecessary-condition -----
|
|
12364
12694
|
type TsNoUnnecessaryCondition = []|[{
|
|
@@ -12366,6 +12696,8 @@ type TsNoUnnecessaryCondition = []|[{
|
|
|
12366
12696
|
allowConstantLoopConditions?: boolean
|
|
12367
12697
|
|
|
12368
12698
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
12699
|
+
|
|
12700
|
+
checkTypePredicates?: boolean
|
|
12369
12701
|
}]
|
|
12370
12702
|
// ----- ts/no-unnecessary-type-assertion -----
|
|
12371
12703
|
type TsNoUnnecessaryTypeAssertion = []|[{
|
|
@@ -12382,10 +12714,6 @@ type TsNoUnusedExpressions = []|[{
|
|
|
12382
12714
|
// ----- ts/no-unused-vars -----
|
|
12383
12715
|
type TsNoUnusedVars = []|[(("all" | "local") | {
|
|
12384
12716
|
|
|
12385
|
-
vars?: ("all" | "local")
|
|
12386
|
-
|
|
12387
|
-
varsIgnorePattern?: string
|
|
12388
|
-
|
|
12389
12717
|
args?: ("all" | "after-used" | "none")
|
|
12390
12718
|
|
|
12391
12719
|
argsIgnorePattern?: string
|
|
@@ -12401,22 +12729,27 @@ type TsNoUnusedVars = []|[(("all" | "local") | {
|
|
|
12401
12729
|
ignoreRestSiblings?: boolean
|
|
12402
12730
|
|
|
12403
12731
|
reportUsedIgnorePattern?: boolean
|
|
12732
|
+
|
|
12733
|
+
vars?: ("all" | "local")
|
|
12734
|
+
|
|
12735
|
+
varsIgnorePattern?: string
|
|
12404
12736
|
})]
|
|
12405
12737
|
// ----- ts/no-use-before-define -----
|
|
12406
12738
|
type TsNoUseBeforeDefine = []|[("nofunc" | {
|
|
12407
12739
|
|
|
12408
|
-
|
|
12740
|
+
allowNamedExports?: boolean
|
|
12409
12741
|
|
|
12410
12742
|
classes?: boolean
|
|
12411
12743
|
|
|
12412
12744
|
enums?: boolean
|
|
12413
12745
|
|
|
12414
|
-
|
|
12746
|
+
functions?: boolean
|
|
12747
|
+
|
|
12748
|
+
ignoreTypeReferences?: boolean
|
|
12415
12749
|
|
|
12416
12750
|
typedefs?: boolean
|
|
12417
12751
|
|
|
12418
|
-
|
|
12419
|
-
allowNamedExports?: boolean
|
|
12752
|
+
variables?: boolean
|
|
12420
12753
|
})]
|
|
12421
12754
|
// ----- ts/no-var-requires -----
|
|
12422
12755
|
type TsNoVarRequires = []|[{
|
|
@@ -12439,11 +12772,11 @@ type TsParameterProperties = []|[{
|
|
|
12439
12772
|
}]
|
|
12440
12773
|
// ----- ts/prefer-destructuring -----
|
|
12441
12774
|
type TsPreferDestructuring = []|[({
|
|
12442
|
-
|
|
12775
|
+
AssignmentExpression?: {
|
|
12443
12776
|
array?: boolean
|
|
12444
12777
|
object?: boolean
|
|
12445
12778
|
}
|
|
12446
|
-
|
|
12779
|
+
VariableDeclarator?: {
|
|
12447
12780
|
array?: boolean
|
|
12448
12781
|
object?: boolean
|
|
12449
12782
|
}
|
|
@@ -12451,11 +12784,11 @@ type TsPreferDestructuring = []|[({
|
|
|
12451
12784
|
array?: boolean
|
|
12452
12785
|
object?: boolean
|
|
12453
12786
|
})]|[({
|
|
12454
|
-
|
|
12787
|
+
AssignmentExpression?: {
|
|
12455
12788
|
array?: boolean
|
|
12456
12789
|
object?: boolean
|
|
12457
12790
|
}
|
|
12458
|
-
|
|
12791
|
+
VariableDeclarator?: {
|
|
12459
12792
|
array?: boolean
|
|
12460
12793
|
object?: boolean
|
|
12461
12794
|
}
|
|
@@ -12463,8 +12796,10 @@ type TsPreferDestructuring = []|[({
|
|
|
12463
12796
|
array?: boolean
|
|
12464
12797
|
object?: boolean
|
|
12465
12798
|
}), {
|
|
12466
|
-
|
|
12799
|
+
|
|
12467
12800
|
enforceForDeclarationWithTypeAnnotation?: boolean
|
|
12801
|
+
|
|
12802
|
+
enforceForRenamedProperties?: boolean
|
|
12468
12803
|
[k: string]: unknown | undefined
|
|
12469
12804
|
}]
|
|
12470
12805
|
// ----- ts/prefer-literal-enum-member -----
|
|
@@ -12482,9 +12817,13 @@ type TsPreferNullishCoalescing = []|[{
|
|
|
12482
12817
|
ignoreMixedLogicalExpressions?: boolean
|
|
12483
12818
|
|
|
12484
12819
|
ignorePrimitives?: ({
|
|
12820
|
+
|
|
12485
12821
|
bigint?: boolean
|
|
12822
|
+
|
|
12486
12823
|
boolean?: boolean
|
|
12824
|
+
|
|
12487
12825
|
number?: boolean
|
|
12826
|
+
|
|
12488
12827
|
string?: boolean
|
|
12489
12828
|
[k: string]: unknown | undefined
|
|
12490
12829
|
} | true)
|
|
@@ -12494,21 +12833,21 @@ type TsPreferNullishCoalescing = []|[{
|
|
|
12494
12833
|
// ----- ts/prefer-optional-chain -----
|
|
12495
12834
|
type TsPreferOptionalChain = []|[{
|
|
12496
12835
|
|
|
12836
|
+
allowPotentiallyUnsafeFixesThatModifyTheReturnTypeIKnowWhatImDoing?: boolean
|
|
12837
|
+
|
|
12497
12838
|
checkAny?: boolean
|
|
12498
12839
|
|
|
12499
|
-
|
|
12840
|
+
checkBigInt?: boolean
|
|
12500
12841
|
|
|
12501
|
-
|
|
12842
|
+
checkBoolean?: boolean
|
|
12502
12843
|
|
|
12503
12844
|
checkNumber?: boolean
|
|
12504
12845
|
|
|
12505
|
-
|
|
12846
|
+
checkString?: boolean
|
|
12506
12847
|
|
|
12507
|
-
|
|
12848
|
+
checkUnknown?: boolean
|
|
12508
12849
|
|
|
12509
12850
|
requireNullish?: boolean
|
|
12510
|
-
|
|
12511
|
-
allowPotentiallyUnsafeFixesThatModifyTheReturnTypeIKnowWhatImDoing?: boolean
|
|
12512
12851
|
}]
|
|
12513
12852
|
// ----- ts/prefer-promise-reject-errors -----
|
|
12514
12853
|
type TsPreferPromiseRejectErrors = []|[{
|
|
@@ -12617,33 +12956,34 @@ type TsReturnAwait = []|[(("always" | "error-handling-correctness-only" | "in-tr
|
|
|
12617
12956
|
// ----- ts/sort-type-constituents -----
|
|
12618
12957
|
type TsSortTypeConstituents = []|[{
|
|
12619
12958
|
|
|
12959
|
+
caseSensitive?: boolean
|
|
12960
|
+
|
|
12620
12961
|
checkIntersections?: boolean
|
|
12621
12962
|
|
|
12622
12963
|
checkUnions?: boolean
|
|
12623
12964
|
|
|
12624
|
-
caseSensitive?: boolean
|
|
12625
|
-
|
|
12626
12965
|
groupOrder?: ("conditional" | "function" | "import" | "intersection" | "keyword" | "nullish" | "literal" | "named" | "object" | "operator" | "tuple" | "union")[]
|
|
12627
12966
|
}]
|
|
12628
12967
|
// ----- ts/strict-boolean-expressions -----
|
|
12629
12968
|
type TsStrictBooleanExpressions = []|[{
|
|
12630
12969
|
|
|
12631
|
-
|
|
12632
|
-
|
|
12633
|
-
allowNumber?: boolean
|
|
12634
|
-
|
|
12635
|
-
allowNullableObject?: boolean
|
|
12970
|
+
allowAny?: boolean
|
|
12636
12971
|
|
|
12637
12972
|
allowNullableBoolean?: boolean
|
|
12638
12973
|
|
|
12639
|
-
|
|
12974
|
+
allowNullableEnum?: boolean
|
|
12640
12975
|
|
|
12641
12976
|
allowNullableNumber?: boolean
|
|
12642
12977
|
|
|
12643
|
-
|
|
12978
|
+
allowNullableObject?: boolean
|
|
12979
|
+
|
|
12980
|
+
allowNullableString?: boolean
|
|
12981
|
+
|
|
12982
|
+
allowNumber?: boolean
|
|
12644
12983
|
|
|
12645
|
-
allowAny?: boolean
|
|
12646
12984
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
12985
|
+
|
|
12986
|
+
allowString?: boolean
|
|
12647
12987
|
}]
|
|
12648
12988
|
// ----- ts/switch-exhaustiveness-check -----
|
|
12649
12989
|
type TsSwitchExhaustivenessCheck = []|[{
|
|
@@ -12898,10 +13238,6 @@ type UnocssEnforceClassCompile = []|[{
|
|
|
12898
13238
|
// ----- unused-imports/no-unused-imports -----
|
|
12899
13239
|
type UnusedImportsNoUnusedImports = []|[(("all" | "local") | {
|
|
12900
13240
|
|
|
12901
|
-
vars?: ("all" | "local")
|
|
12902
|
-
|
|
12903
|
-
varsIgnorePattern?: string
|
|
12904
|
-
|
|
12905
13241
|
args?: ("all" | "after-used" | "none")
|
|
12906
13242
|
|
|
12907
13243
|
argsIgnorePattern?: string
|
|
@@ -12917,13 +13253,13 @@ type UnusedImportsNoUnusedImports = []|[(("all" | "local") | {
|
|
|
12917
13253
|
ignoreRestSiblings?: boolean
|
|
12918
13254
|
|
|
12919
13255
|
reportUsedIgnorePattern?: boolean
|
|
12920
|
-
})]
|
|
12921
|
-
// ----- unused-imports/no-unused-vars -----
|
|
12922
|
-
type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
12923
13256
|
|
|
12924
13257
|
vars?: ("all" | "local")
|
|
12925
13258
|
|
|
12926
13259
|
varsIgnorePattern?: string
|
|
13260
|
+
})]
|
|
13261
|
+
// ----- unused-imports/no-unused-vars -----
|
|
13262
|
+
type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
12927
13263
|
|
|
12928
13264
|
args?: ("all" | "after-used" | "none")
|
|
12929
13265
|
|
|
@@ -12940,6 +13276,10 @@ type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
|
12940
13276
|
ignoreRestSiblings?: boolean
|
|
12941
13277
|
|
|
12942
13278
|
reportUsedIgnorePattern?: boolean
|
|
13279
|
+
|
|
13280
|
+
vars?: ("all" | "local")
|
|
13281
|
+
|
|
13282
|
+
varsIgnorePattern?: string
|
|
12943
13283
|
})]
|
|
12944
13284
|
// ----- use-isnan -----
|
|
12945
13285
|
type UseIsnan = []|[{
|