@lincy/eslint-config 5.2.5 → 5.2.7
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 +72 -31
- package/dist/index.d.cts +683 -360
- package/dist/index.d.ts +683 -360
- package/dist/index.js +71 -30
- package/package.json +37 -37
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.
|
|
509
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
514
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
519
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
524
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
529
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
534
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
539
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
544
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
549
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
555
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
560
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
565
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
570
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
575
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
580
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
585
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
590
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
595
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
600
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
605
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
610
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
615
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
620
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
625
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
630
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
635
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
640
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
645
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
650
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
655
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
660
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
665
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
670
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
675
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
680
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
685
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
690
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
695
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
700
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
705
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
710
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
715
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
720
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
725
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
730
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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.
|
|
735
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.0/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
|
|
@@ -4571,7 +4611,7 @@ interface RuleOptions {
|
|
|
4571
4611
|
*/
|
|
4572
4612
|
'ts/no-array-delete'?: Linter.RuleEntry<[]>
|
|
4573
4613
|
/**
|
|
4574
|
-
* Require `.toString()` to only be called on objects which provide useful information when stringified
|
|
4614
|
+
* Require `.toString()` and `.toLocaleString()` to only be called on objects which provide useful information when stringified
|
|
4575
4615
|
* @see https://typescript-eslint.io/rules/no-base-to-string
|
|
4576
4616
|
*/
|
|
4577
4617
|
'ts/no-base-to-string'?: Linter.RuleEntry<TsNoBaseToString>
|
|
@@ -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"), {
|
|
@@ -7498,12 +7559,14 @@ type ImportExtensions = ([]|[("always" | "ignorePackages" | "never")] | []|[("al
|
|
|
7498
7559
|
[k: string]: ("always" | "ignorePackages" | "never")
|
|
7499
7560
|
}
|
|
7500
7561
|
ignorePackages?: boolean
|
|
7562
|
+
checkTypeImports?: boolean
|
|
7501
7563
|
[k: string]: unknown | undefined
|
|
7502
7564
|
}] | []|[{
|
|
7503
7565
|
pattern?: {
|
|
7504
7566
|
[k: string]: ("always" | "ignorePackages" | "never")
|
|
7505
7567
|
}
|
|
7506
7568
|
ignorePackages?: boolean
|
|
7569
|
+
checkTypeImports?: boolean
|
|
7507
7570
|
[k: string]: unknown | undefined
|
|
7508
7571
|
}] | []|[{
|
|
7509
7572
|
[k: string]: ("always" | "ignorePackages" | "never")
|
|
@@ -8099,6 +8162,7 @@ type JsdocRequireParam = []|[{
|
|
|
8099
8162
|
enableRestElementFixer?: boolean
|
|
8100
8163
|
enableRootFixer?: boolean
|
|
8101
8164
|
exemptedBy?: string[]
|
|
8165
|
+
ignoreWhenAllParamsMissing?: boolean
|
|
8102
8166
|
unnamedRootBase?: string[]
|
|
8103
8167
|
useDefaultObjectProperties?: boolean
|
|
8104
8168
|
}]
|
|
@@ -9431,7 +9495,7 @@ type NodeHashbang = []|[{
|
|
|
9431
9495
|
// ----- node/no-deprecated-api -----
|
|
9432
9496
|
type NodeNoDeprecatedApi = []|[{
|
|
9433
9497
|
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")[]
|
|
9498
|
+
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
9499
|
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
9500
|
ignoreIndirectDependencies?: boolean
|
|
9437
9501
|
}]
|
|
@@ -9489,6 +9553,7 @@ type NodeNoMissingImport = []|[{
|
|
|
9489
9553
|
allowModules?: string[]
|
|
9490
9554
|
resolvePaths?: string[]
|
|
9491
9555
|
tryExtensions?: string[]
|
|
9556
|
+
ignoreTypeImport?: boolean
|
|
9492
9557
|
tsconfigPath?: string
|
|
9493
9558
|
typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
|
|
9494
9559
|
}]
|
|
@@ -9505,6 +9570,10 @@ type NodeNoMixedRequires = []|[(boolean | {
|
|
|
9505
9570
|
grouping?: boolean
|
|
9506
9571
|
allowCall?: boolean
|
|
9507
9572
|
})]
|
|
9573
|
+
// ----- node/no-process-env -----
|
|
9574
|
+
type NodeNoProcessEnv = []|[{
|
|
9575
|
+
allowedVariables?: string[]
|
|
9576
|
+
}]
|
|
9508
9577
|
// ----- node/no-restricted-import -----
|
|
9509
9578
|
type NodeNoRestrictedImport = []|[(string | {
|
|
9510
9579
|
name: (string | string[])
|
|
@@ -9599,7 +9668,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
9599
9668
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
9600
9669
|
version?: string
|
|
9601
9670
|
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")[]
|
|
9671
|
+
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.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.flushCompileCache" | "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.flushCompileCache" | "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.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "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.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
|
|
9603
9672
|
}]
|
|
9604
9673
|
// ----- node/prefer-global/buffer -----
|
|
9605
9674
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -9746,8 +9815,12 @@ type PerfectionistSortArrayIncludes = []|[{
|
|
|
9746
9815
|
|
|
9747
9816
|
order?: ("asc" | "desc")
|
|
9748
9817
|
|
|
9818
|
+
matcher?: ("minimatch" | "regex")
|
|
9819
|
+
|
|
9749
9820
|
ignoreCase?: boolean
|
|
9750
9821
|
|
|
9822
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9823
|
+
|
|
9751
9824
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
9752
9825
|
|
|
9753
9826
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -9761,8 +9834,12 @@ type PerfectionistSortAstroAttributes = []|[{
|
|
|
9761
9834
|
|
|
9762
9835
|
order?: ("asc" | "desc")
|
|
9763
9836
|
|
|
9837
|
+
matcher?: ("minimatch" | "regex")
|
|
9838
|
+
|
|
9764
9839
|
ignoreCase?: boolean
|
|
9765
9840
|
|
|
9841
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9842
|
+
|
|
9766
9843
|
groups?: (string | string[])[]
|
|
9767
9844
|
|
|
9768
9845
|
customGroups?: {
|
|
@@ -9776,8 +9853,12 @@ type PerfectionistSortClasses = []|[{
|
|
|
9776
9853
|
|
|
9777
9854
|
order?: ("asc" | "desc")
|
|
9778
9855
|
|
|
9856
|
+
matcher?: ("minimatch" | "regex")
|
|
9857
|
+
|
|
9779
9858
|
ignoreCase?: boolean
|
|
9780
9859
|
|
|
9860
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9861
|
+
|
|
9781
9862
|
partitionByComment?: (string[] | boolean | string)
|
|
9782
9863
|
|
|
9783
9864
|
groups?: (string | string[])[]
|
|
@@ -9799,6 +9880,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
9799
9880
|
|
|
9800
9881
|
elementNamePattern?: string
|
|
9801
9882
|
|
|
9883
|
+
elementValuePattern?: string
|
|
9884
|
+
|
|
9802
9885
|
decoratorNamePattern?: string
|
|
9803
9886
|
}[]
|
|
9804
9887
|
} | {
|
|
@@ -9815,6 +9898,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
9815
9898
|
|
|
9816
9899
|
elementNamePattern?: string
|
|
9817
9900
|
|
|
9901
|
+
elementValuePattern?: string
|
|
9902
|
+
|
|
9818
9903
|
decoratorNamePattern?: string
|
|
9819
9904
|
})[])
|
|
9820
9905
|
}]
|
|
@@ -9825,8 +9910,12 @@ type PerfectionistSortEnums = []|[{
|
|
|
9825
9910
|
|
|
9826
9911
|
order?: ("asc" | "desc")
|
|
9827
9912
|
|
|
9913
|
+
matcher?: ("minimatch" | "regex")
|
|
9914
|
+
|
|
9828
9915
|
ignoreCase?: boolean
|
|
9829
9916
|
|
|
9917
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9918
|
+
|
|
9830
9919
|
sortByValue?: boolean
|
|
9831
9920
|
|
|
9832
9921
|
forceNumericSort?: boolean
|
|
@@ -9842,8 +9931,12 @@ type PerfectionistSortExports = []|[{
|
|
|
9842
9931
|
|
|
9843
9932
|
order?: ("asc" | "desc")
|
|
9844
9933
|
|
|
9934
|
+
matcher?: ("minimatch" | "regex")
|
|
9935
|
+
|
|
9845
9936
|
ignoreCase?: boolean
|
|
9846
9937
|
|
|
9938
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9939
|
+
|
|
9847
9940
|
partitionByComment?: (string[] | boolean | string)
|
|
9848
9941
|
|
|
9849
9942
|
partitionByNewLine?: boolean
|
|
@@ -9858,8 +9951,12 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
9858
9951
|
|
|
9859
9952
|
order?: ("asc" | "desc")
|
|
9860
9953
|
|
|
9954
|
+
matcher?: ("minimatch" | "regex")
|
|
9955
|
+
|
|
9861
9956
|
ignoreCase?: boolean
|
|
9862
9957
|
|
|
9958
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9959
|
+
|
|
9863
9960
|
internalPattern?: string[]
|
|
9864
9961
|
|
|
9865
9962
|
sortSideEffects?: boolean
|
|
@@ -9895,8 +9992,12 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
9895
9992
|
|
|
9896
9993
|
order?: ("asc" | "desc")
|
|
9897
9994
|
|
|
9995
|
+
matcher?: ("minimatch" | "regex")
|
|
9996
|
+
|
|
9898
9997
|
ignoreCase?: boolean
|
|
9899
9998
|
|
|
9999
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10000
|
+
|
|
9900
10001
|
ignorePattern?: string[]
|
|
9901
10002
|
|
|
9902
10003
|
partitionByComment?: (boolean | string | string[])
|
|
@@ -9918,8 +10019,12 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
9918
10019
|
|
|
9919
10020
|
order?: ("asc" | "desc")
|
|
9920
10021
|
|
|
10022
|
+
matcher?: ("minimatch" | "regex")
|
|
10023
|
+
|
|
9921
10024
|
ignoreCase?: boolean
|
|
9922
10025
|
|
|
10026
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10027
|
+
|
|
9923
10028
|
groups?: (string | string[])[]
|
|
9924
10029
|
|
|
9925
10030
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -9933,8 +10038,12 @@ type PerfectionistSortJsxProps = []|[{
|
|
|
9933
10038
|
|
|
9934
10039
|
order?: ("asc" | "desc")
|
|
9935
10040
|
|
|
10041
|
+
matcher?: ("minimatch" | "regex")
|
|
10042
|
+
|
|
9936
10043
|
ignoreCase?: boolean
|
|
9937
10044
|
|
|
10045
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10046
|
+
|
|
9938
10047
|
ignorePattern?: string[]
|
|
9939
10048
|
|
|
9940
10049
|
groups?: (string | string[])[]
|
|
@@ -9950,8 +10059,12 @@ type PerfectionistSortMaps = []|[{
|
|
|
9950
10059
|
|
|
9951
10060
|
order?: ("asc" | "desc")
|
|
9952
10061
|
|
|
10062
|
+
matcher?: ("minimatch" | "regex")
|
|
10063
|
+
|
|
9953
10064
|
ignoreCase?: boolean
|
|
9954
10065
|
|
|
10066
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10067
|
+
|
|
9955
10068
|
partitionByComment?: (string[] | boolean | string)
|
|
9956
10069
|
|
|
9957
10070
|
partitionByNewLine?: boolean
|
|
@@ -9963,8 +10076,12 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
9963
10076
|
|
|
9964
10077
|
order?: ("asc" | "desc")
|
|
9965
10078
|
|
|
10079
|
+
matcher?: ("minimatch" | "regex")
|
|
10080
|
+
|
|
9966
10081
|
ignoreCase?: boolean
|
|
9967
10082
|
|
|
10083
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10084
|
+
|
|
9968
10085
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
9969
10086
|
|
|
9970
10087
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -9978,8 +10095,12 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
9978
10095
|
|
|
9979
10096
|
order?: ("asc" | "desc")
|
|
9980
10097
|
|
|
10098
|
+
matcher?: ("minimatch" | "regex")
|
|
10099
|
+
|
|
9981
10100
|
ignoreCase?: boolean
|
|
9982
10101
|
|
|
10102
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10103
|
+
|
|
9983
10104
|
ignoreAlias?: boolean
|
|
9984
10105
|
|
|
9985
10106
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
@@ -9995,8 +10116,12 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
9995
10116
|
|
|
9996
10117
|
order?: ("asc" | "desc")
|
|
9997
10118
|
|
|
10119
|
+
matcher?: ("minimatch" | "regex")
|
|
10120
|
+
|
|
9998
10121
|
ignoreCase?: boolean
|
|
9999
10122
|
|
|
10123
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10124
|
+
|
|
10000
10125
|
partitionByComment?: (string[] | boolean | string)
|
|
10001
10126
|
|
|
10002
10127
|
partitionByNewLine?: boolean
|
|
@@ -10016,8 +10141,12 @@ type PerfectionistSortObjects = []|[{
|
|
|
10016
10141
|
|
|
10017
10142
|
order?: ("asc" | "desc")
|
|
10018
10143
|
|
|
10144
|
+
matcher?: ("minimatch" | "regex")
|
|
10145
|
+
|
|
10019
10146
|
ignoreCase?: boolean
|
|
10020
10147
|
|
|
10148
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10149
|
+
|
|
10021
10150
|
partitionByComment?: (string[] | boolean | string)
|
|
10022
10151
|
|
|
10023
10152
|
partitionByNewLine?: boolean
|
|
@@ -10041,8 +10170,12 @@ type PerfectionistSortSets = []|[{
|
|
|
10041
10170
|
|
|
10042
10171
|
order?: ("asc" | "desc")
|
|
10043
10172
|
|
|
10173
|
+
matcher?: ("minimatch" | "regex")
|
|
10174
|
+
|
|
10044
10175
|
ignoreCase?: boolean
|
|
10045
10176
|
|
|
10177
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10178
|
+
|
|
10046
10179
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
10047
10180
|
|
|
10048
10181
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -10056,8 +10189,12 @@ type PerfectionistSortSvelteAttributes = []|[{
|
|
|
10056
10189
|
|
|
10057
10190
|
order?: ("asc" | "desc")
|
|
10058
10191
|
|
|
10192
|
+
matcher?: ("minimatch" | "regex")
|
|
10193
|
+
|
|
10059
10194
|
ignoreCase?: boolean
|
|
10060
10195
|
|
|
10196
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10197
|
+
|
|
10061
10198
|
groups?: (string | string[])[]
|
|
10062
10199
|
|
|
10063
10200
|
customGroups?: {
|
|
@@ -10072,6 +10209,8 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
10072
10209
|
order?: ("asc" | "desc")
|
|
10073
10210
|
|
|
10074
10211
|
ignoreCase?: boolean
|
|
10212
|
+
|
|
10213
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10075
10214
|
}]
|
|
10076
10215
|
// ----- perfectionist/sort-union-types -----
|
|
10077
10216
|
type PerfectionistSortUnionTypes = []|[{
|
|
@@ -10080,8 +10219,12 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
10080
10219
|
|
|
10081
10220
|
order?: ("asc" | "desc")
|
|
10082
10221
|
|
|
10222
|
+
matcher?: ("minimatch" | "regex")
|
|
10223
|
+
|
|
10083
10224
|
ignoreCase?: boolean
|
|
10084
10225
|
|
|
10226
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10227
|
+
|
|
10085
10228
|
groups?: (string | string[])[]
|
|
10086
10229
|
|
|
10087
10230
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -10095,8 +10238,12 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
10095
10238
|
|
|
10096
10239
|
order?: ("asc" | "desc")
|
|
10097
10240
|
|
|
10241
|
+
matcher?: ("minimatch" | "regex")
|
|
10242
|
+
|
|
10098
10243
|
ignoreCase?: boolean
|
|
10099
10244
|
|
|
10245
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10246
|
+
|
|
10100
10247
|
partitionByComment?: (string[] | boolean | string)
|
|
10101
10248
|
|
|
10102
10249
|
partitionByNewLine?: boolean
|
|
@@ -10108,8 +10255,12 @@ type PerfectionistSortVueAttributes = []|[{
|
|
|
10108
10255
|
|
|
10109
10256
|
order?: ("asc" | "desc")
|
|
10110
10257
|
|
|
10258
|
+
matcher?: ("minimatch" | "regex")
|
|
10259
|
+
|
|
10111
10260
|
ignoreCase?: boolean
|
|
10112
10261
|
|
|
10262
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10263
|
+
|
|
10113
10264
|
groups?: (string | string[])[]
|
|
10114
10265
|
|
|
10115
10266
|
customGroups?: {
|
|
@@ -10209,6 +10360,11 @@ type ReactRefreshOnlyExportComponents = []|[{
|
|
|
10209
10360
|
checkJS?: boolean
|
|
10210
10361
|
allowExportNames?: string[]
|
|
10211
10362
|
}]
|
|
10363
|
+
// ----- react/no-useless-fragment -----
|
|
10364
|
+
type ReactNoUselessFragment = []|[{
|
|
10365
|
+
|
|
10366
|
+
allowExpressions?: boolean
|
|
10367
|
+
}]
|
|
10212
10368
|
// ----- regexp/hexadecimal-escape -----
|
|
10213
10369
|
type RegexpHexadecimalEscape = []|[("always" | "never")]
|
|
10214
10370
|
// ----- regexp/letter-case -----
|
|
@@ -10479,6 +10635,127 @@ type StyleCommaStyle = []|[("first" | "last")]|[("first" | "last"), {
|
|
|
10479
10635
|
type StyleComputedPropertySpacing = []|[("always" | "never")]|[("always" | "never"), {
|
|
10480
10636
|
enforceForClassMembers?: boolean
|
|
10481
10637
|
}]
|
|
10638
|
+
// ----- style/curly-newline -----
|
|
10639
|
+
type StyleCurlyNewline = []|[(("always" | "never") | {
|
|
10640
|
+
IfStatementConsequent?: (("always" | "never") | {
|
|
10641
|
+
multiline?: boolean
|
|
10642
|
+
minElements?: number
|
|
10643
|
+
consistent?: boolean
|
|
10644
|
+
})
|
|
10645
|
+
IfStatementAlternative?: (("always" | "never") | {
|
|
10646
|
+
multiline?: boolean
|
|
10647
|
+
minElements?: number
|
|
10648
|
+
consistent?: boolean
|
|
10649
|
+
})
|
|
10650
|
+
DoWhileStatement?: (("always" | "never") | {
|
|
10651
|
+
multiline?: boolean
|
|
10652
|
+
minElements?: number
|
|
10653
|
+
consistent?: boolean
|
|
10654
|
+
})
|
|
10655
|
+
ForInStatement?: (("always" | "never") | {
|
|
10656
|
+
multiline?: boolean
|
|
10657
|
+
minElements?: number
|
|
10658
|
+
consistent?: boolean
|
|
10659
|
+
})
|
|
10660
|
+
ForOfStatement?: (("always" | "never") | {
|
|
10661
|
+
multiline?: boolean
|
|
10662
|
+
minElements?: number
|
|
10663
|
+
consistent?: boolean
|
|
10664
|
+
})
|
|
10665
|
+
ForStatement?: (("always" | "never") | {
|
|
10666
|
+
multiline?: boolean
|
|
10667
|
+
minElements?: number
|
|
10668
|
+
consistent?: boolean
|
|
10669
|
+
})
|
|
10670
|
+
WhileStatement?: (("always" | "never") | {
|
|
10671
|
+
multiline?: boolean
|
|
10672
|
+
minElements?: number
|
|
10673
|
+
consistent?: boolean
|
|
10674
|
+
})
|
|
10675
|
+
SwitchStatement?: (("always" | "never") | {
|
|
10676
|
+
multiline?: boolean
|
|
10677
|
+
minElements?: number
|
|
10678
|
+
consistent?: boolean
|
|
10679
|
+
})
|
|
10680
|
+
SwitchCase?: (("always" | "never") | {
|
|
10681
|
+
multiline?: boolean
|
|
10682
|
+
minElements?: number
|
|
10683
|
+
consistent?: boolean
|
|
10684
|
+
})
|
|
10685
|
+
TryStatementBlock?: (("always" | "never") | {
|
|
10686
|
+
multiline?: boolean
|
|
10687
|
+
minElements?: number
|
|
10688
|
+
consistent?: boolean
|
|
10689
|
+
})
|
|
10690
|
+
TryStatementHandler?: (("always" | "never") | {
|
|
10691
|
+
multiline?: boolean
|
|
10692
|
+
minElements?: number
|
|
10693
|
+
consistent?: boolean
|
|
10694
|
+
})
|
|
10695
|
+
TryStatementFinalizer?: (("always" | "never") | {
|
|
10696
|
+
multiline?: boolean
|
|
10697
|
+
minElements?: number
|
|
10698
|
+
consistent?: boolean
|
|
10699
|
+
})
|
|
10700
|
+
BlockStatement?: (("always" | "never") | {
|
|
10701
|
+
multiline?: boolean
|
|
10702
|
+
minElements?: number
|
|
10703
|
+
consistent?: boolean
|
|
10704
|
+
})
|
|
10705
|
+
ArrowFunctionExpression?: (("always" | "never") | {
|
|
10706
|
+
multiline?: boolean
|
|
10707
|
+
minElements?: number
|
|
10708
|
+
consistent?: boolean
|
|
10709
|
+
})
|
|
10710
|
+
FunctionDeclaration?: (("always" | "never") | {
|
|
10711
|
+
multiline?: boolean
|
|
10712
|
+
minElements?: number
|
|
10713
|
+
consistent?: boolean
|
|
10714
|
+
})
|
|
10715
|
+
FunctionExpression?: (("always" | "never") | {
|
|
10716
|
+
multiline?: boolean
|
|
10717
|
+
minElements?: number
|
|
10718
|
+
consistent?: boolean
|
|
10719
|
+
})
|
|
10720
|
+
Property?: (("always" | "never") | {
|
|
10721
|
+
multiline?: boolean
|
|
10722
|
+
minElements?: number
|
|
10723
|
+
consistent?: boolean
|
|
10724
|
+
})
|
|
10725
|
+
ClassBody?: (("always" | "never") | {
|
|
10726
|
+
multiline?: boolean
|
|
10727
|
+
minElements?: number
|
|
10728
|
+
consistent?: boolean
|
|
10729
|
+
})
|
|
10730
|
+
StaticBlock?: (("always" | "never") | {
|
|
10731
|
+
multiline?: boolean
|
|
10732
|
+
minElements?: number
|
|
10733
|
+
consistent?: boolean
|
|
10734
|
+
})
|
|
10735
|
+
WithStatement?: (("always" | "never") | {
|
|
10736
|
+
multiline?: boolean
|
|
10737
|
+
minElements?: number
|
|
10738
|
+
consistent?: boolean
|
|
10739
|
+
})
|
|
10740
|
+
TSEnumBody?: (("always" | "never") | {
|
|
10741
|
+
multiline?: boolean
|
|
10742
|
+
minElements?: number
|
|
10743
|
+
consistent?: boolean
|
|
10744
|
+
})
|
|
10745
|
+
TSInterfaceBody?: (("always" | "never") | {
|
|
10746
|
+
multiline?: boolean
|
|
10747
|
+
minElements?: number
|
|
10748
|
+
consistent?: boolean
|
|
10749
|
+
})
|
|
10750
|
+
TSModuleBlock?: (("always" | "never") | {
|
|
10751
|
+
multiline?: boolean
|
|
10752
|
+
minElements?: number
|
|
10753
|
+
consistent?: boolean
|
|
10754
|
+
})
|
|
10755
|
+
multiline?: boolean
|
|
10756
|
+
minElements?: number
|
|
10757
|
+
consistent?: boolean
|
|
10758
|
+
})]
|
|
10482
10759
|
// ----- style/dot-location -----
|
|
10483
10760
|
type StyleDotLocation = []|[("object" | "property")]
|
|
10484
10761
|
// ----- style/eol-last -----
|
|
@@ -10558,6 +10835,8 @@ type StyleJsxClosingBracketLocation = []|[(("after-props" | "props-aligned" | "t
|
|
|
10558
10835
|
nonEmpty?: (("after-props" | "props-aligned" | "tag-aligned" | "line-aligned") | false)
|
|
10559
10836
|
selfClosing?: (("after-props" | "props-aligned" | "tag-aligned" | "line-aligned") | false)
|
|
10560
10837
|
})]
|
|
10838
|
+
// ----- style/jsx-closing-tag-location -----
|
|
10839
|
+
type StyleJsxClosingTagLocation = []|[("tag-aligned" | "line-aligned")]
|
|
10561
10840
|
// ----- style/jsx-curly-brace-presence -----
|
|
10562
10841
|
type StyleJsxCurlyBracePresence = []|[({
|
|
10563
10842
|
props?: ("always" | "never" | "ignore")
|
|
@@ -11141,6 +11420,7 @@ type StyleMaxLen = []|[({
|
|
|
11141
11420
|
// ----- style/max-statements-per-line -----
|
|
11142
11421
|
type StyleMaxStatementsPerLine = []|[{
|
|
11143
11422
|
max?: number
|
|
11423
|
+
ignoredNodes?: ("BreakStatement" | "ClassDeclaration" | "ContinueStatement" | "DebuggerStatement" | "DoWhileStatement" | "ExpressionStatement" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "IfStatement" | "ImportDeclaration" | "LabeledStatement" | "ReturnStatement" | "SwitchStatement" | "ThrowStatement" | "TryStatement" | "VariableDeclaration" | "WhileStatement" | "WithStatement" | "ExportNamedDeclaration" | "ExportDefaultDeclaration" | "ExportAllDeclaration")[]
|
|
11144
11424
|
}]
|
|
11145
11425
|
// ----- style/member-delimiter-style -----
|
|
11146
11426
|
type StyleMemberDelimiterStyle = []|[{
|
|
@@ -11310,7 +11590,7 @@ type StylePaddedBlocks = []|[(("always" | "never") | {
|
|
|
11310
11590
|
}]
|
|
11311
11591
|
// ----- style/padding-line-between-statements -----
|
|
11312
11592
|
type _StylePaddingLineBetweenStatementsPaddingType = ("any" | "never" | "always")
|
|
11313
|
-
type _StylePaddingLineBetweenStatementsStatementType = (("*" | "block-like" | "exports" | "require" | "directive" | "expression" | "iife" | "multiline-block-like" | "multiline-expression" | "multiline-const" | "multiline-let" | "multiline-var" | "singleline-const" | "singleline-let" | "singleline-var" | "block" | "empty" | "function" | "ts-method" | "break" | "case" | "class" | "const" | "continue" | "debugger" | "default" | "do" | "export" | "for" | "if" | "import" | "let" | "return" | "switch" | "throw" | "try" | "var" | "while" | "with" | "cjs-export" | "cjs-import" | "enum" | "interface" | "type" | "function-overload") | [("*" | "block-like" | "exports" | "require" | "directive" | "expression" | "iife" | "multiline-block-like" | "multiline-expression" | "multiline-const" | "multiline-let" | "multiline-var" | "singleline-const" | "singleline-let" | "singleline-var" | "block" | "empty" | "function" | "ts-method" | "break" | "case" | "class" | "const" | "continue" | "debugger" | "default" | "do" | "export" | "for" | "if" | "import" | "let" | "return" | "switch" | "throw" | "try" | "var" | "while" | "with" | "cjs-export" | "cjs-import" | "enum" | "interface" | "type" | "function-overload"), ...(("*" | "block-like" | "exports" | "require" | "directive" | "expression" | "iife" | "multiline-block-like" | "multiline-expression" | "multiline-const" | "multiline-let" | "multiline-var" | "singleline-const" | "singleline-let" | "singleline-var" | "block" | "empty" | "function" | "ts-method" | "break" | "case" | "class" | "const" | "continue" | "debugger" | "default" | "do" | "export" | "for" | "if" | "import" | "let" | "return" | "switch" | "throw" | "try" | "var" | "while" | "with" | "cjs-export" | "cjs-import" | "enum" | "interface" | "type" | "function-overload"))[]])
|
|
11593
|
+
type _StylePaddingLineBetweenStatementsStatementType = (("*" | "block-like" | "exports" | "require" | "directive" | "expression" | "iife" | "multiline-block-like" | "multiline-expression" | "multiline-const" | "multiline-export" | "multiline-let" | "multiline-var" | "singleline-const" | "singleline-export" | "singleline-let" | "singleline-var" | "block" | "empty" | "function" | "ts-method" | "break" | "case" | "class" | "const" | "continue" | "debugger" | "default" | "do" | "export" | "for" | "if" | "import" | "let" | "return" | "switch" | "throw" | "try" | "var" | "while" | "with" | "cjs-export" | "cjs-import" | "enum" | "interface" | "type" | "function-overload") | [("*" | "block-like" | "exports" | "require" | "directive" | "expression" | "iife" | "multiline-block-like" | "multiline-expression" | "multiline-const" | "multiline-export" | "multiline-let" | "multiline-var" | "singleline-const" | "singleline-export" | "singleline-let" | "singleline-var" | "block" | "empty" | "function" | "ts-method" | "break" | "case" | "class" | "const" | "continue" | "debugger" | "default" | "do" | "export" | "for" | "if" | "import" | "let" | "return" | "switch" | "throw" | "try" | "var" | "while" | "with" | "cjs-export" | "cjs-import" | "enum" | "interface" | "type" | "function-overload"), ...(("*" | "block-like" | "exports" | "require" | "directive" | "expression" | "iife" | "multiline-block-like" | "multiline-expression" | "multiline-const" | "multiline-export" | "multiline-let" | "multiline-var" | "singleline-const" | "singleline-export" | "singleline-let" | "singleline-var" | "block" | "empty" | "function" | "ts-method" | "break" | "case" | "class" | "const" | "continue" | "debugger" | "default" | "do" | "export" | "for" | "if" | "import" | "let" | "return" | "switch" | "throw" | "try" | "var" | "while" | "with" | "cjs-export" | "cjs-import" | "enum" | "interface" | "type" | "function-overload"))[]])
|
|
11314
11594
|
type StylePaddingLineBetweenStatements = {
|
|
11315
11595
|
blankLine: _StylePaddingLineBetweenStatementsPaddingType
|
|
11316
11596
|
prev: _StylePaddingLineBetweenStatementsStatementType
|
|
@@ -11661,6 +11941,11 @@ type TsArrayType = []|[{
|
|
|
11661
11941
|
}]
|
|
11662
11942
|
// ----- ts/ban-ts-comment -----
|
|
11663
11943
|
type TsBanTsComment = []|[{
|
|
11944
|
+
|
|
11945
|
+
minimumDescriptionLength?: number
|
|
11946
|
+
"ts-check"?: (boolean | "allow-with-description" | {
|
|
11947
|
+
descriptionFormat?: string
|
|
11948
|
+
})
|
|
11664
11949
|
"ts-expect-error"?: (boolean | "allow-with-description" | {
|
|
11665
11950
|
descriptionFormat?: string
|
|
11666
11951
|
})
|
|
@@ -11670,24 +11955,19 @@ type TsBanTsComment = []|[{
|
|
|
11670
11955
|
"ts-nocheck"?: (boolean | "allow-with-description" | {
|
|
11671
11956
|
descriptionFormat?: string
|
|
11672
11957
|
})
|
|
11673
|
-
"ts-check"?: (boolean | "allow-with-description" | {
|
|
11674
|
-
descriptionFormat?: string
|
|
11675
|
-
})
|
|
11676
|
-
|
|
11677
|
-
minimumDescriptionLength?: number
|
|
11678
11958
|
}]
|
|
11679
11959
|
// ----- ts/class-literal-property-style -----
|
|
11680
11960
|
type TsClassLiteralPropertyStyle = []|[("fields" | "getters")]
|
|
11681
11961
|
// ----- ts/class-methods-use-this -----
|
|
11682
11962
|
type TsClassMethodsUseThis = []|[{
|
|
11683
11963
|
|
|
11684
|
-
exceptMethods?: string[]
|
|
11685
|
-
|
|
11686
11964
|
enforceForClassFields?: boolean
|
|
11687
11965
|
|
|
11688
|
-
|
|
11966
|
+
exceptMethods?: string[]
|
|
11689
11967
|
|
|
11690
11968
|
ignoreClassesThatImplementAnInterface?: (boolean | "public-fields")
|
|
11969
|
+
|
|
11970
|
+
ignoreOverrideMethods?: boolean
|
|
11691
11971
|
}]
|
|
11692
11972
|
// ----- ts/consistent-generic-constructors -----
|
|
11693
11973
|
type TsConsistentGenericConstructors = []|[("type-annotation" | "constructor")]
|
|
@@ -11726,6 +12006,8 @@ type TsConsistentTypeImports = []|[{
|
|
|
11726
12006
|
// ----- ts/dot-notation -----
|
|
11727
12007
|
type TsDotNotation = []|[{
|
|
11728
12008
|
|
|
12009
|
+
allowIndexSignaturePropertyAccess?: boolean
|
|
12010
|
+
|
|
11729
12011
|
allowKeywords?: boolean
|
|
11730
12012
|
|
|
11731
12013
|
allowPattern?: string
|
|
@@ -11733,40 +12015,40 @@ type TsDotNotation = []|[{
|
|
|
11733
12015
|
allowPrivateClassPropertyAccess?: boolean
|
|
11734
12016
|
|
|
11735
12017
|
allowProtectedClassPropertyAccess?: boolean
|
|
11736
|
-
|
|
11737
|
-
allowIndexSignaturePropertyAccess?: boolean
|
|
11738
12018
|
}]
|
|
11739
12019
|
// ----- ts/explicit-function-return-type -----
|
|
11740
12020
|
type TsExplicitFunctionReturnType = []|[{
|
|
11741
12021
|
|
|
11742
12022
|
allowConciseArrowFunctionExpressionsStartingWithVoid?: boolean
|
|
11743
12023
|
|
|
11744
|
-
|
|
11745
|
-
|
|
11746
|
-
allowHigherOrderFunctions?: boolean
|
|
12024
|
+
allowDirectConstAssertionInArrowFunctions?: boolean
|
|
11747
12025
|
|
|
11748
|
-
|
|
12026
|
+
allowedNames?: string[]
|
|
11749
12027
|
|
|
11750
|
-
|
|
12028
|
+
allowExpressions?: boolean
|
|
11751
12029
|
|
|
11752
12030
|
allowFunctionsWithoutTypeParameters?: boolean
|
|
11753
12031
|
|
|
11754
|
-
|
|
12032
|
+
allowHigherOrderFunctions?: boolean
|
|
11755
12033
|
|
|
11756
12034
|
allowIIFEs?: boolean
|
|
12035
|
+
|
|
12036
|
+
allowTypedFunctionExpressions?: boolean
|
|
11757
12037
|
}]
|
|
11758
12038
|
// ----- ts/explicit-member-accessibility -----
|
|
11759
12039
|
type TsExplicitMemberAccessibility = []|[{
|
|
12040
|
+
|
|
11760
12041
|
accessibility?: ("explicit" | "no-public" | "off")
|
|
12042
|
+
|
|
12043
|
+
ignoredMethodNames?: string[]
|
|
12044
|
+
|
|
11761
12045
|
overrides?: {
|
|
11762
12046
|
accessors?: ("explicit" | "no-public" | "off")
|
|
11763
12047
|
constructors?: ("explicit" | "no-public" | "off")
|
|
11764
12048
|
methods?: ("explicit" | "no-public" | "off")
|
|
11765
|
-
properties?: ("explicit" | "no-public" | "off")
|
|
11766
12049
|
parameterProperties?: ("explicit" | "no-public" | "off")
|
|
12050
|
+
properties?: ("explicit" | "no-public" | "off")
|
|
11767
12051
|
}
|
|
11768
|
-
|
|
11769
|
-
ignoredMethodNames?: string[]
|
|
11770
12052
|
}]
|
|
11771
12053
|
// ----- ts/explicit-module-boundary-types -----
|
|
11772
12054
|
type TsExplicitModuleBoundaryTypes = []|[{
|
|
@@ -11788,38 +12070,38 @@ type TsInitDeclarations = ([]|["always"] | []|["never"]|["never", {
|
|
|
11788
12070
|
// ----- ts/max-params -----
|
|
11789
12071
|
type TsMaxParams = []|[{
|
|
11790
12072
|
|
|
12073
|
+
countVoidThis?: boolean
|
|
12074
|
+
|
|
11791
12075
|
max?: number
|
|
11792
12076
|
|
|
11793
12077
|
maximum?: number
|
|
11794
|
-
|
|
11795
|
-
countVoidThis?: boolean
|
|
11796
12078
|
}]
|
|
11797
12079
|
// ----- ts/member-ordering -----
|
|
11798
12080
|
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
12081
|
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
12082
|
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
12083
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
12084
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
11808
12085
|
})
|
|
11809
12086
|
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
12087
|
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")
|
|
12088
|
+
optionalityOrder?: ("optional-first" | "required-first")
|
|
11811
12089
|
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12090
|
+
})
|
|
12091
|
+
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")[])[] | {
|
|
12092
|
+
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
12093
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
12094
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
11813
12095
|
})
|
|
11814
12096
|
interfaces?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | {
|
|
11815
12097
|
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
12098
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
12099
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
11818
12100
|
})
|
|
11819
12101
|
typeLiterals?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | {
|
|
11820
12102
|
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
12103
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
12104
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
11823
12105
|
})
|
|
11824
12106
|
}]
|
|
11825
12107
|
// ----- ts/method-signature-style -----
|
|
@@ -11831,310 +12113,310 @@ type _TsNamingConventionUnderscoreOptions = ("forbid" | "allow" | "require" | "r
|
|
|
11831
12113
|
type _TsNamingConvention_PrefixSuffixConfig = string[]
|
|
11832
12114
|
type _TsNamingConventionTypeModifiers = ("boolean" | "string" | "number" | "function" | "array")
|
|
11833
12115
|
type TsNamingConvention = ({
|
|
11834
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11835
12116
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12117
|
+
failureMessage?: string
|
|
12118
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11836
12119
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11837
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11838
12120
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11839
12121
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11840
|
-
|
|
12122
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11841
12123
|
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
12124
|
modifiers?: ("const" | "readonly" | "static" | "public" | "protected" | "private" | "#private" | "abstract" | "destructured" | "global" | "exported" | "unused" | "requiresQuotes" | "override" | "async" | "default" | "namespace")[]
|
|
12125
|
+
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
12126
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11845
12127
|
} | {
|
|
11846
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11847
12128
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12129
|
+
failureMessage?: string
|
|
12130
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11848
12131
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11849
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11850
12132
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11851
12133
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11852
|
-
|
|
12134
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11853
12135
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11854
12136
|
selector: "default"
|
|
11855
12137
|
modifiers?: ("const" | "readonly" | "static" | "public" | "protected" | "private" | "#private" | "abstract" | "destructured" | "global" | "exported" | "unused" | "requiresQuotes" | "override" | "async" | "default" | "namespace")[]
|
|
11856
12138
|
} | {
|
|
11857
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11858
12139
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12140
|
+
failureMessage?: string
|
|
12141
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11859
12142
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11860
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11861
12143
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11862
12144
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11863
|
-
|
|
12145
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11864
12146
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11865
12147
|
selector: "variableLike"
|
|
11866
12148
|
modifiers?: ("unused" | "async")[]
|
|
11867
12149
|
} | {
|
|
11868
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11869
12150
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12151
|
+
failureMessage?: string
|
|
12152
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11870
12153
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11871
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11872
12154
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11873
12155
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11874
|
-
|
|
12156
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11875
12157
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11876
12158
|
selector: "variable"
|
|
11877
12159
|
modifiers?: ("const" | "destructured" | "exported" | "global" | "unused" | "async")[]
|
|
11878
12160
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11879
12161
|
} | {
|
|
11880
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11881
12162
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12163
|
+
failureMessage?: string
|
|
12164
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11882
12165
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11883
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11884
12166
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11885
12167
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11886
|
-
|
|
12168
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11887
12169
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11888
12170
|
selector: "function"
|
|
11889
12171
|
modifiers?: ("exported" | "global" | "unused" | "async")[]
|
|
11890
12172
|
} | {
|
|
11891
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11892
12173
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12174
|
+
failureMessage?: string
|
|
12175
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11893
12176
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11894
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11895
12177
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11896
12178
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11897
|
-
|
|
12179
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11898
12180
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11899
12181
|
selector: "parameter"
|
|
11900
12182
|
modifiers?: ("destructured" | "unused")[]
|
|
11901
12183
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11902
12184
|
} | {
|
|
11903
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11904
12185
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12186
|
+
failureMessage?: string
|
|
12187
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11905
12188
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11906
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11907
12189
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11908
12190
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11909
|
-
|
|
12191
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11910
12192
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11911
12193
|
selector: "memberLike"
|
|
11912
12194
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
11913
12195
|
} | {
|
|
11914
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11915
12196
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
11916
|
-
|
|
11917
|
-
|
|
12197
|
+
failureMessage?: string
|
|
12198
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12199
|
+
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11918
12200
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11919
12201
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11920
|
-
|
|
12202
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11921
12203
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11922
12204
|
selector: "classProperty"
|
|
11923
12205
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override")[]
|
|
11924
12206
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11925
12207
|
} | {
|
|
11926
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11927
12208
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12209
|
+
failureMessage?: string
|
|
12210
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11928
12211
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11929
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11930
12212
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11931
12213
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11932
|
-
|
|
12214
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11933
12215
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11934
12216
|
selector: "objectLiteralProperty"
|
|
11935
12217
|
modifiers?: ("public" | "requiresQuotes")[]
|
|
11936
12218
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11937
12219
|
} | {
|
|
11938
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11939
12220
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12221
|
+
failureMessage?: string
|
|
12222
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11940
12223
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11941
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11942
12224
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11943
12225
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11944
|
-
|
|
12226
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11945
12227
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11946
12228
|
selector: "typeProperty"
|
|
11947
12229
|
modifiers?: ("public" | "readonly" | "requiresQuotes")[]
|
|
11948
12230
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11949
12231
|
} | {
|
|
11950
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11951
12232
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12233
|
+
failureMessage?: string
|
|
12234
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11952
12235
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11953
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11954
12236
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11955
12237
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11956
|
-
|
|
12238
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11957
12239
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11958
12240
|
selector: "parameterProperty"
|
|
11959
12241
|
modifiers?: ("private" | "protected" | "public" | "readonly")[]
|
|
11960
12242
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11961
12243
|
} | {
|
|
11962
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11963
12244
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12245
|
+
failureMessage?: string
|
|
12246
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11964
12247
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11965
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11966
12248
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11967
12249
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11968
|
-
|
|
12250
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11969
12251
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11970
12252
|
selector: "property"
|
|
11971
12253
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
11972
12254
|
types?: _TsNamingConventionTypeModifiers[]
|
|
11973
12255
|
} | {
|
|
11974
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11975
12256
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12257
|
+
failureMessage?: string
|
|
12258
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11976
12259
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11977
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11978
12260
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11979
12261
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11980
|
-
|
|
12262
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11981
12263
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11982
12264
|
selector: "classMethod"
|
|
11983
12265
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
11984
12266
|
} | {
|
|
11985
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11986
12267
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12268
|
+
failureMessage?: string
|
|
12269
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11987
12270
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11988
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11989
12271
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11990
12272
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
11991
|
-
|
|
12273
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11992
12274
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
11993
12275
|
selector: "objectLiteralMethod"
|
|
11994
12276
|
modifiers?: ("public" | "requiresQuotes" | "async")[]
|
|
11995
12277
|
} | {
|
|
11996
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
11997
12278
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12279
|
+
failureMessage?: string
|
|
12280
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
11998
12281
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
11999
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12000
12282
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12001
12283
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12002
|
-
|
|
12284
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12003
12285
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12004
12286
|
selector: "typeMethod"
|
|
12005
12287
|
modifiers?: ("public" | "requiresQuotes")[]
|
|
12006
12288
|
} | {
|
|
12007
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12008
12289
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12290
|
+
failureMessage?: string
|
|
12291
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12009
12292
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12010
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12011
12293
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12012
12294
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12013
|
-
|
|
12295
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12014
12296
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12015
12297
|
selector: "method"
|
|
12016
12298
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
12017
12299
|
} | {
|
|
12018
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12019
12300
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12301
|
+
failureMessage?: string
|
|
12302
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12020
12303
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12021
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12022
12304
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12023
12305
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12024
|
-
|
|
12306
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12025
12307
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12026
12308
|
selector: "classicAccessor"
|
|
12027
12309
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
12028
12310
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12029
12311
|
} | {
|
|
12030
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12031
12312
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12313
|
+
failureMessage?: string
|
|
12314
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12032
12315
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12033
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12034
12316
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12035
12317
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12036
|
-
|
|
12318
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12037
12319
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12038
12320
|
selector: "autoAccessor"
|
|
12039
12321
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
12040
12322
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12041
12323
|
} | {
|
|
12042
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12043
12324
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12325
|
+
failureMessage?: string
|
|
12326
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12044
12327
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12045
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12046
12328
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12047
12329
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12048
|
-
|
|
12330
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12049
12331
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12050
12332
|
selector: "accessor"
|
|
12051
12333
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
12052
12334
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12053
12335
|
} | {
|
|
12054
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12055
12336
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12337
|
+
failureMessage?: string
|
|
12338
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12056
12339
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12057
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12058
12340
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12059
12341
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12060
|
-
|
|
12342
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12061
12343
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12062
12344
|
selector: "enumMember"
|
|
12063
12345
|
modifiers?: ("requiresQuotes")[]
|
|
12064
12346
|
} | {
|
|
12065
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12066
12347
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12348
|
+
failureMessage?: string
|
|
12349
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12067
12350
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12068
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12069
12351
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12070
12352
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12071
|
-
|
|
12353
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12072
12354
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12073
12355
|
selector: "typeLike"
|
|
12074
12356
|
modifiers?: ("abstract" | "exported" | "unused")[]
|
|
12075
12357
|
} | {
|
|
12076
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12077
12358
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12359
|
+
failureMessage?: string
|
|
12360
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12078
12361
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12079
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12080
12362
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12081
12363
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12082
|
-
|
|
12364
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12083
12365
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12084
12366
|
selector: "class"
|
|
12085
12367
|
modifiers?: ("abstract" | "exported" | "unused")[]
|
|
12086
12368
|
} | {
|
|
12087
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12088
12369
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12370
|
+
failureMessage?: string
|
|
12371
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12089
12372
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12090
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12091
12373
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12092
12374
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12093
|
-
|
|
12375
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12094
12376
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12095
12377
|
selector: "interface"
|
|
12096
12378
|
modifiers?: ("exported" | "unused")[]
|
|
12097
12379
|
} | {
|
|
12098
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12099
12380
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12381
|
+
failureMessage?: string
|
|
12382
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12100
12383
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12101
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12102
12384
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12103
12385
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12104
|
-
|
|
12386
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12105
12387
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12106
12388
|
selector: "typeAlias"
|
|
12107
12389
|
modifiers?: ("exported" | "unused")[]
|
|
12108
12390
|
} | {
|
|
12109
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12110
12391
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12392
|
+
failureMessage?: string
|
|
12393
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12111
12394
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12112
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12113
12395
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12114
12396
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12115
|
-
|
|
12397
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12116
12398
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12117
12399
|
selector: "enum"
|
|
12118
12400
|
modifiers?: ("exported" | "unused")[]
|
|
12119
12401
|
} | {
|
|
12120
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12121
12402
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12403
|
+
failureMessage?: string
|
|
12404
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12122
12405
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12123
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12124
12406
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12125
12407
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12126
|
-
|
|
12408
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12127
12409
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12128
12410
|
selector: "typeParameter"
|
|
12129
12411
|
modifiers?: ("unused")[]
|
|
12130
12412
|
} | {
|
|
12131
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12132
12413
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
12414
|
+
failureMessage?: string
|
|
12415
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12133
12416
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12134
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12135
12417
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12136
12418
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12137
|
-
|
|
12419
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12138
12420
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12139
12421
|
selector: "import"
|
|
12140
12422
|
modifiers?: ("default" | "namespace")[]
|
|
@@ -12202,7 +12484,7 @@ type TsNoExtraneousClass = []|[{
|
|
|
12202
12484
|
// ----- ts/no-floating-promises -----
|
|
12203
12485
|
type TsNoFloatingPromises = []|[{
|
|
12204
12486
|
|
|
12205
|
-
|
|
12487
|
+
allowForKnownSafeCalls?: (string | {
|
|
12206
12488
|
from: "file"
|
|
12207
12489
|
name: (string | [string, ...(string)[]])
|
|
12208
12490
|
path?: string
|
|
@@ -12215,7 +12497,7 @@ type TsNoFloatingPromises = []|[{
|
|
|
12215
12497
|
package: string
|
|
12216
12498
|
})[]
|
|
12217
12499
|
|
|
12218
|
-
|
|
12500
|
+
allowForKnownSafePromises?: (string | {
|
|
12219
12501
|
from: "file"
|
|
12220
12502
|
name: (string | [string, ...(string)[]])
|
|
12221
12503
|
path?: string
|
|
@@ -12230,9 +12512,9 @@ type TsNoFloatingPromises = []|[{
|
|
|
12230
12512
|
|
|
12231
12513
|
checkThenables?: boolean
|
|
12232
12514
|
|
|
12233
|
-
ignoreVoid?: boolean
|
|
12234
|
-
|
|
12235
12515
|
ignoreIIFE?: boolean
|
|
12516
|
+
|
|
12517
|
+
ignoreVoid?: boolean
|
|
12236
12518
|
}]
|
|
12237
12519
|
// ----- ts/no-inferrable-types -----
|
|
12238
12520
|
type TsNoInferrableTypes = []|[{
|
|
@@ -12248,9 +12530,9 @@ type TsNoInvalidThis = []|[{
|
|
|
12248
12530
|
// ----- ts/no-invalid-void-type -----
|
|
12249
12531
|
type TsNoInvalidVoidType = []|[{
|
|
12250
12532
|
|
|
12251
|
-
allowInGenericTypeArguments?: (boolean | [string, ...(string)[]])
|
|
12252
|
-
|
|
12253
12533
|
allowAsThisParameter?: boolean
|
|
12534
|
+
|
|
12535
|
+
allowInGenericTypeArguments?: (boolean | [string, ...(string)[]])
|
|
12254
12536
|
}]
|
|
12255
12537
|
// ----- ts/no-magic-numbers -----
|
|
12256
12538
|
type TsNoMagicNumbers = []|[{
|
|
@@ -12261,10 +12543,10 @@ type TsNoMagicNumbers = []|[{
|
|
|
12261
12543
|
ignoreDefaultValues?: boolean
|
|
12262
12544
|
ignoreClassFieldInitialValues?: boolean
|
|
12263
12545
|
|
|
12264
|
-
ignoreNumericLiteralTypes?: boolean
|
|
12265
|
-
|
|
12266
12546
|
ignoreEnums?: boolean
|
|
12267
12547
|
|
|
12548
|
+
ignoreNumericLiteralTypes?: boolean
|
|
12549
|
+
|
|
12268
12550
|
ignoreReadonlyClassProperties?: boolean
|
|
12269
12551
|
|
|
12270
12552
|
ignoreTypeIndexes?: boolean
|
|
@@ -12276,7 +12558,11 @@ type TsNoMeaninglessVoidOperator = []|[{
|
|
|
12276
12558
|
}]
|
|
12277
12559
|
// ----- ts/no-misused-promises -----
|
|
12278
12560
|
type TsNoMisusedPromises = []|[{
|
|
12561
|
+
|
|
12279
12562
|
checksConditionals?: boolean
|
|
12563
|
+
|
|
12564
|
+
checksSpreads?: boolean
|
|
12565
|
+
|
|
12280
12566
|
checksVoidReturn?: (boolean | {
|
|
12281
12567
|
|
|
12282
12568
|
arguments?: boolean
|
|
@@ -12291,8 +12577,6 @@ type TsNoMisusedPromises = []|[{
|
|
|
12291
12577
|
|
|
12292
12578
|
variables?: boolean
|
|
12293
12579
|
})
|
|
12294
|
-
|
|
12295
|
-
checksSpreads?: boolean
|
|
12296
12580
|
}]
|
|
12297
12581
|
// ----- ts/no-namespace -----
|
|
12298
12582
|
type TsNoNamespace = []|[{
|
|
@@ -12350,13 +12634,14 @@ type TsNoRestrictedImports = ((string | {
|
|
|
12350
12634
|
}])
|
|
12351
12635
|
// ----- ts/no-restricted-types -----
|
|
12352
12636
|
type TsNoRestrictedTypes = []|[{
|
|
12637
|
+
|
|
12353
12638
|
types?: {
|
|
12354
12639
|
[k: string]: (true | string | {
|
|
12355
12640
|
|
|
12356
|
-
message?: string
|
|
12357
|
-
|
|
12358
12641
|
fixWith?: string
|
|
12359
12642
|
|
|
12643
|
+
message?: string
|
|
12644
|
+
|
|
12360
12645
|
suggest?: string[]
|
|
12361
12646
|
}) | undefined
|
|
12362
12647
|
}
|
|
@@ -12364,17 +12649,17 @@ type TsNoRestrictedTypes = []|[{
|
|
|
12364
12649
|
// ----- ts/no-shadow -----
|
|
12365
12650
|
type TsNoShadow = []|[{
|
|
12366
12651
|
|
|
12652
|
+
allow?: string[]
|
|
12653
|
+
|
|
12367
12654
|
builtinGlobals?: boolean
|
|
12368
12655
|
|
|
12369
12656
|
hoist?: ("all" | "functions" | "never")
|
|
12370
12657
|
|
|
12371
|
-
|
|
12658
|
+
ignoreFunctionTypeParameterNameValueShadow?: boolean
|
|
12372
12659
|
|
|
12373
12660
|
ignoreOnInitialization?: boolean
|
|
12374
12661
|
|
|
12375
12662
|
ignoreTypeValueShadow?: boolean
|
|
12376
|
-
|
|
12377
|
-
ignoreFunctionTypeParameterNameValueShadow?: boolean
|
|
12378
12663
|
}]
|
|
12379
12664
|
// ----- ts/no-this-alias -----
|
|
12380
12665
|
type TsNoThisAlias = []|[{
|
|
@@ -12394,20 +12679,20 @@ type TsNoTypeAlias = []|[{
|
|
|
12394
12679
|
|
|
12395
12680
|
allowConstructors?: ("always" | "never")
|
|
12396
12681
|
|
|
12682
|
+
allowGenerics?: ("always" | "never")
|
|
12683
|
+
|
|
12397
12684
|
allowLiterals?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
12398
12685
|
|
|
12399
12686
|
allowMappedTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
12400
12687
|
|
|
12401
12688
|
allowTupleTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
12402
|
-
|
|
12403
|
-
allowGenerics?: ("always" | "never")
|
|
12404
12689
|
}]
|
|
12405
12690
|
// ----- ts/no-unnecessary-boolean-literal-compare -----
|
|
12406
12691
|
type TsNoUnnecessaryBooleanLiteralCompare = []|[{
|
|
12407
12692
|
|
|
12408
|
-
allowComparingNullableBooleansToTrue?: boolean
|
|
12409
|
-
|
|
12410
12693
|
allowComparingNullableBooleansToFalse?: boolean
|
|
12694
|
+
|
|
12695
|
+
allowComparingNullableBooleansToTrue?: boolean
|
|
12411
12696
|
}]
|
|
12412
12697
|
// ----- ts/no-unnecessary-condition -----
|
|
12413
12698
|
type TsNoUnnecessaryCondition = []|[{
|
|
@@ -12415,6 +12700,8 @@ type TsNoUnnecessaryCondition = []|[{
|
|
|
12415
12700
|
allowConstantLoopConditions?: boolean
|
|
12416
12701
|
|
|
12417
12702
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
12703
|
+
|
|
12704
|
+
checkTypePredicates?: boolean
|
|
12418
12705
|
}]
|
|
12419
12706
|
// ----- ts/no-unnecessary-type-assertion -----
|
|
12420
12707
|
type TsNoUnnecessaryTypeAssertion = []|[{
|
|
@@ -12431,10 +12718,6 @@ type TsNoUnusedExpressions = []|[{
|
|
|
12431
12718
|
// ----- ts/no-unused-vars -----
|
|
12432
12719
|
type TsNoUnusedVars = []|[(("all" | "local") | {
|
|
12433
12720
|
|
|
12434
|
-
vars?: ("all" | "local")
|
|
12435
|
-
|
|
12436
|
-
varsIgnorePattern?: string
|
|
12437
|
-
|
|
12438
12721
|
args?: ("all" | "after-used" | "none")
|
|
12439
12722
|
|
|
12440
12723
|
argsIgnorePattern?: string
|
|
@@ -12450,22 +12733,27 @@ type TsNoUnusedVars = []|[(("all" | "local") | {
|
|
|
12450
12733
|
ignoreRestSiblings?: boolean
|
|
12451
12734
|
|
|
12452
12735
|
reportUsedIgnorePattern?: boolean
|
|
12736
|
+
|
|
12737
|
+
vars?: ("all" | "local")
|
|
12738
|
+
|
|
12739
|
+
varsIgnorePattern?: string
|
|
12453
12740
|
})]
|
|
12454
12741
|
// ----- ts/no-use-before-define -----
|
|
12455
12742
|
type TsNoUseBeforeDefine = []|[("nofunc" | {
|
|
12456
12743
|
|
|
12457
|
-
|
|
12744
|
+
allowNamedExports?: boolean
|
|
12458
12745
|
|
|
12459
12746
|
classes?: boolean
|
|
12460
12747
|
|
|
12461
12748
|
enums?: boolean
|
|
12462
12749
|
|
|
12463
|
-
|
|
12750
|
+
functions?: boolean
|
|
12751
|
+
|
|
12752
|
+
ignoreTypeReferences?: boolean
|
|
12464
12753
|
|
|
12465
12754
|
typedefs?: boolean
|
|
12466
12755
|
|
|
12467
|
-
|
|
12468
|
-
allowNamedExports?: boolean
|
|
12756
|
+
variables?: boolean
|
|
12469
12757
|
})]
|
|
12470
12758
|
// ----- ts/no-var-requires -----
|
|
12471
12759
|
type TsNoVarRequires = []|[{
|
|
@@ -12475,6 +12763,19 @@ type TsNoVarRequires = []|[{
|
|
|
12475
12763
|
// ----- ts/only-throw-error -----
|
|
12476
12764
|
type TsOnlyThrowError = []|[{
|
|
12477
12765
|
|
|
12766
|
+
allow?: (string | {
|
|
12767
|
+
from: "file"
|
|
12768
|
+
name: (string | [string, ...(string)[]])
|
|
12769
|
+
path?: string
|
|
12770
|
+
} | {
|
|
12771
|
+
from: "lib"
|
|
12772
|
+
name: (string | [string, ...(string)[]])
|
|
12773
|
+
} | {
|
|
12774
|
+
from: "package"
|
|
12775
|
+
name: (string | [string, ...(string)[]])
|
|
12776
|
+
package: string
|
|
12777
|
+
})[]
|
|
12778
|
+
|
|
12478
12779
|
allowThrowingAny?: boolean
|
|
12479
12780
|
|
|
12480
12781
|
allowThrowingUnknown?: boolean
|
|
@@ -12488,11 +12789,11 @@ type TsParameterProperties = []|[{
|
|
|
12488
12789
|
}]
|
|
12489
12790
|
// ----- ts/prefer-destructuring -----
|
|
12490
12791
|
type TsPreferDestructuring = []|[({
|
|
12491
|
-
|
|
12792
|
+
AssignmentExpression?: {
|
|
12492
12793
|
array?: boolean
|
|
12493
12794
|
object?: boolean
|
|
12494
12795
|
}
|
|
12495
|
-
|
|
12796
|
+
VariableDeclarator?: {
|
|
12496
12797
|
array?: boolean
|
|
12497
12798
|
object?: boolean
|
|
12498
12799
|
}
|
|
@@ -12500,11 +12801,11 @@ type TsPreferDestructuring = []|[({
|
|
|
12500
12801
|
array?: boolean
|
|
12501
12802
|
object?: boolean
|
|
12502
12803
|
})]|[({
|
|
12503
|
-
|
|
12804
|
+
AssignmentExpression?: {
|
|
12504
12805
|
array?: boolean
|
|
12505
12806
|
object?: boolean
|
|
12506
12807
|
}
|
|
12507
|
-
|
|
12808
|
+
VariableDeclarator?: {
|
|
12508
12809
|
array?: boolean
|
|
12509
12810
|
object?: boolean
|
|
12510
12811
|
}
|
|
@@ -12512,8 +12813,10 @@ type TsPreferDestructuring = []|[({
|
|
|
12512
12813
|
array?: boolean
|
|
12513
12814
|
object?: boolean
|
|
12514
12815
|
}), {
|
|
12515
|
-
|
|
12816
|
+
|
|
12516
12817
|
enforceForDeclarationWithTypeAnnotation?: boolean
|
|
12818
|
+
|
|
12819
|
+
enforceForRenamedProperties?: boolean
|
|
12517
12820
|
[k: string]: unknown | undefined
|
|
12518
12821
|
}]
|
|
12519
12822
|
// ----- ts/prefer-literal-enum-member -----
|
|
@@ -12526,14 +12829,20 @@ type TsPreferNullishCoalescing = []|[{
|
|
|
12526
12829
|
|
|
12527
12830
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
12528
12831
|
|
|
12832
|
+
ignoreBooleanCoercion?: boolean
|
|
12833
|
+
|
|
12529
12834
|
ignoreConditionalTests?: boolean
|
|
12530
12835
|
|
|
12531
12836
|
ignoreMixedLogicalExpressions?: boolean
|
|
12532
12837
|
|
|
12533
12838
|
ignorePrimitives?: ({
|
|
12839
|
+
|
|
12534
12840
|
bigint?: boolean
|
|
12841
|
+
|
|
12535
12842
|
boolean?: boolean
|
|
12843
|
+
|
|
12536
12844
|
number?: boolean
|
|
12845
|
+
|
|
12537
12846
|
string?: boolean
|
|
12538
12847
|
[k: string]: unknown | undefined
|
|
12539
12848
|
} | true)
|
|
@@ -12543,21 +12852,21 @@ type TsPreferNullishCoalescing = []|[{
|
|
|
12543
12852
|
// ----- ts/prefer-optional-chain -----
|
|
12544
12853
|
type TsPreferOptionalChain = []|[{
|
|
12545
12854
|
|
|
12855
|
+
allowPotentiallyUnsafeFixesThatModifyTheReturnTypeIKnowWhatImDoing?: boolean
|
|
12856
|
+
|
|
12546
12857
|
checkAny?: boolean
|
|
12547
12858
|
|
|
12548
|
-
|
|
12859
|
+
checkBigInt?: boolean
|
|
12549
12860
|
|
|
12550
|
-
|
|
12861
|
+
checkBoolean?: boolean
|
|
12551
12862
|
|
|
12552
12863
|
checkNumber?: boolean
|
|
12553
12864
|
|
|
12554
|
-
|
|
12865
|
+
checkString?: boolean
|
|
12555
12866
|
|
|
12556
|
-
|
|
12867
|
+
checkUnknown?: boolean
|
|
12557
12868
|
|
|
12558
12869
|
requireNullish?: boolean
|
|
12559
|
-
|
|
12560
|
-
allowPotentiallyUnsafeFixesThatModifyTheReturnTypeIKnowWhatImDoing?: boolean
|
|
12561
12870
|
}]
|
|
12562
12871
|
// ----- ts/prefer-promise-reject-errors -----
|
|
12563
12872
|
type TsPreferPromiseRejectErrors = []|[{
|
|
@@ -12666,39 +12975,42 @@ type TsReturnAwait = []|[(("always" | "error-handling-correctness-only" | "in-tr
|
|
|
12666
12975
|
// ----- ts/sort-type-constituents -----
|
|
12667
12976
|
type TsSortTypeConstituents = []|[{
|
|
12668
12977
|
|
|
12978
|
+
caseSensitive?: boolean
|
|
12979
|
+
|
|
12669
12980
|
checkIntersections?: boolean
|
|
12670
12981
|
|
|
12671
12982
|
checkUnions?: boolean
|
|
12672
12983
|
|
|
12673
|
-
caseSensitive?: boolean
|
|
12674
|
-
|
|
12675
12984
|
groupOrder?: ("conditional" | "function" | "import" | "intersection" | "keyword" | "nullish" | "literal" | "named" | "object" | "operator" | "tuple" | "union")[]
|
|
12676
12985
|
}]
|
|
12677
12986
|
// ----- ts/strict-boolean-expressions -----
|
|
12678
12987
|
type TsStrictBooleanExpressions = []|[{
|
|
12679
12988
|
|
|
12680
|
-
|
|
12681
|
-
|
|
12682
|
-
allowNumber?: boolean
|
|
12683
|
-
|
|
12684
|
-
allowNullableObject?: boolean
|
|
12989
|
+
allowAny?: boolean
|
|
12685
12990
|
|
|
12686
12991
|
allowNullableBoolean?: boolean
|
|
12687
12992
|
|
|
12688
|
-
|
|
12993
|
+
allowNullableEnum?: boolean
|
|
12689
12994
|
|
|
12690
12995
|
allowNullableNumber?: boolean
|
|
12691
12996
|
|
|
12692
|
-
|
|
12997
|
+
allowNullableObject?: boolean
|
|
12998
|
+
|
|
12999
|
+
allowNullableString?: boolean
|
|
13000
|
+
|
|
13001
|
+
allowNumber?: boolean
|
|
12693
13002
|
|
|
12694
|
-
allowAny?: boolean
|
|
12695
13003
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
13004
|
+
|
|
13005
|
+
allowString?: boolean
|
|
12696
13006
|
}]
|
|
12697
13007
|
// ----- ts/switch-exhaustiveness-check -----
|
|
12698
13008
|
type TsSwitchExhaustivenessCheck = []|[{
|
|
12699
13009
|
|
|
12700
13010
|
allowDefaultCaseForExhaustiveSwitch?: boolean
|
|
12701
13011
|
|
|
13012
|
+
considerDefaultExhaustiveForUnions?: boolean
|
|
13013
|
+
|
|
12702
13014
|
requireDefaultForNonUnion?: boolean
|
|
12703
13015
|
}]
|
|
12704
13016
|
// ----- ts/triple-slash-reference -----
|
|
@@ -12947,10 +13259,6 @@ type UnocssEnforceClassCompile = []|[{
|
|
|
12947
13259
|
// ----- unused-imports/no-unused-imports -----
|
|
12948
13260
|
type UnusedImportsNoUnusedImports = []|[(("all" | "local") | {
|
|
12949
13261
|
|
|
12950
|
-
vars?: ("all" | "local")
|
|
12951
|
-
|
|
12952
|
-
varsIgnorePattern?: string
|
|
12953
|
-
|
|
12954
13262
|
args?: ("all" | "after-used" | "none")
|
|
12955
13263
|
|
|
12956
13264
|
argsIgnorePattern?: string
|
|
@@ -12966,13 +13274,13 @@ type UnusedImportsNoUnusedImports = []|[(("all" | "local") | {
|
|
|
12966
13274
|
ignoreRestSiblings?: boolean
|
|
12967
13275
|
|
|
12968
13276
|
reportUsedIgnorePattern?: boolean
|
|
12969
|
-
})]
|
|
12970
|
-
// ----- unused-imports/no-unused-vars -----
|
|
12971
|
-
type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
12972
13277
|
|
|
12973
13278
|
vars?: ("all" | "local")
|
|
12974
13279
|
|
|
12975
13280
|
varsIgnorePattern?: string
|
|
13281
|
+
})]
|
|
13282
|
+
// ----- unused-imports/no-unused-vars -----
|
|
13283
|
+
type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
12976
13284
|
|
|
12977
13285
|
args?: ("all" | "after-used" | "none")
|
|
12978
13286
|
|
|
@@ -12989,6 +13297,10 @@ type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
|
12989
13297
|
ignoreRestSiblings?: boolean
|
|
12990
13298
|
|
|
12991
13299
|
reportUsedIgnorePattern?: boolean
|
|
13300
|
+
|
|
13301
|
+
vars?: ("all" | "local")
|
|
13302
|
+
|
|
13303
|
+
varsIgnorePattern?: string
|
|
12992
13304
|
})]
|
|
12993
13305
|
// ----- use-isnan -----
|
|
12994
13306
|
type UseIsnan = []|[{
|
|
@@ -14309,6 +14621,9 @@ type YamlNoMultipleEmptyLines = []|[{
|
|
|
14309
14621
|
// ----- yaml/plain-scalar -----
|
|
14310
14622
|
type YamlPlainScalar = []|[("always" | "never")]|[("always" | "never"), {
|
|
14311
14623
|
ignorePatterns?: string[]
|
|
14624
|
+
overrides?: {
|
|
14625
|
+
mappingKey?: ("always" | "never" | null)
|
|
14626
|
+
}
|
|
14312
14627
|
}]
|
|
14313
14628
|
// ----- yaml/quotes -----
|
|
14314
14629
|
type YamlQuotes = []|[{
|
|
@@ -14660,6 +14975,14 @@ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
|
|
|
14660
14975
|
* - `eslint-plugin-format`
|
|
14661
14976
|
*
|
|
14662
14977
|
* @default false
|
|
14978
|
+
*
|
|
14979
|
+
* 当设置为“true”时,默认值为
|
|
14980
|
+
* {
|
|
14981
|
+
* css: false,
|
|
14982
|
+
* graphql: true,
|
|
14983
|
+
* html: true,
|
|
14984
|
+
* markdown: true,
|
|
14985
|
+
* }
|
|
14663
14986
|
*/
|
|
14664
14987
|
formatters?: boolean | OptionsFormatters;
|
|
14665
14988
|
/**
|