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