@coderwyd/eslint-config 3.1.0 → 3.1.2
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/cli.cjs +16 -16
- package/dist/cli.js +16 -16
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +535 -359
- package/dist/index.d.ts +535 -359
- package/package.json +28 -28
package/dist/index.d.cts
CHANGED
|
@@ -382,233 +382,233 @@ interface RuleOptions {
|
|
|
382
382
|
'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
|
|
383
383
|
/**
|
|
384
384
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
385
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
385
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/consistent-type-specifier-style.md
|
|
386
386
|
*/
|
|
387
387
|
'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
|
|
388
388
|
/**
|
|
389
389
|
* Ensure a default export is present, given a default import.
|
|
390
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
390
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/default.md
|
|
391
391
|
*/
|
|
392
392
|
'import/default'?: Linter.RuleEntry<[]>
|
|
393
393
|
/**
|
|
394
394
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
395
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
395
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/dynamic-import-chunkname.md
|
|
396
396
|
*/
|
|
397
397
|
'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
|
|
398
398
|
/**
|
|
399
399
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
400
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
400
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/export.md
|
|
401
401
|
*/
|
|
402
402
|
'import/export'?: Linter.RuleEntry<[]>
|
|
403
403
|
/**
|
|
404
404
|
* Ensure all exports appear after other statements.
|
|
405
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
405
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/exports-last.md
|
|
406
406
|
*/
|
|
407
407
|
'import/exports-last'?: Linter.RuleEntry<[]>
|
|
408
408
|
/**
|
|
409
409
|
* Ensure consistent use of file extension within the import path.
|
|
410
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
410
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/extensions.md
|
|
411
411
|
*/
|
|
412
412
|
'import/extensions'?: Linter.RuleEntry<ImportExtensions>
|
|
413
413
|
/**
|
|
414
414
|
* Ensure all imports appear before other statements.
|
|
415
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
415
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/first.md
|
|
416
416
|
*/
|
|
417
417
|
'import/first'?: Linter.RuleEntry<ImportFirst>
|
|
418
418
|
/**
|
|
419
419
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
420
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
420
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/group-exports.md
|
|
421
421
|
*/
|
|
422
422
|
'import/group-exports'?: Linter.RuleEntry<[]>
|
|
423
423
|
/**
|
|
424
424
|
* Replaced by `import-x/first`.
|
|
425
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
425
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/imports-first.md
|
|
426
426
|
* @deprecated
|
|
427
427
|
*/
|
|
428
428
|
'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
|
|
429
429
|
/**
|
|
430
430
|
* Enforce the maximum number of dependencies a module can have.
|
|
431
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
431
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/max-dependencies.md
|
|
432
432
|
*/
|
|
433
433
|
'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
|
|
434
434
|
/**
|
|
435
435
|
* Ensure named imports correspond to a named export in the remote file.
|
|
436
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
436
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/named.md
|
|
437
437
|
*/
|
|
438
438
|
'import/named'?: Linter.RuleEntry<ImportNamed>
|
|
439
439
|
/**
|
|
440
440
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
441
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
441
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/namespace.md
|
|
442
442
|
*/
|
|
443
443
|
'import/namespace'?: Linter.RuleEntry<ImportNamespace>
|
|
444
444
|
/**
|
|
445
445
|
* Enforce a newline after import statements.
|
|
446
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
446
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/newline-after-import.md
|
|
447
447
|
*/
|
|
448
448
|
'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
|
|
449
449
|
/**
|
|
450
450
|
* Forbid import of modules using absolute paths.
|
|
451
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
451
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-absolute-path.md
|
|
452
452
|
*/
|
|
453
453
|
'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
|
|
454
454
|
/**
|
|
455
455
|
* Forbid AMD `require` and `define` calls.
|
|
456
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
456
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-amd.md
|
|
457
457
|
*/
|
|
458
458
|
'import/no-amd'?: Linter.RuleEntry<[]>
|
|
459
459
|
/**
|
|
460
460
|
* Forbid anonymous values as default exports.
|
|
461
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
461
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-anonymous-default-export.md
|
|
462
462
|
*/
|
|
463
463
|
'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
|
|
464
464
|
/**
|
|
465
465
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
466
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
466
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-commonjs.md
|
|
467
467
|
*/
|
|
468
468
|
'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
|
|
469
469
|
/**
|
|
470
470
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
471
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
471
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-cycle.md
|
|
472
472
|
*/
|
|
473
473
|
'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
|
|
474
474
|
/**
|
|
475
475
|
* Forbid default exports.
|
|
476
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
476
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-default-export.md
|
|
477
477
|
*/
|
|
478
478
|
'import/no-default-export'?: Linter.RuleEntry<[]>
|
|
479
479
|
/**
|
|
480
480
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
481
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
481
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-deprecated.md
|
|
482
482
|
*/
|
|
483
483
|
'import/no-deprecated'?: Linter.RuleEntry<[]>
|
|
484
484
|
/**
|
|
485
485
|
* Forbid repeated import of the same module in multiple places.
|
|
486
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
486
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-duplicates.md
|
|
487
487
|
*/
|
|
488
488
|
'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
|
|
489
489
|
/**
|
|
490
490
|
* Forbid `require()` calls with expressions.
|
|
491
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
491
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-dynamic-require.md
|
|
492
492
|
*/
|
|
493
493
|
'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
|
|
494
494
|
/**
|
|
495
495
|
* Forbid empty named import blocks.
|
|
496
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
496
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-empty-named-blocks.md
|
|
497
497
|
*/
|
|
498
498
|
'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
499
499
|
/**
|
|
500
500
|
* Forbid the use of extraneous packages.
|
|
501
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
501
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-extraneous-dependencies.md
|
|
502
502
|
*/
|
|
503
503
|
'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
|
|
504
504
|
/**
|
|
505
505
|
* Forbid import statements with CommonJS module.exports.
|
|
506
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
506
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-import-module-exports.md
|
|
507
507
|
*/
|
|
508
508
|
'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
|
|
509
509
|
/**
|
|
510
510
|
* Forbid importing the submodules of other modules.
|
|
511
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
511
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-internal-modules.md
|
|
512
512
|
*/
|
|
513
513
|
'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
|
|
514
514
|
/**
|
|
515
515
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
516
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
516
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-mutable-exports.md
|
|
517
517
|
*/
|
|
518
518
|
'import/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
519
519
|
/**
|
|
520
520
|
* Forbid use of exported name as identifier of default export.
|
|
521
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
521
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-as-default.md
|
|
522
522
|
*/
|
|
523
523
|
'import/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
524
524
|
/**
|
|
525
525
|
* Forbid use of exported name as property of default export.
|
|
526
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
526
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-as-default-member.md
|
|
527
527
|
*/
|
|
528
528
|
'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
529
529
|
/**
|
|
530
530
|
* Forbid named default exports.
|
|
531
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
531
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-default.md
|
|
532
532
|
*/
|
|
533
533
|
'import/no-named-default'?: Linter.RuleEntry<[]>
|
|
534
534
|
/**
|
|
535
535
|
* Forbid named exports.
|
|
536
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
536
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-named-export.md
|
|
537
537
|
*/
|
|
538
538
|
'import/no-named-export'?: Linter.RuleEntry<[]>
|
|
539
539
|
/**
|
|
540
540
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
541
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
541
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-namespace.md
|
|
542
542
|
*/
|
|
543
543
|
'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
|
|
544
544
|
/**
|
|
545
545
|
* Forbid Node.js builtin modules.
|
|
546
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
546
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-nodejs-modules.md
|
|
547
547
|
*/
|
|
548
548
|
'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
|
|
549
549
|
/**
|
|
550
550
|
* Forbid importing packages through relative paths.
|
|
551
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
551
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-relative-packages.md
|
|
552
552
|
*/
|
|
553
553
|
'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
|
|
554
554
|
/**
|
|
555
555
|
* Forbid importing modules from parent directories.
|
|
556
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
556
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-relative-parent-imports.md
|
|
557
557
|
*/
|
|
558
558
|
'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
|
|
559
559
|
/**
|
|
560
560
|
* Forbid importing a default export by a different name.
|
|
561
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
561
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-rename-default.md
|
|
562
562
|
*/
|
|
563
563
|
'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
|
|
564
564
|
/**
|
|
565
565
|
* Enforce which files can be imported in a given folder.
|
|
566
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
566
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-restricted-paths.md
|
|
567
567
|
*/
|
|
568
568
|
'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
|
|
569
569
|
/**
|
|
570
570
|
* Forbid a module from importing itself.
|
|
571
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
571
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-self-import.md
|
|
572
572
|
*/
|
|
573
573
|
'import/no-self-import'?: Linter.RuleEntry<[]>
|
|
574
574
|
/**
|
|
575
575
|
* Forbid unassigned imports.
|
|
576
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
576
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-unassigned-import.md
|
|
577
577
|
*/
|
|
578
578
|
'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
|
|
579
579
|
/**
|
|
580
580
|
* Ensure imports point to a file/module that can be resolved.
|
|
581
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
581
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-unresolved.md
|
|
582
582
|
*/
|
|
583
583
|
'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
|
|
584
584
|
/**
|
|
585
585
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
586
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
586
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-unused-modules.md
|
|
587
587
|
*/
|
|
588
588
|
'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
|
|
589
589
|
/**
|
|
590
590
|
* Forbid unnecessary path segments in import and require statements.
|
|
591
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
591
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-useless-path-segments.md
|
|
592
592
|
*/
|
|
593
593
|
'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
|
|
594
594
|
/**
|
|
595
595
|
* Forbid webpack loader syntax in imports.
|
|
596
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
596
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/no-webpack-loader-syntax.md
|
|
597
597
|
*/
|
|
598
598
|
'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
599
599
|
/**
|
|
600
600
|
* Enforce a convention in module import order.
|
|
601
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
601
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/order.md
|
|
602
602
|
*/
|
|
603
603
|
'import/order'?: Linter.RuleEntry<ImportOrder>
|
|
604
604
|
/**
|
|
605
605
|
* Prefer a default export if module exports a single name or multiple names.
|
|
606
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
606
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/prefer-default-export.md
|
|
607
607
|
*/
|
|
608
608
|
'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
|
|
609
609
|
/**
|
|
610
610
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
611
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.
|
|
611
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.3.1/docs/rules/unambiguous.md
|
|
612
612
|
*/
|
|
613
613
|
'import/unambiguous'?: Linter.RuleEntry<[]>
|
|
614
614
|
/**
|
|
@@ -759,6 +759,7 @@ interface RuleOptions {
|
|
|
759
759
|
*/
|
|
760
760
|
'jsdoc/no-missing-syntax'?: Linter.RuleEntry<JsdocNoMissingSyntax>
|
|
761
761
|
/**
|
|
762
|
+
* Prevents use of multiple asterisks at the beginning of lines.
|
|
762
763
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-multi-asterisks.md#repos-sticky-header
|
|
763
764
|
*/
|
|
764
765
|
'jsdoc/no-multi-asterisks'?: Linter.RuleEntry<JsdocNoMultiAsterisks>
|
|
@@ -903,6 +904,7 @@ interface RuleOptions {
|
|
|
903
904
|
*/
|
|
904
905
|
'jsdoc/tag-lines'?: Linter.RuleEntry<JsdocTagLines>
|
|
905
906
|
/**
|
|
907
|
+
* Auto-escape certain characters that are input within block and tag descriptions.
|
|
906
908
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/text-escaping.md#repos-sticky-header
|
|
907
909
|
*/
|
|
908
910
|
'jsdoc/text-escaping'?: Linter.RuleEntry<JsdocTextEscaping>
|
|
@@ -2163,7 +2165,7 @@ interface RuleOptions {
|
|
|
2163
2165
|
* disallow the use of `process.env`
|
|
2164
2166
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-process-env.md
|
|
2165
2167
|
*/
|
|
2166
|
-
'node/no-process-env'?: Linter.RuleEntry<
|
|
2168
|
+
'node/no-process-env'?: Linter.RuleEntry<NodeNoProcessEnv>
|
|
2167
2169
|
/**
|
|
2168
2170
|
* disallow the use of `process.exit()`
|
|
2169
2171
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-process-exit.md
|
|
@@ -2346,6 +2348,7 @@ interface RuleOptions {
|
|
|
2346
2348
|
/**
|
|
2347
2349
|
* Enforce sorted Astro attributes.
|
|
2348
2350
|
* @see https://perfectionist.dev/rules/sort-astro-attributes
|
|
2351
|
+
* @deprecated
|
|
2349
2352
|
*/
|
|
2350
2353
|
'perfectionist/sort-astro-attributes'?: Linter.RuleEntry<PerfectionistSortAstroAttributes>
|
|
2351
2354
|
/**
|
|
@@ -2416,6 +2419,7 @@ interface RuleOptions {
|
|
|
2416
2419
|
/**
|
|
2417
2420
|
* Enforce sorted Svelte attributes.
|
|
2418
2421
|
* @see https://perfectionist.dev/rules/sort-svelte-attributes
|
|
2422
|
+
* @deprecated
|
|
2419
2423
|
*/
|
|
2420
2424
|
'perfectionist/sort-svelte-attributes'?: Linter.RuleEntry<PerfectionistSortSvelteAttributes>
|
|
2421
2425
|
/**
|
|
@@ -2436,6 +2440,7 @@ interface RuleOptions {
|
|
|
2436
2440
|
/**
|
|
2437
2441
|
* Enforce sorted Vue attributes.
|
|
2438
2442
|
* @see https://perfectionist.dev/rules/sort-vue-attributes
|
|
2443
|
+
* @deprecated
|
|
2439
2444
|
*/
|
|
2440
2445
|
'perfectionist/sort-vue-attributes'?: Linter.RuleEntry<PerfectionistSortVueAttributes>
|
|
2441
2446
|
/**
|
|
@@ -2601,8 +2606,8 @@ interface RuleOptions {
|
|
|
2601
2606
|
*/
|
|
2602
2607
|
'react-hooks-extra/no-direct-set-state-in-use-effect'?: Linter.RuleEntry<[]>
|
|
2603
2608
|
/**
|
|
2604
|
-
* disallow direct calls to the 'set' function of 'useState' in '
|
|
2605
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-effect
|
|
2609
|
+
* disallow direct calls to the 'set' function of 'useState' in 'useLayoutEffect'
|
|
2610
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-layout-effect
|
|
2606
2611
|
*/
|
|
2607
2612
|
'react-hooks-extra/no-direct-set-state-in-use-layout-effect'?: Linter.RuleEntry<[]>
|
|
2608
2613
|
/**
|
|
@@ -2865,12 +2870,17 @@ interface RuleOptions {
|
|
|
2865
2870
|
* disallow unnecessary fragments
|
|
2866
2871
|
* @see https://eslint-react.xyz/docs/rules/no-useless-fragment
|
|
2867
2872
|
*/
|
|
2868
|
-
'react/no-useless-fragment'?: Linter.RuleEntry<
|
|
2873
|
+
'react/no-useless-fragment'?: Linter.RuleEntry<ReactNoUselessFragment>
|
|
2869
2874
|
/**
|
|
2870
2875
|
* enforce using destructuring assignment in component props and context
|
|
2871
2876
|
* @see https://eslint-react.xyz/docs/rules/prefer-destructuring-assignment
|
|
2872
2877
|
*/
|
|
2873
2878
|
'react/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>
|
|
2879
|
+
/**
|
|
2880
|
+
* enforce React is imported via a namespace import
|
|
2881
|
+
* @see https://eslint-react.xyz/docs/rules/prefer-react-namespace-import
|
|
2882
|
+
*/
|
|
2883
|
+
'react/prefer-react-namespace-import'?: Linter.RuleEntry<[]>
|
|
2874
2884
|
/**
|
|
2875
2885
|
* enforce read-only props in components
|
|
2876
2886
|
* @see https://eslint-react.xyz/docs/rules/prefer-read-only-props
|
|
@@ -3437,6 +3447,11 @@ interface RuleOptions {
|
|
|
3437
3447
|
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/first-attribute-linebreak/
|
|
3438
3448
|
*/
|
|
3439
3449
|
'svelte/first-attribute-linebreak'?: Linter.RuleEntry<SvelteFirstAttributeLinebreak>
|
|
3450
|
+
/**
|
|
3451
|
+
* Require or disallow a line break before tag's closing brackets
|
|
3452
|
+
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/html-closing-bracket-new-line/
|
|
3453
|
+
*/
|
|
3454
|
+
'svelte/html-closing-bracket-new-line'?: Linter.RuleEntry<SvelteHtmlClosingBracketNewLine>
|
|
3440
3455
|
/**
|
|
3441
3456
|
* require or disallow a space before tag's closing brackets
|
|
3442
3457
|
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/html-closing-bracket-spacing/
|
|
@@ -3547,6 +3562,11 @@ interface RuleOptions {
|
|
|
3547
3562
|
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-inner-declarations/
|
|
3548
3563
|
*/
|
|
3549
3564
|
'svelte/no-inner-declarations'?: Linter.RuleEntry<SvelteNoInnerDeclarations>
|
|
3565
|
+
/**
|
|
3566
|
+
* Warns against the use of `$inspect` directive
|
|
3567
|
+
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-inspect/
|
|
3568
|
+
*/
|
|
3569
|
+
'svelte/no-inspect'?: Linter.RuleEntry<[]>
|
|
3550
3570
|
/**
|
|
3551
3571
|
* disallow use of not function in event handler
|
|
3552
3572
|
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-not-function-handler/
|
|
@@ -4046,6 +4066,11 @@ interface RuleOptions {
|
|
|
4046
4066
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-todo.md
|
|
4047
4067
|
*/
|
|
4048
4068
|
'test/prefer-todo'?: Linter.RuleEntry<[]>
|
|
4069
|
+
/**
|
|
4070
|
+
* Prefer `vi.mocked()` over `fn as Mock`
|
|
4071
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-vi-mocked.md
|
|
4072
|
+
*/
|
|
4073
|
+
'test/prefer-vi-mocked'?: Linter.RuleEntry<[]>
|
|
4049
4074
|
/**
|
|
4050
4075
|
* require setup and teardown to be within a hook
|
|
4051
4076
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-hook.md
|
|
@@ -4212,7 +4237,7 @@ interface RuleOptions {
|
|
|
4212
4237
|
*/
|
|
4213
4238
|
'ts/no-array-delete'?: Linter.RuleEntry<[]>
|
|
4214
4239
|
/**
|
|
4215
|
-
* Require `.toString()` to only be called on objects which provide useful information when stringified
|
|
4240
|
+
* Require `.toString()` and `.toLocaleString()` to only be called on objects which provide useful information when stringified
|
|
4216
4241
|
* @see https://typescript-eslint.io/rules/no-base-to-string
|
|
4217
4242
|
*/
|
|
4218
4243
|
'ts/no-base-to-string'?: Linter.RuleEntry<TsNoBaseToString>
|
|
@@ -4729,687 +4754,702 @@ interface RuleOptions {
|
|
|
4729
4754
|
'unicode-bom'?: Linter.RuleEntry<UnicodeBom>
|
|
4730
4755
|
/**
|
|
4731
4756
|
* Improve regexes by making them shorter, consistent, and safer.
|
|
4732
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4757
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/better-regex.md
|
|
4733
4758
|
*/
|
|
4734
4759
|
'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>
|
|
4735
4760
|
/**
|
|
4736
4761
|
* Enforce a specific parameter name in catch clauses.
|
|
4737
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4762
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/catch-error-name.md
|
|
4738
4763
|
*/
|
|
4739
4764
|
'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>
|
|
4740
4765
|
/**
|
|
4741
4766
|
* Use destructured variables over properties.
|
|
4742
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4767
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-destructuring.md
|
|
4743
4768
|
*/
|
|
4744
4769
|
'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>
|
|
4745
4770
|
/**
|
|
4746
4771
|
* Prefer consistent types when spreading a ternary in an array literal.
|
|
4747
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4772
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-empty-array-spread.md
|
|
4748
4773
|
*/
|
|
4749
4774
|
'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>
|
|
4775
|
+
/**
|
|
4776
|
+
* Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
|
|
4777
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-existence-index-check.md
|
|
4778
|
+
*/
|
|
4779
|
+
'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>
|
|
4750
4780
|
/**
|
|
4751
4781
|
* Move function definitions to the highest possible scope.
|
|
4752
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4782
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-function-scoping.md
|
|
4753
4783
|
*/
|
|
4754
4784
|
'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>
|
|
4755
4785
|
/**
|
|
4756
4786
|
* Enforce correct `Error` subclassing.
|
|
4757
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4787
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/custom-error-definition.md
|
|
4758
4788
|
*/
|
|
4759
4789
|
'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>
|
|
4760
4790
|
/**
|
|
4761
4791
|
* Enforce no spaces between braces.
|
|
4762
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4792
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/empty-brace-spaces.md
|
|
4763
4793
|
*/
|
|
4764
4794
|
'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>
|
|
4765
4795
|
/**
|
|
4766
4796
|
* Enforce passing a `message` value when creating a built-in error.
|
|
4767
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4797
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/error-message.md
|
|
4768
4798
|
*/
|
|
4769
4799
|
'unicorn/error-message'?: Linter.RuleEntry<[]>
|
|
4770
4800
|
/**
|
|
4771
4801
|
* Require escape sequences to use uppercase values.
|
|
4772
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4802
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/escape-case.md
|
|
4773
4803
|
*/
|
|
4774
4804
|
'unicorn/escape-case'?: Linter.RuleEntry<[]>
|
|
4775
4805
|
/**
|
|
4776
4806
|
* Add expiration conditions to TODO comments.
|
|
4777
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4807
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/expiring-todo-comments.md
|
|
4778
4808
|
*/
|
|
4779
4809
|
'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>
|
|
4780
4810
|
/**
|
|
4781
4811
|
* Enforce explicitly comparing the `length` or `size` property of a value.
|
|
4782
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4812
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/explicit-length-check.md
|
|
4783
4813
|
*/
|
|
4784
4814
|
'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>
|
|
4785
4815
|
/**
|
|
4786
4816
|
* Enforce a case style for filenames.
|
|
4787
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4817
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/filename-case.md
|
|
4788
4818
|
*/
|
|
4789
4819
|
'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>
|
|
4790
4820
|
/**
|
|
4791
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4821
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#import-index
|
|
4792
4822
|
* @deprecated
|
|
4793
4823
|
*/
|
|
4794
4824
|
'unicorn/import-index'?: Linter.RuleEntry<[]>
|
|
4795
4825
|
/**
|
|
4796
4826
|
* Enforce specific import styles per module.
|
|
4797
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4827
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/import-style.md
|
|
4798
4828
|
*/
|
|
4799
4829
|
'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>
|
|
4800
4830
|
/**
|
|
4801
4831
|
* Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
|
|
4802
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4832
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/new-for-builtins.md
|
|
4803
4833
|
*/
|
|
4804
4834
|
'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>
|
|
4805
4835
|
/**
|
|
4806
4836
|
* Enforce specifying rules to disable in `eslint-disable` comments.
|
|
4807
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4837
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-abusive-eslint-disable.md
|
|
4808
4838
|
*/
|
|
4809
4839
|
'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>
|
|
4810
4840
|
/**
|
|
4811
4841
|
* Disallow anonymous functions and classes as the default export.
|
|
4812
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4842
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-anonymous-default-export.md
|
|
4813
4843
|
*/
|
|
4814
4844
|
'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>
|
|
4815
4845
|
/**
|
|
4816
4846
|
* Prevent passing a function reference directly to iterator methods.
|
|
4817
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4847
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-callback-reference.md
|
|
4818
4848
|
*/
|
|
4819
4849
|
'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>
|
|
4820
4850
|
/**
|
|
4821
4851
|
* Prefer `for…of` over the `forEach` method.
|
|
4822
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4852
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-for-each.md
|
|
4823
4853
|
*/
|
|
4824
4854
|
'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>
|
|
4825
4855
|
/**
|
|
4826
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4856
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-array-instanceof
|
|
4827
4857
|
* @deprecated
|
|
4828
4858
|
*/
|
|
4829
4859
|
'unicorn/no-array-instanceof'?: Linter.RuleEntry<[]>
|
|
4830
4860
|
/**
|
|
4831
4861
|
* Disallow using the `this` argument in array methods.
|
|
4832
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4862
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-method-this-argument.md
|
|
4833
4863
|
*/
|
|
4834
4864
|
'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>
|
|
4835
4865
|
/**
|
|
4836
4866
|
* Enforce combining multiple `Array#push()` into one call.
|
|
4837
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4867
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-push-push.md
|
|
4838
4868
|
*/
|
|
4839
4869
|
'unicorn/no-array-push-push'?: Linter.RuleEntry<UnicornNoArrayPushPush>
|
|
4840
4870
|
/**
|
|
4841
4871
|
* Disallow `Array#reduce()` and `Array#reduceRight()`.
|
|
4842
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4872
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-reduce.md
|
|
4843
4873
|
*/
|
|
4844
4874
|
'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>
|
|
4845
4875
|
/**
|
|
4846
4876
|
* Disallow member access from await expression.
|
|
4847
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4877
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-await-expression-member.md
|
|
4848
4878
|
*/
|
|
4849
4879
|
'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>
|
|
4850
4880
|
/**
|
|
4851
4881
|
* Disallow using `await` in `Promise` method parameters.
|
|
4852
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4882
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-await-in-promise-methods.md
|
|
4853
4883
|
*/
|
|
4854
4884
|
'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
4855
4885
|
/**
|
|
4856
4886
|
* Do not use leading/trailing space between `console.log` parameters.
|
|
4857
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4887
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-console-spaces.md
|
|
4858
4888
|
*/
|
|
4859
4889
|
'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>
|
|
4860
4890
|
/**
|
|
4861
4891
|
* Do not use `document.cookie` directly.
|
|
4862
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4892
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-document-cookie.md
|
|
4863
4893
|
*/
|
|
4864
4894
|
'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>
|
|
4865
4895
|
/**
|
|
4866
4896
|
* Disallow empty files.
|
|
4867
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4897
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-empty-file.md
|
|
4868
4898
|
*/
|
|
4869
4899
|
'unicorn/no-empty-file'?: Linter.RuleEntry<[]>
|
|
4870
4900
|
/**
|
|
4871
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4901
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-fn-reference-in-iterator
|
|
4872
4902
|
* @deprecated
|
|
4873
4903
|
*/
|
|
4874
4904
|
'unicorn/no-fn-reference-in-iterator'?: Linter.RuleEntry<[]>
|
|
4875
4905
|
/**
|
|
4876
4906
|
* Do not use a `for` loop that can be replaced with a `for-of` loop.
|
|
4877
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4907
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-for-loop.md
|
|
4878
4908
|
*/
|
|
4879
4909
|
'unicorn/no-for-loop'?: Linter.RuleEntry<[]>
|
|
4880
4910
|
/**
|
|
4881
4911
|
* Enforce the use of Unicode escapes instead of hexadecimal escapes.
|
|
4882
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4912
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-hex-escape.md
|
|
4883
4913
|
*/
|
|
4884
4914
|
'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>
|
|
4885
4915
|
/**
|
|
4886
4916
|
* Require `Array.isArray()` instead of `instanceof Array`.
|
|
4887
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4917
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-instanceof-array.md
|
|
4888
4918
|
*/
|
|
4889
4919
|
'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>
|
|
4890
4920
|
/**
|
|
4891
4921
|
* Disallow invalid options in `fetch()` and `new Request()`.
|
|
4892
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4922
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-invalid-fetch-options.md
|
|
4893
4923
|
*/
|
|
4894
4924
|
'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>
|
|
4895
4925
|
/**
|
|
4896
4926
|
* Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
|
|
4897
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4927
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-invalid-remove-event-listener.md
|
|
4898
4928
|
*/
|
|
4899
4929
|
'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>
|
|
4900
4930
|
/**
|
|
4901
4931
|
* Disallow identifiers starting with `new` or `class`.
|
|
4902
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4932
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-keyword-prefix.md
|
|
4903
4933
|
*/
|
|
4904
4934
|
'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>
|
|
4905
4935
|
/**
|
|
4906
4936
|
* Disallow using `.length` as the `end` argument of `{Array,String,TypedArray}#slice()`.
|
|
4907
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4937
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-length-as-slice-end.md
|
|
4908
4938
|
*/
|
|
4909
4939
|
'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>
|
|
4910
4940
|
/**
|
|
4911
4941
|
* Disallow `if` statements as the only statement in `if` blocks without `else`.
|
|
4912
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4942
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-lonely-if.md
|
|
4913
4943
|
*/
|
|
4914
4944
|
'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>
|
|
4915
4945
|
/**
|
|
4916
4946
|
* Disallow a magic number as the `depth` argument in `Array#flat(…).`
|
|
4917
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4947
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-magic-array-flat-depth.md
|
|
4918
4948
|
*/
|
|
4919
4949
|
'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>
|
|
4920
4950
|
/**
|
|
4921
4951
|
* Disallow negated conditions.
|
|
4922
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4952
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-negated-condition.md
|
|
4923
4953
|
*/
|
|
4924
4954
|
'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>
|
|
4925
4955
|
/**
|
|
4926
4956
|
* Disallow negated expression in equality check.
|
|
4927
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4957
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-negation-in-equality-check.md
|
|
4928
4958
|
*/
|
|
4929
4959
|
'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>
|
|
4930
4960
|
/**
|
|
4931
4961
|
* Disallow nested ternary expressions.
|
|
4932
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4962
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-nested-ternary.md
|
|
4933
4963
|
*/
|
|
4934
4964
|
'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>
|
|
4935
4965
|
/**
|
|
4936
4966
|
* Disallow `new Array()`.
|
|
4937
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4967
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-new-array.md
|
|
4938
4968
|
*/
|
|
4939
4969
|
'unicorn/no-new-array'?: Linter.RuleEntry<[]>
|
|
4940
4970
|
/**
|
|
4941
4971
|
* Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
|
|
4942
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4972
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-new-buffer.md
|
|
4943
4973
|
*/
|
|
4944
4974
|
'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>
|
|
4945
4975
|
/**
|
|
4946
4976
|
* Disallow the use of the `null` literal.
|
|
4947
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4977
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-null.md
|
|
4948
4978
|
*/
|
|
4949
4979
|
'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>
|
|
4950
4980
|
/**
|
|
4951
4981
|
* Disallow the use of objects as default parameters.
|
|
4952
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4982
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-object-as-default-parameter.md
|
|
4953
4983
|
*/
|
|
4954
4984
|
'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>
|
|
4955
4985
|
/**
|
|
4956
4986
|
* Disallow `process.exit()`.
|
|
4957
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4987
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-process-exit.md
|
|
4958
4988
|
*/
|
|
4959
4989
|
'unicorn/no-process-exit'?: Linter.RuleEntry<[]>
|
|
4960
4990
|
/**
|
|
4961
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4991
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-reduce
|
|
4962
4992
|
* @deprecated
|
|
4963
4993
|
*/
|
|
4964
4994
|
'unicorn/no-reduce'?: Linter.RuleEntry<[]>
|
|
4965
4995
|
/**
|
|
4966
4996
|
* Disallow passing single-element arrays to `Promise` methods.
|
|
4967
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4997
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-single-promise-in-promise-methods.md
|
|
4968
4998
|
*/
|
|
4969
4999
|
'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
4970
5000
|
/**
|
|
4971
5001
|
* Disallow classes that only have static members.
|
|
4972
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5002
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-static-only-class.md
|
|
4973
5003
|
*/
|
|
4974
5004
|
'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>
|
|
4975
5005
|
/**
|
|
4976
5006
|
* Disallow `then` property.
|
|
4977
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5007
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-thenable.md
|
|
4978
5008
|
*/
|
|
4979
5009
|
'unicorn/no-thenable'?: Linter.RuleEntry<[]>
|
|
4980
5010
|
/**
|
|
4981
5011
|
* Disallow assigning `this` to a variable.
|
|
4982
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5012
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-this-assignment.md
|
|
4983
5013
|
*/
|
|
4984
5014
|
'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>
|
|
4985
5015
|
/**
|
|
4986
5016
|
* Disallow comparing `undefined` using `typeof`.
|
|
4987
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5017
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-typeof-undefined.md
|
|
4988
5018
|
*/
|
|
4989
5019
|
'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>
|
|
4990
5020
|
/**
|
|
4991
5021
|
* Disallow awaiting non-promise values.
|
|
4992
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5022
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unnecessary-await.md
|
|
4993
5023
|
*/
|
|
4994
5024
|
'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>
|
|
4995
5025
|
/**
|
|
4996
5026
|
* Enforce the use of built-in methods instead of unnecessary polyfills.
|
|
4997
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5027
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unnecessary-polyfills.md
|
|
4998
5028
|
*/
|
|
4999
5029
|
'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>
|
|
5000
5030
|
/**
|
|
5001
5031
|
* Disallow unreadable array destructuring.
|
|
5002
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5032
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unreadable-array-destructuring.md
|
|
5003
5033
|
*/
|
|
5004
5034
|
'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>
|
|
5005
5035
|
/**
|
|
5006
5036
|
* Disallow unreadable IIFEs.
|
|
5007
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5037
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unreadable-iife.md
|
|
5008
5038
|
*/
|
|
5009
5039
|
'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>
|
|
5010
5040
|
/**
|
|
5011
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5041
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-unsafe-regex
|
|
5012
5042
|
* @deprecated
|
|
5013
5043
|
*/
|
|
5014
5044
|
'unicorn/no-unsafe-regex'?: Linter.RuleEntry<[]>
|
|
5015
5045
|
/**
|
|
5016
5046
|
* Disallow unused object properties.
|
|
5017
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5047
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unused-properties.md
|
|
5018
5048
|
*/
|
|
5019
5049
|
'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>
|
|
5020
5050
|
/**
|
|
5021
5051
|
* Disallow useless fallback when spreading in object literals.
|
|
5022
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5052
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-fallback-in-spread.md
|
|
5023
5053
|
*/
|
|
5024
5054
|
'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>
|
|
5025
5055
|
/**
|
|
5026
5056
|
* Disallow useless array length check.
|
|
5027
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5057
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-length-check.md
|
|
5028
5058
|
*/
|
|
5029
5059
|
'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>
|
|
5030
5060
|
/**
|
|
5031
5061
|
* Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
|
|
5032
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5062
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-promise-resolve-reject.md
|
|
5033
5063
|
*/
|
|
5034
5064
|
'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>
|
|
5035
5065
|
/**
|
|
5036
5066
|
* Disallow unnecessary spread.
|
|
5037
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5067
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-spread.md
|
|
5038
5068
|
*/
|
|
5039
5069
|
'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>
|
|
5040
5070
|
/**
|
|
5041
5071
|
* Disallow useless case in switch statements.
|
|
5042
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5072
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-switch-case.md
|
|
5043
5073
|
*/
|
|
5044
5074
|
'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>
|
|
5045
5075
|
/**
|
|
5046
5076
|
* Disallow useless `undefined`.
|
|
5047
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5077
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-undefined.md
|
|
5048
5078
|
*/
|
|
5049
5079
|
'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>
|
|
5050
5080
|
/**
|
|
5051
5081
|
* Disallow number literals with zero fractions or dangling dots.
|
|
5052
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5082
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-zero-fractions.md
|
|
5053
5083
|
*/
|
|
5054
5084
|
'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>
|
|
5055
5085
|
/**
|
|
5056
5086
|
* Enforce proper case for numeric literals.
|
|
5057
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5087
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/number-literal-case.md
|
|
5058
5088
|
*/
|
|
5059
5089
|
'unicorn/number-literal-case'?: Linter.RuleEntry<[]>
|
|
5060
5090
|
/**
|
|
5061
5091
|
* Enforce the style of numeric separators by correctly grouping digits.
|
|
5062
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5092
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/numeric-separators-style.md
|
|
5063
5093
|
*/
|
|
5064
5094
|
'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>
|
|
5065
5095
|
/**
|
|
5066
5096
|
* Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
|
|
5067
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5097
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-add-event-listener.md
|
|
5068
5098
|
*/
|
|
5069
5099
|
'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>
|
|
5070
5100
|
/**
|
|
5071
5101
|
* Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
|
|
5072
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5102
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-find.md
|
|
5073
5103
|
*/
|
|
5074
5104
|
'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>
|
|
5075
5105
|
/**
|
|
5076
5106
|
* Prefer `Array#flat()` over legacy techniques to flatten arrays.
|
|
5077
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5107
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-flat.md
|
|
5078
5108
|
*/
|
|
5079
5109
|
'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>
|
|
5080
5110
|
/**
|
|
5081
5111
|
* Prefer `.flatMap(…)` over `.map(…).flat()`.
|
|
5082
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5112
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-flat-map.md
|
|
5083
5113
|
*/
|
|
5084
5114
|
'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>
|
|
5085
5115
|
/**
|
|
5086
5116
|
* Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
|
|
5087
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5117
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-index-of.md
|
|
5088
5118
|
*/
|
|
5089
5119
|
'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>
|
|
5090
5120
|
/**
|
|
5091
5121
|
* Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
|
|
5092
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5122
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-some.md
|
|
5093
5123
|
*/
|
|
5094
5124
|
'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>
|
|
5095
5125
|
/**
|
|
5096
5126
|
* Prefer `.at()` method for index access and `String#charAt()`.
|
|
5097
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5127
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-at.md
|
|
5098
5128
|
*/
|
|
5099
5129
|
'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>
|
|
5100
5130
|
/**
|
|
5101
5131
|
* Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
|
|
5102
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5132
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-blob-reading-methods.md
|
|
5103
5133
|
*/
|
|
5104
5134
|
'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>
|
|
5105
5135
|
/**
|
|
5106
5136
|
* Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
|
|
5107
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5137
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-code-point.md
|
|
5108
5138
|
*/
|
|
5109
5139
|
'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>
|
|
5110
5140
|
/**
|
|
5111
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5141
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-dataset
|
|
5112
5142
|
* @deprecated
|
|
5113
5143
|
*/
|
|
5114
5144
|
'unicorn/prefer-dataset'?: Linter.RuleEntry<[]>
|
|
5115
5145
|
/**
|
|
5116
5146
|
* Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
|
|
5117
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5147
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-date-now.md
|
|
5118
5148
|
*/
|
|
5119
5149
|
'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>
|
|
5120
5150
|
/**
|
|
5121
5151
|
* Prefer default parameters over reassignment.
|
|
5122
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5152
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-default-parameters.md
|
|
5123
5153
|
*/
|
|
5124
5154
|
'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>
|
|
5125
5155
|
/**
|
|
5126
5156
|
* Prefer `Node#append()` over `Node#appendChild()`.
|
|
5127
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5157
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-append.md
|
|
5128
5158
|
*/
|
|
5129
5159
|
'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>
|
|
5130
5160
|
/**
|
|
5131
5161
|
* Prefer using `.dataset` on DOM elements over calling attribute methods.
|
|
5132
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5162
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-dataset.md
|
|
5133
5163
|
*/
|
|
5134
5164
|
'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>
|
|
5135
5165
|
/**
|
|
5136
5166
|
* Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
|
|
5137
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5167
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-remove.md
|
|
5138
5168
|
*/
|
|
5139
5169
|
'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>
|
|
5140
5170
|
/**
|
|
5141
5171
|
* Prefer `.textContent` over `.innerText`.
|
|
5142
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5172
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-text-content.md
|
|
5143
5173
|
*/
|
|
5144
5174
|
'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>
|
|
5145
5175
|
/**
|
|
5146
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5176
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-event-key
|
|
5147
5177
|
* @deprecated
|
|
5148
5178
|
*/
|
|
5149
5179
|
'unicorn/prefer-event-key'?: Linter.RuleEntry<[]>
|
|
5150
5180
|
/**
|
|
5151
5181
|
* Prefer `EventTarget` over `EventEmitter`.
|
|
5152
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5182
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-event-target.md
|
|
5153
5183
|
*/
|
|
5154
5184
|
'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>
|
|
5155
5185
|
/**
|
|
5156
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5186
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-exponentiation-operator
|
|
5157
5187
|
* @deprecated
|
|
5158
5188
|
*/
|
|
5159
5189
|
'unicorn/prefer-exponentiation-operator'?: Linter.RuleEntry<[]>
|
|
5160
5190
|
/**
|
|
5161
5191
|
* Prefer `export…from` when re-exporting.
|
|
5162
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5192
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-export-from.md
|
|
5163
5193
|
*/
|
|
5164
5194
|
'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>
|
|
5165
5195
|
/**
|
|
5166
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5196
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-flat-map
|
|
5167
5197
|
* @deprecated
|
|
5168
5198
|
*/
|
|
5169
5199
|
'unicorn/prefer-flat-map'?: Linter.RuleEntry<[]>
|
|
5200
|
+
/**
|
|
5201
|
+
* Prefer `globalThis` over `window`, `self`, and `global`.
|
|
5202
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-global-this.md
|
|
5203
|
+
*/
|
|
5204
|
+
'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>
|
|
5170
5205
|
/**
|
|
5171
5206
|
* Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
|
|
5172
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5207
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-includes.md
|
|
5173
5208
|
*/
|
|
5174
5209
|
'unicorn/prefer-includes'?: Linter.RuleEntry<[]>
|
|
5175
5210
|
/**
|
|
5176
5211
|
* Prefer reading a JSON file as a buffer.
|
|
5177
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5212
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-json-parse-buffer.md
|
|
5178
5213
|
*/
|
|
5179
5214
|
'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>
|
|
5180
5215
|
/**
|
|
5181
5216
|
* Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
|
|
5182
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5217
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-keyboard-event-key.md
|
|
5183
5218
|
*/
|
|
5184
5219
|
'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>
|
|
5185
5220
|
/**
|
|
5186
5221
|
* Prefer using a logical operator over a ternary.
|
|
5187
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5222
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-logical-operator-over-ternary.md
|
|
5188
5223
|
*/
|
|
5189
5224
|
'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>
|
|
5225
|
+
/**
|
|
5226
|
+
* Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
|
|
5227
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-math-min-max.md
|
|
5228
|
+
*/
|
|
5229
|
+
'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>
|
|
5190
5230
|
/**
|
|
5191
5231
|
* Enforce the use of `Math.trunc` instead of bitwise operators.
|
|
5192
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5232
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-math-trunc.md
|
|
5193
5233
|
*/
|
|
5194
5234
|
'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>
|
|
5195
5235
|
/**
|
|
5196
5236
|
* Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
|
|
5197
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5237
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-modern-dom-apis.md
|
|
5198
5238
|
*/
|
|
5199
5239
|
'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>
|
|
5200
5240
|
/**
|
|
5201
5241
|
* Prefer modern `Math` APIs over legacy patterns.
|
|
5202
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5242
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-modern-math-apis.md
|
|
5203
5243
|
*/
|
|
5204
5244
|
'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>
|
|
5205
5245
|
/**
|
|
5206
5246
|
* Prefer JavaScript modules (ESM) over CommonJS.
|
|
5207
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5247
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-module.md
|
|
5208
5248
|
*/
|
|
5209
5249
|
'unicorn/prefer-module'?: Linter.RuleEntry<[]>
|
|
5210
5250
|
/**
|
|
5211
5251
|
* Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
|
|
5212
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5252
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-native-coercion-functions.md
|
|
5213
5253
|
*/
|
|
5214
5254
|
'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>
|
|
5215
5255
|
/**
|
|
5216
5256
|
* Prefer negative index over `.length - index` when possible.
|
|
5217
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5257
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-negative-index.md
|
|
5218
5258
|
*/
|
|
5219
5259
|
'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>
|
|
5220
5260
|
/**
|
|
5221
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5261
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-node-append
|
|
5222
5262
|
* @deprecated
|
|
5223
5263
|
*/
|
|
5224
5264
|
'unicorn/prefer-node-append'?: Linter.RuleEntry<[]>
|
|
5225
5265
|
/**
|
|
5226
5266
|
* Prefer using the `node:` protocol when importing Node.js builtin modules.
|
|
5227
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5267
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-node-protocol.md
|
|
5228
5268
|
*/
|
|
5229
5269
|
'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>
|
|
5230
5270
|
/**
|
|
5231
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5271
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-node-remove
|
|
5232
5272
|
* @deprecated
|
|
5233
5273
|
*/
|
|
5234
5274
|
'unicorn/prefer-node-remove'?: Linter.RuleEntry<[]>
|
|
5235
5275
|
/**
|
|
5236
5276
|
* Prefer `Number` static properties over global ones.
|
|
5237
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5277
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-number-properties.md
|
|
5238
5278
|
*/
|
|
5239
5279
|
'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>
|
|
5240
5280
|
/**
|
|
5241
5281
|
* Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
|
|
5242
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5282
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-object-from-entries.md
|
|
5243
5283
|
*/
|
|
5244
5284
|
'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>
|
|
5245
5285
|
/**
|
|
5246
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5286
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-object-has-own
|
|
5247
5287
|
* @deprecated
|
|
5248
5288
|
*/
|
|
5249
5289
|
'unicorn/prefer-object-has-own'?: Linter.RuleEntry<[]>
|
|
5250
5290
|
/**
|
|
5251
5291
|
* Prefer omitting the `catch` binding parameter.
|
|
5252
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5292
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-optional-catch-binding.md
|
|
5253
5293
|
*/
|
|
5254
5294
|
'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>
|
|
5255
5295
|
/**
|
|
5256
5296
|
* Prefer borrowing methods from the prototype instead of the instance.
|
|
5257
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5297
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-prototype-methods.md
|
|
5258
5298
|
*/
|
|
5259
5299
|
'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>
|
|
5260
5300
|
/**
|
|
5261
|
-
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()`.
|
|
5262
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5301
|
+
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
|
|
5302
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-query-selector.md
|
|
5263
5303
|
*/
|
|
5264
5304
|
'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>
|
|
5265
5305
|
/**
|
|
5266
5306
|
* Prefer `Reflect.apply()` over `Function#apply()`.
|
|
5267
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5307
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-reflect-apply.md
|
|
5268
5308
|
*/
|
|
5269
5309
|
'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>
|
|
5270
5310
|
/**
|
|
5271
5311
|
* Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
|
|
5272
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5312
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-regexp-test.md
|
|
5273
5313
|
*/
|
|
5274
5314
|
'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>
|
|
5275
5315
|
/**
|
|
5276
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5316
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-replace-all
|
|
5277
5317
|
* @deprecated
|
|
5278
5318
|
*/
|
|
5279
5319
|
'unicorn/prefer-replace-all'?: Linter.RuleEntry<[]>
|
|
5280
5320
|
/**
|
|
5281
5321
|
* Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
|
|
5282
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5322
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-set-has.md
|
|
5283
5323
|
*/
|
|
5284
5324
|
'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>
|
|
5285
5325
|
/**
|
|
5286
5326
|
* Prefer using `Set#size` instead of `Array#length`.
|
|
5287
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5327
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-set-size.md
|
|
5288
5328
|
*/
|
|
5289
5329
|
'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>
|
|
5290
5330
|
/**
|
|
5291
5331
|
* Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
|
|
5292
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5332
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-spread.md
|
|
5293
5333
|
*/
|
|
5294
5334
|
'unicorn/prefer-spread'?: Linter.RuleEntry<[]>
|
|
5295
5335
|
/**
|
|
5296
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5336
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-starts-ends-with
|
|
5297
5337
|
* @deprecated
|
|
5298
5338
|
*/
|
|
5299
5339
|
'unicorn/prefer-starts-ends-with'?: Linter.RuleEntry<[]>
|
|
5300
5340
|
/**
|
|
5301
5341
|
* Prefer using the `String.raw` tag to avoid escaping `\`.
|
|
5302
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5342
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-raw.md
|
|
5303
5343
|
*/
|
|
5304
5344
|
'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>
|
|
5305
5345
|
/**
|
|
5306
5346
|
* Prefer `String#replaceAll()` over regex searches with the global flag.
|
|
5307
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5347
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-replace-all.md
|
|
5308
5348
|
*/
|
|
5309
5349
|
'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>
|
|
5310
5350
|
/**
|
|
5311
5351
|
* Prefer `String#slice()` over `String#substr()` and `String#substring()`.
|
|
5312
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5352
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-slice.md
|
|
5313
5353
|
*/
|
|
5314
5354
|
'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>
|
|
5315
5355
|
/**
|
|
5316
5356
|
* Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
|
|
5317
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5357
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-starts-ends-with.md
|
|
5318
5358
|
*/
|
|
5319
5359
|
'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>
|
|
5320
5360
|
/**
|
|
5321
5361
|
* Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
|
|
5322
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5362
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-trim-start-end.md
|
|
5323
5363
|
*/
|
|
5324
5364
|
'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>
|
|
5325
5365
|
/**
|
|
5326
5366
|
* Prefer using `structuredClone` to create a deep clone.
|
|
5327
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5367
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-structured-clone.md
|
|
5328
5368
|
*/
|
|
5329
5369
|
'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>
|
|
5330
5370
|
/**
|
|
5331
5371
|
* Prefer `switch` over multiple `else-if`.
|
|
5332
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5372
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-switch.md
|
|
5333
5373
|
*/
|
|
5334
5374
|
'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>
|
|
5335
5375
|
/**
|
|
5336
5376
|
* Prefer ternary expressions over simple `if-else` statements.
|
|
5337
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5377
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-ternary.md
|
|
5338
5378
|
*/
|
|
5339
5379
|
'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>
|
|
5340
5380
|
/**
|
|
5341
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5381
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-text-content
|
|
5342
5382
|
* @deprecated
|
|
5343
5383
|
*/
|
|
5344
5384
|
'unicorn/prefer-text-content'?: Linter.RuleEntry<[]>
|
|
5345
5385
|
/**
|
|
5346
5386
|
* Prefer top-level await over top-level promises and async function calls.
|
|
5347
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5387
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-top-level-await.md
|
|
5348
5388
|
*/
|
|
5349
5389
|
'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>
|
|
5350
5390
|
/**
|
|
5351
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5391
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-trim-start-end
|
|
5352
5392
|
* @deprecated
|
|
5353
5393
|
*/
|
|
5354
5394
|
'unicorn/prefer-trim-start-end'?: Linter.RuleEntry<[]>
|
|
5355
5395
|
/**
|
|
5356
5396
|
* Enforce throwing `TypeError` in type checking conditions.
|
|
5357
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5397
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-type-error.md
|
|
5358
5398
|
*/
|
|
5359
5399
|
'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>
|
|
5360
5400
|
/**
|
|
5361
5401
|
* Prevent abbreviations.
|
|
5362
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5402
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prevent-abbreviations.md
|
|
5363
5403
|
*/
|
|
5364
5404
|
'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>
|
|
5365
5405
|
/**
|
|
5366
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5406
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#regex-shorthand
|
|
5367
5407
|
* @deprecated
|
|
5368
5408
|
*/
|
|
5369
5409
|
'unicorn/regex-shorthand'?: Linter.RuleEntry<[]>
|
|
5370
5410
|
/**
|
|
5371
5411
|
* Enforce consistent relative URL style.
|
|
5372
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5412
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/relative-url-style.md
|
|
5373
5413
|
*/
|
|
5374
5414
|
'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>
|
|
5375
5415
|
/**
|
|
5376
5416
|
* Enforce using the separator argument with `Array#join()`.
|
|
5377
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5417
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-array-join-separator.md
|
|
5378
5418
|
*/
|
|
5379
5419
|
'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>
|
|
5380
5420
|
/**
|
|
5381
5421
|
* Enforce using the digits argument with `Number#toFixed()`.
|
|
5382
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5422
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-number-to-fixed-digits-argument.md
|
|
5383
5423
|
*/
|
|
5384
5424
|
'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>
|
|
5385
5425
|
/**
|
|
5386
5426
|
* Enforce using the `targetOrigin` argument with `window.postMessage()`.
|
|
5387
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5427
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-post-message-target-origin.md
|
|
5388
5428
|
*/
|
|
5389
5429
|
'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>
|
|
5390
5430
|
/**
|
|
5391
5431
|
* Enforce better string content.
|
|
5392
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5432
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/string-content.md
|
|
5393
5433
|
*/
|
|
5394
5434
|
'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>
|
|
5395
5435
|
/**
|
|
5396
5436
|
* Enforce consistent brace style for `case` clauses.
|
|
5397
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5437
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/switch-case-braces.md
|
|
5398
5438
|
*/
|
|
5399
5439
|
'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>
|
|
5400
5440
|
/**
|
|
5401
5441
|
* Fix whitespace-insensitive template indentation.
|
|
5402
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5442
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/template-indent.md
|
|
5403
5443
|
*/
|
|
5404
5444
|
'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>
|
|
5405
5445
|
/**
|
|
5406
5446
|
* Enforce consistent case for text encoding identifiers.
|
|
5407
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5447
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/text-encoding-identifier-case.md
|
|
5408
5448
|
*/
|
|
5409
5449
|
'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>
|
|
5410
5450
|
/**
|
|
5411
5451
|
* Require `new` when creating an error.
|
|
5412
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5452
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/throw-new-error.md
|
|
5413
5453
|
*/
|
|
5414
5454
|
'unicorn/throw-new-error'?: Linter.RuleEntry<[]>
|
|
5415
5455
|
/**
|
|
@@ -5793,6 +5833,11 @@ interface RuleOptions {
|
|
|
5793
5833
|
* @see https://eslint.vuejs.org/rules/no-deprecated-data-object-declaration.html
|
|
5794
5834
|
*/
|
|
5795
5835
|
'vue/no-deprecated-data-object-declaration'?: Linter.RuleEntry<[]>
|
|
5836
|
+
/**
|
|
5837
|
+
* disallow using deprecated `$delete` and `$set` (in Vue.js 3.0.0+)
|
|
5838
|
+
* @see https://eslint.vuejs.org/rules/no-deprecated-delete-set.html
|
|
5839
|
+
*/
|
|
5840
|
+
'vue/no-deprecated-delete-set'?: Linter.RuleEntry<[]>
|
|
5796
5841
|
/**
|
|
5797
5842
|
* disallow using deprecated `destroyed` and `beforeDestroy` lifecycle hooks (in Vue.js 3.0.0+)
|
|
5798
5843
|
* @see https://eslint.vuejs.org/rules/no-deprecated-destroyed-lifecycle.html
|
|
@@ -6851,6 +6896,7 @@ type CommaStyle = []|[("first" | "last")]|[("first" | "last"), {
|
|
|
6851
6896
|
type Complexity = []|[(number | {
|
|
6852
6897
|
maximum?: number
|
|
6853
6898
|
max?: number
|
|
6899
|
+
variant?: ("classic" | "modified")
|
|
6854
6900
|
})]
|
|
6855
6901
|
// ----- computed-property-spacing -----
|
|
6856
6902
|
type ComputedPropertySpacing = []|[("always" | "never")]|[("always" | "never"), {
|
|
@@ -8912,7 +8958,7 @@ type NodeHashbang = []|[{
|
|
|
8912
8958
|
// ----- node/no-deprecated-api -----
|
|
8913
8959
|
type NodeNoDeprecatedApi = []|[{
|
|
8914
8960
|
version?: string
|
|
8915
|
-
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")[]
|
|
8961
|
+
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()")[]
|
|
8916
8962
|
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")[]
|
|
8917
8963
|
ignoreIndirectDependencies?: boolean
|
|
8918
8964
|
}]
|
|
@@ -8970,6 +9016,7 @@ type NodeNoMissingImport = []|[{
|
|
|
8970
9016
|
allowModules?: string[]
|
|
8971
9017
|
resolvePaths?: string[]
|
|
8972
9018
|
tryExtensions?: string[]
|
|
9019
|
+
ignoreTypeImport?: boolean
|
|
8973
9020
|
tsconfigPath?: string
|
|
8974
9021
|
typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
|
|
8975
9022
|
}]
|
|
@@ -8986,6 +9033,10 @@ type NodeNoMixedRequires = []|[(boolean | {
|
|
|
8986
9033
|
grouping?: boolean
|
|
8987
9034
|
allowCall?: boolean
|
|
8988
9035
|
})]
|
|
9036
|
+
// ----- node/no-process-env -----
|
|
9037
|
+
type NodeNoProcessEnv = []|[{
|
|
9038
|
+
allowedVariables?: string[]
|
|
9039
|
+
}]
|
|
8989
9040
|
// ----- node/no-restricted-import -----
|
|
8990
9041
|
type NodeNoRestrictedImport = []|[(string | {
|
|
8991
9042
|
name: (string | string[])
|
|
@@ -9080,7 +9131,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
9080
9131
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
9081
9132
|
version?: string
|
|
9082
9133
|
allowExperimental?: boolean
|
|
9083
|
-
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")[]
|
|
9134
|
+
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CustomEvent" | "Event" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.Network.loadingFinished" | "inspector.Network.loadingFailed" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.test.isSea" | "sea.test.getAsset" | "sea.test.getAssetAsBlob" | "sea.test.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.run" | "test.skip" | "test.todo" | "test.only" | "test.describe" | "test.describe.skip" | "test.describe.todo" | "test.describe.only" | "test.it" | "test.it.skip" | "test.it.todo" | "test.it.only" | "test.suite" | "test.suite.skip" | "test.suite.todo" | "test.suite.only" | "test.before" | "test.after" | "test.beforeEach" | "test.afterEach" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.MockFunctionContext" | "test.MockModuleContext" | "test.MockTracker" | "test.MockTimers" | "test.TestsStream" | "test.TestContext" | "test.SuiteContext" | "test.test.run" | "test.test.skip" | "test.test.todo" | "test.test.only" | "test.test.describe" | "test.test.it" | "test.test.suite" | "test.test.before" | "test.test.after" | "test.test.beforeEach" | "test.test.afterEach" | "test.test.snapshot" | "test.test.MockFunctionContext" | "test.test.MockModuleContext" | "test.test.MockTracker" | "test.test.MockTimers" | "test.test.TestsStream" | "test.test.TestContext" | "test.test.SuiteContext" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
|
|
9084
9135
|
}]
|
|
9085
9136
|
// ----- node/prefer-global/buffer -----
|
|
9086
9137
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -9227,8 +9278,12 @@ type PerfectionistSortArrayIncludes = []|[{
|
|
|
9227
9278
|
|
|
9228
9279
|
order?: ("asc" | "desc")
|
|
9229
9280
|
|
|
9281
|
+
matcher?: ("minimatch" | "regex")
|
|
9282
|
+
|
|
9230
9283
|
ignoreCase?: boolean
|
|
9231
9284
|
|
|
9285
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9286
|
+
|
|
9232
9287
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
9233
9288
|
|
|
9234
9289
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -9242,8 +9297,12 @@ type PerfectionistSortAstroAttributes = []|[{
|
|
|
9242
9297
|
|
|
9243
9298
|
order?: ("asc" | "desc")
|
|
9244
9299
|
|
|
9300
|
+
matcher?: ("minimatch" | "regex")
|
|
9301
|
+
|
|
9245
9302
|
ignoreCase?: boolean
|
|
9246
9303
|
|
|
9304
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9305
|
+
|
|
9247
9306
|
groups?: (string | string[])[]
|
|
9248
9307
|
|
|
9249
9308
|
customGroups?: {
|
|
@@ -9257,8 +9316,12 @@ type PerfectionistSortClasses = []|[{
|
|
|
9257
9316
|
|
|
9258
9317
|
order?: ("asc" | "desc")
|
|
9259
9318
|
|
|
9319
|
+
matcher?: ("minimatch" | "regex")
|
|
9320
|
+
|
|
9260
9321
|
ignoreCase?: boolean
|
|
9261
9322
|
|
|
9323
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9324
|
+
|
|
9262
9325
|
partitionByComment?: (string[] | boolean | string)
|
|
9263
9326
|
|
|
9264
9327
|
groups?: (string | string[])[]
|
|
@@ -9280,6 +9343,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
9280
9343
|
|
|
9281
9344
|
elementNamePattern?: string
|
|
9282
9345
|
|
|
9346
|
+
elementValuePattern?: string
|
|
9347
|
+
|
|
9283
9348
|
decoratorNamePattern?: string
|
|
9284
9349
|
}[]
|
|
9285
9350
|
} | {
|
|
@@ -9296,6 +9361,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
9296
9361
|
|
|
9297
9362
|
elementNamePattern?: string
|
|
9298
9363
|
|
|
9364
|
+
elementValuePattern?: string
|
|
9365
|
+
|
|
9299
9366
|
decoratorNamePattern?: string
|
|
9300
9367
|
})[])
|
|
9301
9368
|
}]
|
|
@@ -9306,8 +9373,12 @@ type PerfectionistSortEnums = []|[{
|
|
|
9306
9373
|
|
|
9307
9374
|
order?: ("asc" | "desc")
|
|
9308
9375
|
|
|
9376
|
+
matcher?: ("minimatch" | "regex")
|
|
9377
|
+
|
|
9309
9378
|
ignoreCase?: boolean
|
|
9310
9379
|
|
|
9380
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9381
|
+
|
|
9311
9382
|
sortByValue?: boolean
|
|
9312
9383
|
|
|
9313
9384
|
forceNumericSort?: boolean
|
|
@@ -9323,8 +9394,12 @@ type PerfectionistSortExports = []|[{
|
|
|
9323
9394
|
|
|
9324
9395
|
order?: ("asc" | "desc")
|
|
9325
9396
|
|
|
9397
|
+
matcher?: ("minimatch" | "regex")
|
|
9398
|
+
|
|
9326
9399
|
ignoreCase?: boolean
|
|
9327
9400
|
|
|
9401
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9402
|
+
|
|
9328
9403
|
partitionByComment?: (string[] | boolean | string)
|
|
9329
9404
|
|
|
9330
9405
|
partitionByNewLine?: boolean
|
|
@@ -9339,8 +9414,12 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
9339
9414
|
|
|
9340
9415
|
order?: ("asc" | "desc")
|
|
9341
9416
|
|
|
9417
|
+
matcher?: ("minimatch" | "regex")
|
|
9418
|
+
|
|
9342
9419
|
ignoreCase?: boolean
|
|
9343
9420
|
|
|
9421
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9422
|
+
|
|
9344
9423
|
internalPattern?: string[]
|
|
9345
9424
|
|
|
9346
9425
|
sortSideEffects?: boolean
|
|
@@ -9376,8 +9455,12 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
9376
9455
|
|
|
9377
9456
|
order?: ("asc" | "desc")
|
|
9378
9457
|
|
|
9458
|
+
matcher?: ("minimatch" | "regex")
|
|
9459
|
+
|
|
9379
9460
|
ignoreCase?: boolean
|
|
9380
9461
|
|
|
9462
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9463
|
+
|
|
9381
9464
|
ignorePattern?: string[]
|
|
9382
9465
|
|
|
9383
9466
|
partitionByComment?: (boolean | string | string[])
|
|
@@ -9399,8 +9482,12 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
9399
9482
|
|
|
9400
9483
|
order?: ("asc" | "desc")
|
|
9401
9484
|
|
|
9485
|
+
matcher?: ("minimatch" | "regex")
|
|
9486
|
+
|
|
9402
9487
|
ignoreCase?: boolean
|
|
9403
9488
|
|
|
9489
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9490
|
+
|
|
9404
9491
|
groups?: (string | string[])[]
|
|
9405
9492
|
|
|
9406
9493
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -9414,8 +9501,12 @@ type PerfectionistSortJsxProps = []|[{
|
|
|
9414
9501
|
|
|
9415
9502
|
order?: ("asc" | "desc")
|
|
9416
9503
|
|
|
9504
|
+
matcher?: ("minimatch" | "regex")
|
|
9505
|
+
|
|
9417
9506
|
ignoreCase?: boolean
|
|
9418
9507
|
|
|
9508
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9509
|
+
|
|
9419
9510
|
ignorePattern?: string[]
|
|
9420
9511
|
|
|
9421
9512
|
groups?: (string | string[])[]
|
|
@@ -9431,8 +9522,12 @@ type PerfectionistSortMaps = []|[{
|
|
|
9431
9522
|
|
|
9432
9523
|
order?: ("asc" | "desc")
|
|
9433
9524
|
|
|
9525
|
+
matcher?: ("minimatch" | "regex")
|
|
9526
|
+
|
|
9434
9527
|
ignoreCase?: boolean
|
|
9435
9528
|
|
|
9529
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9530
|
+
|
|
9436
9531
|
partitionByComment?: (string[] | boolean | string)
|
|
9437
9532
|
|
|
9438
9533
|
partitionByNewLine?: boolean
|
|
@@ -9444,8 +9539,12 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
9444
9539
|
|
|
9445
9540
|
order?: ("asc" | "desc")
|
|
9446
9541
|
|
|
9542
|
+
matcher?: ("minimatch" | "regex")
|
|
9543
|
+
|
|
9447
9544
|
ignoreCase?: boolean
|
|
9448
9545
|
|
|
9546
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9547
|
+
|
|
9449
9548
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
9450
9549
|
|
|
9451
9550
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -9459,8 +9558,12 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
9459
9558
|
|
|
9460
9559
|
order?: ("asc" | "desc")
|
|
9461
9560
|
|
|
9561
|
+
matcher?: ("minimatch" | "regex")
|
|
9562
|
+
|
|
9462
9563
|
ignoreCase?: boolean
|
|
9463
9564
|
|
|
9565
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9566
|
+
|
|
9464
9567
|
ignoreAlias?: boolean
|
|
9465
9568
|
|
|
9466
9569
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
@@ -9476,8 +9579,12 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
9476
9579
|
|
|
9477
9580
|
order?: ("asc" | "desc")
|
|
9478
9581
|
|
|
9582
|
+
matcher?: ("minimatch" | "regex")
|
|
9583
|
+
|
|
9479
9584
|
ignoreCase?: boolean
|
|
9480
9585
|
|
|
9586
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9587
|
+
|
|
9481
9588
|
partitionByComment?: (string[] | boolean | string)
|
|
9482
9589
|
|
|
9483
9590
|
partitionByNewLine?: boolean
|
|
@@ -9497,8 +9604,12 @@ type PerfectionistSortObjects = []|[{
|
|
|
9497
9604
|
|
|
9498
9605
|
order?: ("asc" | "desc")
|
|
9499
9606
|
|
|
9607
|
+
matcher?: ("minimatch" | "regex")
|
|
9608
|
+
|
|
9500
9609
|
ignoreCase?: boolean
|
|
9501
9610
|
|
|
9611
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9612
|
+
|
|
9502
9613
|
partitionByComment?: (string[] | boolean | string)
|
|
9503
9614
|
|
|
9504
9615
|
partitionByNewLine?: boolean
|
|
@@ -9522,8 +9633,12 @@ type PerfectionistSortSets = []|[{
|
|
|
9522
9633
|
|
|
9523
9634
|
order?: ("asc" | "desc")
|
|
9524
9635
|
|
|
9636
|
+
matcher?: ("minimatch" | "regex")
|
|
9637
|
+
|
|
9525
9638
|
ignoreCase?: boolean
|
|
9526
9639
|
|
|
9640
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9641
|
+
|
|
9527
9642
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
9528
9643
|
|
|
9529
9644
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -9537,8 +9652,12 @@ type PerfectionistSortSvelteAttributes = []|[{
|
|
|
9537
9652
|
|
|
9538
9653
|
order?: ("asc" | "desc")
|
|
9539
9654
|
|
|
9655
|
+
matcher?: ("minimatch" | "regex")
|
|
9656
|
+
|
|
9540
9657
|
ignoreCase?: boolean
|
|
9541
9658
|
|
|
9659
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9660
|
+
|
|
9542
9661
|
groups?: (string | string[])[]
|
|
9543
9662
|
|
|
9544
9663
|
customGroups?: {
|
|
@@ -9553,6 +9672,8 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
9553
9672
|
order?: ("asc" | "desc")
|
|
9554
9673
|
|
|
9555
9674
|
ignoreCase?: boolean
|
|
9675
|
+
|
|
9676
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9556
9677
|
}]
|
|
9557
9678
|
// ----- perfectionist/sort-union-types -----
|
|
9558
9679
|
type PerfectionistSortUnionTypes = []|[{
|
|
@@ -9561,8 +9682,12 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
9561
9682
|
|
|
9562
9683
|
order?: ("asc" | "desc")
|
|
9563
9684
|
|
|
9685
|
+
matcher?: ("minimatch" | "regex")
|
|
9686
|
+
|
|
9564
9687
|
ignoreCase?: boolean
|
|
9565
9688
|
|
|
9689
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9690
|
+
|
|
9566
9691
|
groups?: (string | string[])[]
|
|
9567
9692
|
|
|
9568
9693
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -9576,8 +9701,12 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
9576
9701
|
|
|
9577
9702
|
order?: ("asc" | "desc")
|
|
9578
9703
|
|
|
9704
|
+
matcher?: ("minimatch" | "regex")
|
|
9705
|
+
|
|
9579
9706
|
ignoreCase?: boolean
|
|
9580
9707
|
|
|
9708
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9709
|
+
|
|
9581
9710
|
partitionByComment?: (string[] | boolean | string)
|
|
9582
9711
|
|
|
9583
9712
|
partitionByNewLine?: boolean
|
|
@@ -9589,8 +9718,12 @@ type PerfectionistSortVueAttributes = []|[{
|
|
|
9589
9718
|
|
|
9590
9719
|
order?: ("asc" | "desc")
|
|
9591
9720
|
|
|
9721
|
+
matcher?: ("minimatch" | "regex")
|
|
9722
|
+
|
|
9592
9723
|
ignoreCase?: boolean
|
|
9593
9724
|
|
|
9725
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9726
|
+
|
|
9594
9727
|
groups?: (string | string[])[]
|
|
9595
9728
|
|
|
9596
9729
|
customGroups?: {
|
|
@@ -9702,6 +9835,10 @@ type ReactRefreshOnlyExportComponents = []|[{
|
|
|
9702
9835
|
checkJS?: boolean
|
|
9703
9836
|
allowExportNames?: string[]
|
|
9704
9837
|
}]
|
|
9838
|
+
// ----- react/no-useless-fragment -----
|
|
9839
|
+
type ReactNoUselessFragment = []|[{
|
|
9840
|
+
allowExpressions?: boolean
|
|
9841
|
+
}]
|
|
9705
9842
|
// ----- regexp/hexadecimal-escape -----
|
|
9706
9843
|
type RegexpHexadecimalEscape = []|[("always" | "never")]
|
|
9707
9844
|
// ----- regexp/letter-case -----
|
|
@@ -9937,6 +10074,15 @@ type SvelteFirstAttributeLinebreak = []|[{
|
|
|
9937
10074
|
multiline?: ("below" | "beside")
|
|
9938
10075
|
singleline?: ("below" | "beside")
|
|
9939
10076
|
}]
|
|
10077
|
+
// ----- svelte/html-closing-bracket-new-line -----
|
|
10078
|
+
type SvelteHtmlClosingBracketNewLine = []|[{
|
|
10079
|
+
singleline?: ("always" | "never")
|
|
10080
|
+
multiline?: ("always" | "never")
|
|
10081
|
+
selfClosingTag?: {
|
|
10082
|
+
singleline?: ("always" | "never")
|
|
10083
|
+
multiline?: ("always" | "never")
|
|
10084
|
+
}
|
|
10085
|
+
}]
|
|
9940
10086
|
// ----- svelte/html-closing-bracket-spacing -----
|
|
9941
10087
|
type SvelteHtmlClosingBracketSpacing = []|[{
|
|
9942
10088
|
startTag?: ("always" | "never" | "ignore")
|
|
@@ -10259,6 +10405,11 @@ type TsArrayType = []|[{
|
|
|
10259
10405
|
}]
|
|
10260
10406
|
// ----- ts/ban-ts-comment -----
|
|
10261
10407
|
type TsBanTsComment = []|[{
|
|
10408
|
+
|
|
10409
|
+
minimumDescriptionLength?: number
|
|
10410
|
+
"ts-check"?: (boolean | "allow-with-description" | {
|
|
10411
|
+
descriptionFormat?: string
|
|
10412
|
+
})
|
|
10262
10413
|
"ts-expect-error"?: (boolean | "allow-with-description" | {
|
|
10263
10414
|
descriptionFormat?: string
|
|
10264
10415
|
})
|
|
@@ -10268,24 +10419,19 @@ type TsBanTsComment = []|[{
|
|
|
10268
10419
|
"ts-nocheck"?: (boolean | "allow-with-description" | {
|
|
10269
10420
|
descriptionFormat?: string
|
|
10270
10421
|
})
|
|
10271
|
-
"ts-check"?: (boolean | "allow-with-description" | {
|
|
10272
|
-
descriptionFormat?: string
|
|
10273
|
-
})
|
|
10274
|
-
|
|
10275
|
-
minimumDescriptionLength?: number
|
|
10276
10422
|
}]
|
|
10277
10423
|
// ----- ts/class-literal-property-style -----
|
|
10278
10424
|
type TsClassLiteralPropertyStyle = []|[("fields" | "getters")]
|
|
10279
10425
|
// ----- ts/class-methods-use-this -----
|
|
10280
10426
|
type TsClassMethodsUseThis = []|[{
|
|
10281
10427
|
|
|
10282
|
-
exceptMethods?: string[]
|
|
10283
|
-
|
|
10284
10428
|
enforceForClassFields?: boolean
|
|
10285
10429
|
|
|
10286
|
-
|
|
10430
|
+
exceptMethods?: string[]
|
|
10287
10431
|
|
|
10288
10432
|
ignoreClassesThatImplementAnInterface?: (boolean | "public-fields")
|
|
10433
|
+
|
|
10434
|
+
ignoreOverrideMethods?: boolean
|
|
10289
10435
|
}]
|
|
10290
10436
|
// ----- ts/consistent-generic-constructors -----
|
|
10291
10437
|
type TsConsistentGenericConstructors = []|[("type-annotation" | "constructor")]
|
|
@@ -10324,6 +10470,8 @@ type TsConsistentTypeImports = []|[{
|
|
|
10324
10470
|
// ----- ts/dot-notation -----
|
|
10325
10471
|
type TsDotNotation = []|[{
|
|
10326
10472
|
|
|
10473
|
+
allowIndexSignaturePropertyAccess?: boolean
|
|
10474
|
+
|
|
10327
10475
|
allowKeywords?: boolean
|
|
10328
10476
|
|
|
10329
10477
|
allowPattern?: string
|
|
@@ -10331,40 +10479,40 @@ type TsDotNotation = []|[{
|
|
|
10331
10479
|
allowPrivateClassPropertyAccess?: boolean
|
|
10332
10480
|
|
|
10333
10481
|
allowProtectedClassPropertyAccess?: boolean
|
|
10334
|
-
|
|
10335
|
-
allowIndexSignaturePropertyAccess?: boolean
|
|
10336
10482
|
}]
|
|
10337
10483
|
// ----- ts/explicit-function-return-type -----
|
|
10338
10484
|
type TsExplicitFunctionReturnType = []|[{
|
|
10339
10485
|
|
|
10340
10486
|
allowConciseArrowFunctionExpressionsStartingWithVoid?: boolean
|
|
10341
10487
|
|
|
10342
|
-
|
|
10343
|
-
|
|
10344
|
-
allowHigherOrderFunctions?: boolean
|
|
10488
|
+
allowDirectConstAssertionInArrowFunctions?: boolean
|
|
10345
10489
|
|
|
10346
|
-
|
|
10490
|
+
allowedNames?: string[]
|
|
10347
10491
|
|
|
10348
|
-
|
|
10492
|
+
allowExpressions?: boolean
|
|
10349
10493
|
|
|
10350
10494
|
allowFunctionsWithoutTypeParameters?: boolean
|
|
10351
10495
|
|
|
10352
|
-
|
|
10496
|
+
allowHigherOrderFunctions?: boolean
|
|
10353
10497
|
|
|
10354
10498
|
allowIIFEs?: boolean
|
|
10499
|
+
|
|
10500
|
+
allowTypedFunctionExpressions?: boolean
|
|
10355
10501
|
}]
|
|
10356
10502
|
// ----- ts/explicit-member-accessibility -----
|
|
10357
10503
|
type TsExplicitMemberAccessibility = []|[{
|
|
10504
|
+
|
|
10358
10505
|
accessibility?: ("explicit" | "no-public" | "off")
|
|
10506
|
+
|
|
10507
|
+
ignoredMethodNames?: string[]
|
|
10508
|
+
|
|
10359
10509
|
overrides?: {
|
|
10360
10510
|
accessors?: ("explicit" | "no-public" | "off")
|
|
10361
10511
|
constructors?: ("explicit" | "no-public" | "off")
|
|
10362
10512
|
methods?: ("explicit" | "no-public" | "off")
|
|
10363
|
-
properties?: ("explicit" | "no-public" | "off")
|
|
10364
10513
|
parameterProperties?: ("explicit" | "no-public" | "off")
|
|
10514
|
+
properties?: ("explicit" | "no-public" | "off")
|
|
10365
10515
|
}
|
|
10366
|
-
|
|
10367
|
-
ignoredMethodNames?: string[]
|
|
10368
10516
|
}]
|
|
10369
10517
|
// ----- ts/explicit-module-boundary-types -----
|
|
10370
10518
|
type TsExplicitModuleBoundaryTypes = []|[{
|
|
@@ -10386,38 +10534,38 @@ type TsInitDeclarations = ([]|["always"] | []|["never"]|["never", {
|
|
|
10386
10534
|
// ----- ts/max-params -----
|
|
10387
10535
|
type TsMaxParams = []|[{
|
|
10388
10536
|
|
|
10537
|
+
countVoidThis?: boolean
|
|
10538
|
+
|
|
10389
10539
|
max?: number
|
|
10390
10540
|
|
|
10391
10541
|
maximum?: number
|
|
10392
|
-
|
|
10393
|
-
countVoidThis?: boolean
|
|
10394
10542
|
}]
|
|
10395
10543
|
// ----- ts/member-ordering -----
|
|
10396
10544
|
type TsMemberOrdering = []|[{
|
|
10397
|
-
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")[])[] | {
|
|
10398
|
-
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")
|
|
10399
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
10400
|
-
optionalityOrder?: ("optional-first" | "required-first")
|
|
10401
|
-
})
|
|
10402
10545
|
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")[])[] | {
|
|
10403
10546
|
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")
|
|
10404
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
10405
10547
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
10548
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
10406
10549
|
})
|
|
10407
10550
|
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")[])[] | {
|
|
10408
10551
|
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")
|
|
10552
|
+
optionalityOrder?: ("optional-first" | "required-first")
|
|
10409
10553
|
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
10554
|
+
})
|
|
10555
|
+
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")[])[] | {
|
|
10556
|
+
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")
|
|
10410
10557
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
10558
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
10411
10559
|
})
|
|
10412
10560
|
interfaces?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | {
|
|
10413
10561
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | "never")
|
|
10414
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
10415
10562
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
10563
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
10416
10564
|
})
|
|
10417
10565
|
typeLiterals?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | {
|
|
10418
10566
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | "never")
|
|
10419
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
10420
10567
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
10568
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
10421
10569
|
})
|
|
10422
10570
|
}]
|
|
10423
10571
|
// ----- ts/method-signature-style -----
|
|
@@ -10429,310 +10577,310 @@ type _TsNamingConventionUnderscoreOptions = ("forbid" | "allow" | "require" | "r
|
|
|
10429
10577
|
type _TsNamingConvention_PrefixSuffixConfig = string[]
|
|
10430
10578
|
type _TsNamingConventionTypeModifiers = ("boolean" | "string" | "number" | "function" | "array")
|
|
10431
10579
|
type TsNamingConvention = ({
|
|
10432
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10433
10580
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10581
|
+
failureMessage?: string
|
|
10582
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10434
10583
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10435
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10436
10584
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10437
10585
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10438
|
-
|
|
10586
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10439
10587
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10440
|
-
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")[]
|
|
10441
10588
|
modifiers?: ("const" | "readonly" | "static" | "public" | "protected" | "private" | "#private" | "abstract" | "destructured" | "global" | "exported" | "unused" | "requiresQuotes" | "override" | "async" | "default" | "namespace")[]
|
|
10589
|
+
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")[]
|
|
10442
10590
|
types?: _TsNamingConventionTypeModifiers[]
|
|
10443
10591
|
} | {
|
|
10444
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10445
10592
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10593
|
+
failureMessage?: string
|
|
10594
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10446
10595
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10447
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10448
10596
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10449
10597
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10450
|
-
|
|
10598
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10451
10599
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10452
10600
|
selector: "default"
|
|
10453
10601
|
modifiers?: ("const" | "readonly" | "static" | "public" | "protected" | "private" | "#private" | "abstract" | "destructured" | "global" | "exported" | "unused" | "requiresQuotes" | "override" | "async" | "default" | "namespace")[]
|
|
10454
10602
|
} | {
|
|
10455
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10456
10603
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10604
|
+
failureMessage?: string
|
|
10605
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10457
10606
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10458
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10459
10607
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10460
10608
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10461
|
-
|
|
10609
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10462
10610
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10463
10611
|
selector: "variableLike"
|
|
10464
10612
|
modifiers?: ("unused" | "async")[]
|
|
10465
10613
|
} | {
|
|
10466
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10467
10614
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10615
|
+
failureMessage?: string
|
|
10616
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10468
10617
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10469
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10470
10618
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10471
10619
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10472
|
-
|
|
10620
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10473
10621
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10474
10622
|
selector: "variable"
|
|
10475
10623
|
modifiers?: ("const" | "destructured" | "exported" | "global" | "unused" | "async")[]
|
|
10476
10624
|
types?: _TsNamingConventionTypeModifiers[]
|
|
10477
10625
|
} | {
|
|
10478
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10479
10626
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10627
|
+
failureMessage?: string
|
|
10628
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10480
10629
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10481
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10482
10630
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10483
10631
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10484
|
-
|
|
10632
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10485
10633
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10486
10634
|
selector: "function"
|
|
10487
10635
|
modifiers?: ("exported" | "global" | "unused" | "async")[]
|
|
10488
10636
|
} | {
|
|
10489
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10490
10637
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10638
|
+
failureMessage?: string
|
|
10639
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10491
10640
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10492
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10493
10641
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10494
10642
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10495
|
-
|
|
10643
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10496
10644
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10497
10645
|
selector: "parameter"
|
|
10498
10646
|
modifiers?: ("destructured" | "unused")[]
|
|
10499
10647
|
types?: _TsNamingConventionTypeModifiers[]
|
|
10500
10648
|
} | {
|
|
10501
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10502
10649
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10650
|
+
failureMessage?: string
|
|
10651
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10503
10652
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10504
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10505
10653
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10506
10654
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10507
|
-
|
|
10655
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10508
10656
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10509
10657
|
selector: "memberLike"
|
|
10510
10658
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
10511
10659
|
} | {
|
|
10512
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10513
10660
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10661
|
+
failureMessage?: string
|
|
10662
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10514
10663
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10515
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10516
10664
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10517
10665
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10518
|
-
|
|
10666
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10519
10667
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10520
10668
|
selector: "classProperty"
|
|
10521
10669
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override")[]
|
|
10522
10670
|
types?: _TsNamingConventionTypeModifiers[]
|
|
10523
10671
|
} | {
|
|
10524
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10525
10672
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10673
|
+
failureMessage?: string
|
|
10674
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10526
10675
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10527
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10528
10676
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10529
10677
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10530
|
-
|
|
10678
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10531
10679
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10532
10680
|
selector: "objectLiteralProperty"
|
|
10533
10681
|
modifiers?: ("public" | "requiresQuotes")[]
|
|
10534
10682
|
types?: _TsNamingConventionTypeModifiers[]
|
|
10535
10683
|
} | {
|
|
10536
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10537
10684
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10685
|
+
failureMessage?: string
|
|
10686
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10538
10687
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10539
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10540
10688
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10541
10689
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10542
|
-
|
|
10690
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10543
10691
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10544
10692
|
selector: "typeProperty"
|
|
10545
10693
|
modifiers?: ("public" | "readonly" | "requiresQuotes")[]
|
|
10546
10694
|
types?: _TsNamingConventionTypeModifiers[]
|
|
10547
10695
|
} | {
|
|
10548
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10549
10696
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10697
|
+
failureMessage?: string
|
|
10698
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10550
10699
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10551
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10552
10700
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10553
10701
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10554
|
-
|
|
10702
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10555
10703
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10556
10704
|
selector: "parameterProperty"
|
|
10557
10705
|
modifiers?: ("private" | "protected" | "public" | "readonly")[]
|
|
10558
10706
|
types?: _TsNamingConventionTypeModifiers[]
|
|
10559
10707
|
} | {
|
|
10560
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10561
10708
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10709
|
+
failureMessage?: string
|
|
10710
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10562
10711
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10563
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10564
10712
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10565
10713
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10566
|
-
|
|
10714
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10567
10715
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10568
10716
|
selector: "property"
|
|
10569
10717
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
10570
10718
|
types?: _TsNamingConventionTypeModifiers[]
|
|
10571
10719
|
} | {
|
|
10572
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10573
10720
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10721
|
+
failureMessage?: string
|
|
10722
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10574
10723
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10575
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10576
10724
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10577
10725
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10578
|
-
|
|
10726
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10579
10727
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10580
10728
|
selector: "classMethod"
|
|
10581
10729
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
10582
10730
|
} | {
|
|
10583
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10584
10731
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10732
|
+
failureMessage?: string
|
|
10733
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10585
10734
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10586
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10587
10735
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10588
10736
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10589
|
-
|
|
10737
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10590
10738
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10591
10739
|
selector: "objectLiteralMethod"
|
|
10592
10740
|
modifiers?: ("public" | "requiresQuotes" | "async")[]
|
|
10593
10741
|
} | {
|
|
10594
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10595
10742
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10743
|
+
failureMessage?: string
|
|
10744
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10596
10745
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10597
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10598
10746
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10599
10747
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10600
|
-
|
|
10748
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10601
10749
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10602
10750
|
selector: "typeMethod"
|
|
10603
10751
|
modifiers?: ("public" | "requiresQuotes")[]
|
|
10604
10752
|
} | {
|
|
10605
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10606
10753
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10754
|
+
failureMessage?: string
|
|
10755
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10607
10756
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10608
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10609
10757
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10610
10758
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10611
|
-
|
|
10759
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10612
10760
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10613
10761
|
selector: "method"
|
|
10614
10762
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
10615
10763
|
} | {
|
|
10616
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10617
10764
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10765
|
+
failureMessage?: string
|
|
10766
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10618
10767
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10619
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10620
10768
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10621
10769
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10622
|
-
|
|
10770
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10623
10771
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10624
10772
|
selector: "classicAccessor"
|
|
10625
10773
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
10626
10774
|
types?: _TsNamingConventionTypeModifiers[]
|
|
10627
10775
|
} | {
|
|
10628
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10629
10776
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10777
|
+
failureMessage?: string
|
|
10778
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10630
10779
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10631
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10632
10780
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10633
10781
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10634
|
-
|
|
10782
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10635
10783
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10636
10784
|
selector: "autoAccessor"
|
|
10637
10785
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
10638
10786
|
types?: _TsNamingConventionTypeModifiers[]
|
|
10639
10787
|
} | {
|
|
10640
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10641
10788
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10789
|
+
failureMessage?: string
|
|
10790
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10642
10791
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10643
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10644
10792
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10645
10793
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10646
|
-
|
|
10794
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10647
10795
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10648
10796
|
selector: "accessor"
|
|
10649
10797
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
10650
10798
|
types?: _TsNamingConventionTypeModifiers[]
|
|
10651
10799
|
} | {
|
|
10652
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10653
10800
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10801
|
+
failureMessage?: string
|
|
10802
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10654
10803
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10655
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10656
10804
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10657
10805
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10658
|
-
|
|
10806
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10659
10807
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10660
10808
|
selector: "enumMember"
|
|
10661
10809
|
modifiers?: ("requiresQuotes")[]
|
|
10662
10810
|
} | {
|
|
10663
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10664
10811
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10812
|
+
failureMessage?: string
|
|
10813
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10665
10814
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10666
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10667
10815
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10668
10816
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10669
|
-
|
|
10817
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10670
10818
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10671
10819
|
selector: "typeLike"
|
|
10672
10820
|
modifiers?: ("abstract" | "exported" | "unused")[]
|
|
10673
10821
|
} | {
|
|
10674
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10675
10822
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10823
|
+
failureMessage?: string
|
|
10824
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10676
10825
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10677
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10678
10826
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10679
10827
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10680
|
-
|
|
10828
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10681
10829
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10682
10830
|
selector: "class"
|
|
10683
10831
|
modifiers?: ("abstract" | "exported" | "unused")[]
|
|
10684
10832
|
} | {
|
|
10685
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10686
10833
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10834
|
+
failureMessage?: string
|
|
10835
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10687
10836
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10688
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10689
10837
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10690
10838
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10691
|
-
|
|
10839
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10692
10840
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10693
10841
|
selector: "interface"
|
|
10694
10842
|
modifiers?: ("exported" | "unused")[]
|
|
10695
10843
|
} | {
|
|
10696
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10697
10844
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10845
|
+
failureMessage?: string
|
|
10846
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10698
10847
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10699
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10700
10848
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10701
10849
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10702
|
-
|
|
10850
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10703
10851
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10704
10852
|
selector: "typeAlias"
|
|
10705
10853
|
modifiers?: ("exported" | "unused")[]
|
|
10706
10854
|
} | {
|
|
10707
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10708
10855
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10856
|
+
failureMessage?: string
|
|
10857
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10709
10858
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10710
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10711
10859
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10712
10860
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10713
|
-
|
|
10861
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10714
10862
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10715
10863
|
selector: "enum"
|
|
10716
10864
|
modifiers?: ("exported" | "unused")[]
|
|
10717
10865
|
} | {
|
|
10718
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10719
10866
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10867
|
+
failureMessage?: string
|
|
10868
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10720
10869
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10721
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10722
10870
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10723
10871
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10724
|
-
|
|
10872
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10725
10873
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10726
10874
|
selector: "typeParameter"
|
|
10727
10875
|
modifiers?: ("unused")[]
|
|
10728
10876
|
} | {
|
|
10729
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
10730
10877
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
10878
|
+
failureMessage?: string
|
|
10879
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
10731
10880
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10732
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10733
10881
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10734
10882
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
10735
|
-
|
|
10883
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
10736
10884
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
10737
10885
|
selector: "import"
|
|
10738
10886
|
modifiers?: ("default" | "namespace")[]
|
|
@@ -10800,7 +10948,7 @@ type TsNoExtraneousClass = []|[{
|
|
|
10800
10948
|
// ----- ts/no-floating-promises -----
|
|
10801
10949
|
type TsNoFloatingPromises = []|[{
|
|
10802
10950
|
|
|
10803
|
-
|
|
10951
|
+
allowForKnownSafeCalls?: (string | {
|
|
10804
10952
|
from: "file"
|
|
10805
10953
|
name: (string | [string, ...(string)[]])
|
|
10806
10954
|
path?: string
|
|
@@ -10813,7 +10961,7 @@ type TsNoFloatingPromises = []|[{
|
|
|
10813
10961
|
package: string
|
|
10814
10962
|
})[]
|
|
10815
10963
|
|
|
10816
|
-
|
|
10964
|
+
allowForKnownSafePromises?: (string | {
|
|
10817
10965
|
from: "file"
|
|
10818
10966
|
name: (string | [string, ...(string)[]])
|
|
10819
10967
|
path?: string
|
|
@@ -10828,9 +10976,9 @@ type TsNoFloatingPromises = []|[{
|
|
|
10828
10976
|
|
|
10829
10977
|
checkThenables?: boolean
|
|
10830
10978
|
|
|
10831
|
-
ignoreVoid?: boolean
|
|
10832
|
-
|
|
10833
10979
|
ignoreIIFE?: boolean
|
|
10980
|
+
|
|
10981
|
+
ignoreVoid?: boolean
|
|
10834
10982
|
}]
|
|
10835
10983
|
// ----- ts/no-inferrable-types -----
|
|
10836
10984
|
type TsNoInferrableTypes = []|[{
|
|
@@ -10846,9 +10994,9 @@ type TsNoInvalidThis = []|[{
|
|
|
10846
10994
|
// ----- ts/no-invalid-void-type -----
|
|
10847
10995
|
type TsNoInvalidVoidType = []|[{
|
|
10848
10996
|
|
|
10849
|
-
allowInGenericTypeArguments?: (boolean | [string, ...(string)[]])
|
|
10850
|
-
|
|
10851
10997
|
allowAsThisParameter?: boolean
|
|
10998
|
+
|
|
10999
|
+
allowInGenericTypeArguments?: (boolean | [string, ...(string)[]])
|
|
10852
11000
|
}]
|
|
10853
11001
|
// ----- ts/no-magic-numbers -----
|
|
10854
11002
|
type TsNoMagicNumbers = []|[{
|
|
@@ -10859,10 +11007,10 @@ type TsNoMagicNumbers = []|[{
|
|
|
10859
11007
|
ignoreDefaultValues?: boolean
|
|
10860
11008
|
ignoreClassFieldInitialValues?: boolean
|
|
10861
11009
|
|
|
10862
|
-
ignoreNumericLiteralTypes?: boolean
|
|
10863
|
-
|
|
10864
11010
|
ignoreEnums?: boolean
|
|
10865
11011
|
|
|
11012
|
+
ignoreNumericLiteralTypes?: boolean
|
|
11013
|
+
|
|
10866
11014
|
ignoreReadonlyClassProperties?: boolean
|
|
10867
11015
|
|
|
10868
11016
|
ignoreTypeIndexes?: boolean
|
|
@@ -10874,7 +11022,11 @@ type TsNoMeaninglessVoidOperator = []|[{
|
|
|
10874
11022
|
}]
|
|
10875
11023
|
// ----- ts/no-misused-promises -----
|
|
10876
11024
|
type TsNoMisusedPromises = []|[{
|
|
11025
|
+
|
|
10877
11026
|
checksConditionals?: boolean
|
|
11027
|
+
|
|
11028
|
+
checksSpreads?: boolean
|
|
11029
|
+
|
|
10878
11030
|
checksVoidReturn?: (boolean | {
|
|
10879
11031
|
|
|
10880
11032
|
arguments?: boolean
|
|
@@ -10889,8 +11041,6 @@ type TsNoMisusedPromises = []|[{
|
|
|
10889
11041
|
|
|
10890
11042
|
variables?: boolean
|
|
10891
11043
|
})
|
|
10892
|
-
|
|
10893
|
-
checksSpreads?: boolean
|
|
10894
11044
|
}]
|
|
10895
11045
|
// ----- ts/no-namespace -----
|
|
10896
11046
|
type TsNoNamespace = []|[{
|
|
@@ -10948,13 +11098,14 @@ type TsNoRestrictedImports = ((string | {
|
|
|
10948
11098
|
}])
|
|
10949
11099
|
// ----- ts/no-restricted-types -----
|
|
10950
11100
|
type TsNoRestrictedTypes = []|[{
|
|
11101
|
+
|
|
10951
11102
|
types?: {
|
|
10952
11103
|
[k: string]: (true | string | {
|
|
10953
11104
|
|
|
10954
|
-
message?: string
|
|
10955
|
-
|
|
10956
11105
|
fixWith?: string
|
|
10957
11106
|
|
|
11107
|
+
message?: string
|
|
11108
|
+
|
|
10958
11109
|
suggest?: string[]
|
|
10959
11110
|
}) | undefined
|
|
10960
11111
|
}
|
|
@@ -10962,17 +11113,17 @@ type TsNoRestrictedTypes = []|[{
|
|
|
10962
11113
|
// ----- ts/no-shadow -----
|
|
10963
11114
|
type TsNoShadow = []|[{
|
|
10964
11115
|
|
|
11116
|
+
allow?: string[]
|
|
11117
|
+
|
|
10965
11118
|
builtinGlobals?: boolean
|
|
10966
11119
|
|
|
10967
11120
|
hoist?: ("all" | "functions" | "never")
|
|
10968
11121
|
|
|
10969
|
-
|
|
11122
|
+
ignoreFunctionTypeParameterNameValueShadow?: boolean
|
|
10970
11123
|
|
|
10971
11124
|
ignoreOnInitialization?: boolean
|
|
10972
11125
|
|
|
10973
11126
|
ignoreTypeValueShadow?: boolean
|
|
10974
|
-
|
|
10975
|
-
ignoreFunctionTypeParameterNameValueShadow?: boolean
|
|
10976
11127
|
}]
|
|
10977
11128
|
// ----- ts/no-this-alias -----
|
|
10978
11129
|
type TsNoThisAlias = []|[{
|
|
@@ -10992,20 +11143,20 @@ type TsNoTypeAlias = []|[{
|
|
|
10992
11143
|
|
|
10993
11144
|
allowConstructors?: ("always" | "never")
|
|
10994
11145
|
|
|
11146
|
+
allowGenerics?: ("always" | "never")
|
|
11147
|
+
|
|
10995
11148
|
allowLiterals?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
10996
11149
|
|
|
10997
11150
|
allowMappedTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
10998
11151
|
|
|
10999
11152
|
allowTupleTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
11000
|
-
|
|
11001
|
-
allowGenerics?: ("always" | "never")
|
|
11002
11153
|
}]
|
|
11003
11154
|
// ----- ts/no-unnecessary-boolean-literal-compare -----
|
|
11004
11155
|
type TsNoUnnecessaryBooleanLiteralCompare = []|[{
|
|
11005
11156
|
|
|
11006
|
-
allowComparingNullableBooleansToTrue?: boolean
|
|
11007
|
-
|
|
11008
11157
|
allowComparingNullableBooleansToFalse?: boolean
|
|
11158
|
+
|
|
11159
|
+
allowComparingNullableBooleansToTrue?: boolean
|
|
11009
11160
|
}]
|
|
11010
11161
|
// ----- ts/no-unnecessary-condition -----
|
|
11011
11162
|
type TsNoUnnecessaryCondition = []|[{
|
|
@@ -11013,6 +11164,8 @@ type TsNoUnnecessaryCondition = []|[{
|
|
|
11013
11164
|
allowConstantLoopConditions?: boolean
|
|
11014
11165
|
|
|
11015
11166
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
11167
|
+
|
|
11168
|
+
checkTypePredicates?: boolean
|
|
11016
11169
|
}]
|
|
11017
11170
|
// ----- ts/no-unnecessary-type-assertion -----
|
|
11018
11171
|
type TsNoUnnecessaryTypeAssertion = []|[{
|
|
@@ -11029,10 +11182,6 @@ type TsNoUnusedExpressions = []|[{
|
|
|
11029
11182
|
// ----- ts/no-unused-vars -----
|
|
11030
11183
|
type TsNoUnusedVars = []|[(("all" | "local") | {
|
|
11031
11184
|
|
|
11032
|
-
vars?: ("all" | "local")
|
|
11033
|
-
|
|
11034
|
-
varsIgnorePattern?: string
|
|
11035
|
-
|
|
11036
11185
|
args?: ("all" | "after-used" | "none")
|
|
11037
11186
|
|
|
11038
11187
|
argsIgnorePattern?: string
|
|
@@ -11048,22 +11197,27 @@ type TsNoUnusedVars = []|[(("all" | "local") | {
|
|
|
11048
11197
|
ignoreRestSiblings?: boolean
|
|
11049
11198
|
|
|
11050
11199
|
reportUsedIgnorePattern?: boolean
|
|
11200
|
+
|
|
11201
|
+
vars?: ("all" | "local")
|
|
11202
|
+
|
|
11203
|
+
varsIgnorePattern?: string
|
|
11051
11204
|
})]
|
|
11052
11205
|
// ----- ts/no-use-before-define -----
|
|
11053
11206
|
type TsNoUseBeforeDefine = []|[("nofunc" | {
|
|
11054
11207
|
|
|
11055
|
-
|
|
11208
|
+
allowNamedExports?: boolean
|
|
11056
11209
|
|
|
11057
11210
|
classes?: boolean
|
|
11058
11211
|
|
|
11059
11212
|
enums?: boolean
|
|
11060
11213
|
|
|
11061
|
-
|
|
11214
|
+
functions?: boolean
|
|
11215
|
+
|
|
11216
|
+
ignoreTypeReferences?: boolean
|
|
11062
11217
|
|
|
11063
11218
|
typedefs?: boolean
|
|
11064
11219
|
|
|
11065
|
-
|
|
11066
|
-
allowNamedExports?: boolean
|
|
11220
|
+
variables?: boolean
|
|
11067
11221
|
})]
|
|
11068
11222
|
// ----- ts/no-var-requires -----
|
|
11069
11223
|
type TsNoVarRequires = []|[{
|
|
@@ -11086,11 +11240,11 @@ type TsParameterProperties = []|[{
|
|
|
11086
11240
|
}]
|
|
11087
11241
|
// ----- ts/prefer-destructuring -----
|
|
11088
11242
|
type TsPreferDestructuring = []|[({
|
|
11089
|
-
|
|
11243
|
+
AssignmentExpression?: {
|
|
11090
11244
|
array?: boolean
|
|
11091
11245
|
object?: boolean
|
|
11092
11246
|
}
|
|
11093
|
-
|
|
11247
|
+
VariableDeclarator?: {
|
|
11094
11248
|
array?: boolean
|
|
11095
11249
|
object?: boolean
|
|
11096
11250
|
}
|
|
@@ -11098,11 +11252,11 @@ type TsPreferDestructuring = []|[({
|
|
|
11098
11252
|
array?: boolean
|
|
11099
11253
|
object?: boolean
|
|
11100
11254
|
})]|[({
|
|
11101
|
-
|
|
11255
|
+
AssignmentExpression?: {
|
|
11102
11256
|
array?: boolean
|
|
11103
11257
|
object?: boolean
|
|
11104
11258
|
}
|
|
11105
|
-
|
|
11259
|
+
VariableDeclarator?: {
|
|
11106
11260
|
array?: boolean
|
|
11107
11261
|
object?: boolean
|
|
11108
11262
|
}
|
|
@@ -11110,8 +11264,10 @@ type TsPreferDestructuring = []|[({
|
|
|
11110
11264
|
array?: boolean
|
|
11111
11265
|
object?: boolean
|
|
11112
11266
|
}), {
|
|
11113
|
-
|
|
11267
|
+
|
|
11114
11268
|
enforceForDeclarationWithTypeAnnotation?: boolean
|
|
11269
|
+
|
|
11270
|
+
enforceForRenamedProperties?: boolean
|
|
11115
11271
|
[k: string]: unknown | undefined
|
|
11116
11272
|
}]
|
|
11117
11273
|
// ----- ts/prefer-literal-enum-member -----
|
|
@@ -11129,9 +11285,13 @@ type TsPreferNullishCoalescing = []|[{
|
|
|
11129
11285
|
ignoreMixedLogicalExpressions?: boolean
|
|
11130
11286
|
|
|
11131
11287
|
ignorePrimitives?: ({
|
|
11288
|
+
|
|
11132
11289
|
bigint?: boolean
|
|
11290
|
+
|
|
11133
11291
|
boolean?: boolean
|
|
11292
|
+
|
|
11134
11293
|
number?: boolean
|
|
11294
|
+
|
|
11135
11295
|
string?: boolean
|
|
11136
11296
|
[k: string]: unknown | undefined
|
|
11137
11297
|
} | true)
|
|
@@ -11141,21 +11301,21 @@ type TsPreferNullishCoalescing = []|[{
|
|
|
11141
11301
|
// ----- ts/prefer-optional-chain -----
|
|
11142
11302
|
type TsPreferOptionalChain = []|[{
|
|
11143
11303
|
|
|
11304
|
+
allowPotentiallyUnsafeFixesThatModifyTheReturnTypeIKnowWhatImDoing?: boolean
|
|
11305
|
+
|
|
11144
11306
|
checkAny?: boolean
|
|
11145
11307
|
|
|
11146
|
-
|
|
11308
|
+
checkBigInt?: boolean
|
|
11147
11309
|
|
|
11148
|
-
|
|
11310
|
+
checkBoolean?: boolean
|
|
11149
11311
|
|
|
11150
11312
|
checkNumber?: boolean
|
|
11151
11313
|
|
|
11152
|
-
|
|
11314
|
+
checkString?: boolean
|
|
11153
11315
|
|
|
11154
|
-
|
|
11316
|
+
checkUnknown?: boolean
|
|
11155
11317
|
|
|
11156
11318
|
requireNullish?: boolean
|
|
11157
|
-
|
|
11158
|
-
allowPotentiallyUnsafeFixesThatModifyTheReturnTypeIKnowWhatImDoing?: boolean
|
|
11159
11319
|
}]
|
|
11160
11320
|
// ----- ts/prefer-promise-reject-errors -----
|
|
11161
11321
|
type TsPreferPromiseRejectErrors = []|[{
|
|
@@ -11264,33 +11424,34 @@ type TsReturnAwait = []|[(("always" | "error-handling-correctness-only" | "in-tr
|
|
|
11264
11424
|
// ----- ts/sort-type-constituents -----
|
|
11265
11425
|
type TsSortTypeConstituents = []|[{
|
|
11266
11426
|
|
|
11427
|
+
caseSensitive?: boolean
|
|
11428
|
+
|
|
11267
11429
|
checkIntersections?: boolean
|
|
11268
11430
|
|
|
11269
11431
|
checkUnions?: boolean
|
|
11270
11432
|
|
|
11271
|
-
caseSensitive?: boolean
|
|
11272
|
-
|
|
11273
11433
|
groupOrder?: ("conditional" | "function" | "import" | "intersection" | "keyword" | "nullish" | "literal" | "named" | "object" | "operator" | "tuple" | "union")[]
|
|
11274
11434
|
}]
|
|
11275
11435
|
// ----- ts/strict-boolean-expressions -----
|
|
11276
11436
|
type TsStrictBooleanExpressions = []|[{
|
|
11277
11437
|
|
|
11278
|
-
|
|
11279
|
-
|
|
11280
|
-
allowNumber?: boolean
|
|
11281
|
-
|
|
11282
|
-
allowNullableObject?: boolean
|
|
11438
|
+
allowAny?: boolean
|
|
11283
11439
|
|
|
11284
11440
|
allowNullableBoolean?: boolean
|
|
11285
11441
|
|
|
11286
|
-
|
|
11442
|
+
allowNullableEnum?: boolean
|
|
11287
11443
|
|
|
11288
11444
|
allowNullableNumber?: boolean
|
|
11289
11445
|
|
|
11290
|
-
|
|
11446
|
+
allowNullableObject?: boolean
|
|
11447
|
+
|
|
11448
|
+
allowNullableString?: boolean
|
|
11449
|
+
|
|
11450
|
+
allowNumber?: boolean
|
|
11291
11451
|
|
|
11292
|
-
allowAny?: boolean
|
|
11293
11452
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
11453
|
+
|
|
11454
|
+
allowString?: boolean
|
|
11294
11455
|
}]
|
|
11295
11456
|
// ----- ts/switch-exhaustiveness-check -----
|
|
11296
11457
|
type TsSwitchExhaustivenessCheck = []|[{
|
|
@@ -11545,10 +11706,6 @@ type UnocssEnforceClassCompile = []|[{
|
|
|
11545
11706
|
// ----- unused-imports/no-unused-imports -----
|
|
11546
11707
|
type UnusedImportsNoUnusedImports = []|[(("all" | "local") | {
|
|
11547
11708
|
|
|
11548
|
-
vars?: ("all" | "local")
|
|
11549
|
-
|
|
11550
|
-
varsIgnorePattern?: string
|
|
11551
|
-
|
|
11552
11709
|
args?: ("all" | "after-used" | "none")
|
|
11553
11710
|
|
|
11554
11711
|
argsIgnorePattern?: string
|
|
@@ -11564,13 +11721,13 @@ type UnusedImportsNoUnusedImports = []|[(("all" | "local") | {
|
|
|
11564
11721
|
ignoreRestSiblings?: boolean
|
|
11565
11722
|
|
|
11566
11723
|
reportUsedIgnorePattern?: boolean
|
|
11567
|
-
})]
|
|
11568
|
-
// ----- unused-imports/no-unused-vars -----
|
|
11569
|
-
type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
11570
11724
|
|
|
11571
11725
|
vars?: ("all" | "local")
|
|
11572
11726
|
|
|
11573
11727
|
varsIgnorePattern?: string
|
|
11728
|
+
})]
|
|
11729
|
+
// ----- unused-imports/no-unused-vars -----
|
|
11730
|
+
type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
11574
11731
|
|
|
11575
11732
|
args?: ("all" | "after-used" | "none")
|
|
11576
11733
|
|
|
@@ -11587,6 +11744,10 @@ type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
|
11587
11744
|
ignoreRestSiblings?: boolean
|
|
11588
11745
|
|
|
11589
11746
|
reportUsedIgnorePattern?: boolean
|
|
11747
|
+
|
|
11748
|
+
vars?: ("all" | "local")
|
|
11749
|
+
|
|
11750
|
+
varsIgnorePattern?: string
|
|
11590
11751
|
})]
|
|
11591
11752
|
// ----- use-isnan -----
|
|
11592
11753
|
type UseIsnan = []|[{
|
|
@@ -13061,6 +13222,14 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
13061
13222
|
multiline?: ("below" | "beside");
|
|
13062
13223
|
singleline?: ("below" | "beside");
|
|
13063
13224
|
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13225
|
+
'svelte/html-closing-bracket-new-line'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13226
|
+
singleline?: ("always" | "never");
|
|
13227
|
+
multiline?: ("always" | "never");
|
|
13228
|
+
selfClosingTag?: {
|
|
13229
|
+
singleline?: ("always" | "never");
|
|
13230
|
+
multiline?: ("always" | "never");
|
|
13231
|
+
};
|
|
13232
|
+
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13064
13233
|
'svelte/html-closing-bracket-spacing'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13065
13234
|
startTag?: ("always" | "never" | "ignore");
|
|
13066
13235
|
endTag?: ("always" | "never" | "ignore");
|
|
@@ -13124,6 +13293,7 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
13124
13293
|
'svelte/no-inner-declarations'?: (eslint.Linter.RuleEntry<[] | ["functions" | "both"] | ["functions" | "both", {
|
|
13125
13294
|
blockScopedFunctions?: ("allow" | "disallow");
|
|
13126
13295
|
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13296
|
+
'svelte/no-inspect'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13127
13297
|
'svelte/no-not-function-handler'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13128
13298
|
'svelte/no-object-in-text-mustaches'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13129
13299
|
'svelte/no-reactive-functions'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
@@ -13610,7 +13780,7 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
13610
13780
|
'node/no-mixed-requires'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13611
13781
|
'node/no-new-require'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13612
13782
|
'node/no-path-concat'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13613
|
-
'node/no-process-env'?: eslint.Linter.RuleEntry<
|
|
13783
|
+
'node/no-process-env'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13614
13784
|
'node/no-process-exit'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13615
13785
|
'node/no-restricted-import'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13616
13786
|
'node/no-restricted-require'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
@@ -13749,8 +13919,9 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
13749
13919
|
'react/no-unstable-default-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13750
13920
|
'react/no-unused-class-component-members'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13751
13921
|
'react/no-unused-state'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13752
|
-
'react/no-useless-fragment'?: eslint.Linter.RuleEntry<
|
|
13922
|
+
'react/no-useless-fragment'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13753
13923
|
'react/prefer-destructuring-assignment'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13924
|
+
'react/prefer-react-namespace-import'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13754
13925
|
'react/prefer-read-only-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13755
13926
|
'react/prefer-shorthand-boolean'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13756
13927
|
'react/prefer-shorthand-fragment'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
@@ -13920,6 +14091,7 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
13920
14091
|
'test/prefer-to-contain'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13921
14092
|
'test/prefer-to-have-length'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13922
14093
|
'test/prefer-todo'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14094
|
+
'test/prefer-vi-mocked'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13923
14095
|
'test/require-hook'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13924
14096
|
'test/require-local-test-context-for-concurrent-snapshots'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13925
14097
|
'test/require-to-throw-message'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
@@ -14059,6 +14231,7 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14059
14231
|
'unicorn/catch-error-name'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14060
14232
|
'unicorn/consistent-destructuring'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14061
14233
|
'unicorn/consistent-empty-array-spread'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14234
|
+
'unicorn/consistent-existence-index-check'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14062
14235
|
'unicorn/consistent-function-scoping'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14063
14236
|
'unicorn/custom-error-definition'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14064
14237
|
'unicorn/empty-brace-spaces'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
@@ -14143,10 +14316,12 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14143
14316
|
'unicorn/prefer-exponentiation-operator'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14144
14317
|
'unicorn/prefer-export-from'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14145
14318
|
'unicorn/prefer-flat-map'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14319
|
+
'unicorn/prefer-global-this'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14146
14320
|
'unicorn/prefer-includes'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14147
14321
|
'unicorn/prefer-json-parse-buffer'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14148
14322
|
'unicorn/prefer-keyboard-event-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14149
14323
|
'unicorn/prefer-logical-operator-over-ternary'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14324
|
+
'unicorn/prefer-math-min-max'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14150
14325
|
'unicorn/prefer-math-trunc'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14151
14326
|
'unicorn/prefer-modern-dom-apis'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14152
14327
|
'unicorn/prefer-modern-math-apis'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
@@ -14268,6 +14443,7 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14268
14443
|
'vue/no-constant-condition'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14269
14444
|
'vue/no-custom-modifiers-on-v-model'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14270
14445
|
'vue/no-deprecated-data-object-declaration'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14446
|
+
'vue/no-deprecated-delete-set'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14271
14447
|
'vue/no-deprecated-destroyed-lifecycle'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14272
14448
|
'vue/no-deprecated-dollar-listeners-api'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14273
14449
|
'vue/no-deprecated-dollar-scopedslots-api'?: eslint.Linter.RuleEntry<[]> | undefined;
|