@coderwyd/eslint-config 3.2.0 → 3.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.cjs +11 -11
- package/dist/cli.js +11 -11
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +611 -418
- package/dist/index.d.ts +611 -418
- package/dist/index.js +1 -1
- package/package.json +26 -26
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.
|
|
385
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
390
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
395
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
400
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
405
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
410
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
415
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
420
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
425
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
431
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
436
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
441
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
446
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
451
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
456
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
461
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
466
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
471
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
476
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
481
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
486
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
491
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
496
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
501
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
506
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
511
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
516
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
521
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
526
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
531
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
536
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
541
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
546
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
551
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
556
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
561
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
566
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
571
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
576
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
581
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
586
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
591
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
596
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
601
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
606
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/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.
|
|
611
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.5.0/docs/rules/unambiguous.md
|
|
612
612
|
*/
|
|
613
613
|
'import/unambiguous'?: Linter.RuleEntry<[]>
|
|
614
614
|
/**
|
|
@@ -1327,7 +1327,7 @@ interface RuleOptions {
|
|
|
1327
1327
|
*/
|
|
1328
1328
|
'no-class-assign'?: Linter.RuleEntry<[]>
|
|
1329
1329
|
/**
|
|
1330
|
-
* Disallow comparing against
|
|
1330
|
+
* Disallow comparing against `-0`
|
|
1331
1331
|
* @see https://eslint.org/docs/latest/rules/no-compare-neg-zero
|
|
1332
1332
|
*/
|
|
1333
1333
|
'no-compare-neg-zero'?: Linter.RuleEntry<[]>
|
|
@@ -2345,17 +2345,16 @@ interface RuleOptions {
|
|
|
2345
2345
|
* @see https://perfectionist.dev/rules/sort-array-includes
|
|
2346
2346
|
*/
|
|
2347
2347
|
'perfectionist/sort-array-includes'?: Linter.RuleEntry<PerfectionistSortArrayIncludes>
|
|
2348
|
-
/**
|
|
2349
|
-
* Enforce sorted Astro attributes.
|
|
2350
|
-
* @see https://perfectionist.dev/rules/sort-astro-attributes
|
|
2351
|
-
* @deprecated
|
|
2352
|
-
*/
|
|
2353
|
-
'perfectionist/sort-astro-attributes'?: Linter.RuleEntry<PerfectionistSortAstroAttributes>
|
|
2354
2348
|
/**
|
|
2355
2349
|
* Enforce sorted classes.
|
|
2356
2350
|
* @see https://perfectionist.dev/rules/sort-classes
|
|
2357
2351
|
*/
|
|
2358
2352
|
'perfectionist/sort-classes'?: Linter.RuleEntry<PerfectionistSortClasses>
|
|
2353
|
+
/**
|
|
2354
|
+
* Enforce sorted decorators.
|
|
2355
|
+
* @see https://perfectionist.dev/rules/sort-decorators
|
|
2356
|
+
*/
|
|
2357
|
+
'perfectionist/sort-decorators'?: Linter.RuleEntry<PerfectionistSortDecorators>
|
|
2359
2358
|
/**
|
|
2360
2359
|
* Enforce sorted TypeScript enums.
|
|
2361
2360
|
* @see https://perfectionist.dev/rules/sort-enums
|
|
@@ -2366,6 +2365,11 @@ interface RuleOptions {
|
|
|
2366
2365
|
* @see https://perfectionist.dev/rules/sort-exports
|
|
2367
2366
|
*/
|
|
2368
2367
|
'perfectionist/sort-exports'?: Linter.RuleEntry<PerfectionistSortExports>
|
|
2368
|
+
/**
|
|
2369
|
+
* Enforce sorted heritage clauses.
|
|
2370
|
+
* @see https://perfectionist.dev/rules/sort-heritage-clauses
|
|
2371
|
+
*/
|
|
2372
|
+
'perfectionist/sort-heritage-clauses'?: Linter.RuleEntry<PerfectionistSortHeritageClauses>
|
|
2369
2373
|
/**
|
|
2370
2374
|
* Enforce sorted imports.
|
|
2371
2375
|
* @see https://perfectionist.dev/rules/sort-imports
|
|
@@ -2391,6 +2395,11 @@ interface RuleOptions {
|
|
|
2391
2395
|
* @see https://perfectionist.dev/rules/sort-maps
|
|
2392
2396
|
*/
|
|
2393
2397
|
'perfectionist/sort-maps'?: Linter.RuleEntry<PerfectionistSortMaps>
|
|
2398
|
+
/**
|
|
2399
|
+
* Enforce sorted modules.
|
|
2400
|
+
* @see https://perfectionist.dev/rules/sort-modules
|
|
2401
|
+
*/
|
|
2402
|
+
'perfectionist/sort-modules'?: Linter.RuleEntry<PerfectionistSortModules>
|
|
2394
2403
|
/**
|
|
2395
2404
|
* Enforce sorted named exports.
|
|
2396
2405
|
* @see https://perfectionist.dev/rules/sort-named-exports
|
|
@@ -2416,12 +2425,6 @@ interface RuleOptions {
|
|
|
2416
2425
|
* @see https://perfectionist.dev/rules/sort-sets
|
|
2417
2426
|
*/
|
|
2418
2427
|
'perfectionist/sort-sets'?: Linter.RuleEntry<PerfectionistSortSets>
|
|
2419
|
-
/**
|
|
2420
|
-
* Enforce sorted Svelte attributes.
|
|
2421
|
-
* @see https://perfectionist.dev/rules/sort-svelte-attributes
|
|
2422
|
-
* @deprecated
|
|
2423
|
-
*/
|
|
2424
|
-
'perfectionist/sort-svelte-attributes'?: Linter.RuleEntry<PerfectionistSortSvelteAttributes>
|
|
2425
2428
|
/**
|
|
2426
2429
|
* Enforce sorted switch cases.
|
|
2427
2430
|
* @see https://perfectionist.dev/rules/sort-switch-case
|
|
@@ -2437,12 +2440,6 @@ interface RuleOptions {
|
|
|
2437
2440
|
* @see https://perfectionist.dev/rules/sort-variable-declarations
|
|
2438
2441
|
*/
|
|
2439
2442
|
'perfectionist/sort-variable-declarations'?: Linter.RuleEntry<PerfectionistSortVariableDeclarations>
|
|
2440
|
-
/**
|
|
2441
|
-
* Enforce sorted Vue attributes.
|
|
2442
|
-
* @see https://perfectionist.dev/rules/sort-vue-attributes
|
|
2443
|
-
* @deprecated
|
|
2444
|
-
*/
|
|
2445
|
-
'perfectionist/sort-vue-attributes'?: Linter.RuleEntry<PerfectionistSortVueAttributes>
|
|
2446
2443
|
/**
|
|
2447
2444
|
* Require using arrow functions for callbacks
|
|
2448
2445
|
* @see https://eslint.org/docs/latest/rules/prefer-arrow-callback
|
|
@@ -4116,6 +4113,11 @@ interface RuleOptions {
|
|
|
4116
4113
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-expect.md
|
|
4117
4114
|
*/
|
|
4118
4115
|
'test/valid-expect'?: Linter.RuleEntry<TestValidExpect>
|
|
4116
|
+
/**
|
|
4117
|
+
* Require promises that have expectations in their chain to be valid
|
|
4118
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-expect-in-promise.md
|
|
4119
|
+
*/
|
|
4120
|
+
'test/valid-expect-in-promise'?: Linter.RuleEntry<[]>
|
|
4119
4121
|
/**
|
|
4120
4122
|
* enforce valid titles
|
|
4121
4123
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-title.md
|
|
@@ -4539,6 +4541,11 @@ interface RuleOptions {
|
|
|
4539
4541
|
* @see https://typescript-eslint.io/rules/no-unsafe-return
|
|
4540
4542
|
*/
|
|
4541
4543
|
'ts/no-unsafe-return'?: Linter.RuleEntry<[]>
|
|
4544
|
+
/**
|
|
4545
|
+
* Disallow type assertions that narrow a type
|
|
4546
|
+
* @see https://typescript-eslint.io/rules/no-unsafe-type-assertion
|
|
4547
|
+
*/
|
|
4548
|
+
'ts/no-unsafe-type-assertion'?: Linter.RuleEntry<[]>
|
|
4542
4549
|
/**
|
|
4543
4550
|
* Require unary negation to take a number
|
|
4544
4551
|
* @see https://typescript-eslint.io/rules/no-unsafe-unary-minus
|
|
@@ -4696,6 +4703,11 @@ interface RuleOptions {
|
|
|
4696
4703
|
* @see https://typescript-eslint.io/rules/promise-function-async
|
|
4697
4704
|
*/
|
|
4698
4705
|
'ts/promise-function-async'?: Linter.RuleEntry<TsPromiseFunctionAsync>
|
|
4706
|
+
/**
|
|
4707
|
+
* Enforce that `get()` types should be assignable to their equivalent `set()` type
|
|
4708
|
+
* @see https://typescript-eslint.io/rules/related-getter-setter-pairs
|
|
4709
|
+
*/
|
|
4710
|
+
'ts/related-getter-setter-pairs'?: Linter.RuleEntry<[]>
|
|
4699
4711
|
/**
|
|
4700
4712
|
* Require `Array#sort` and `Array#toSorted` calls to always provide a `compareFunction`
|
|
4701
4713
|
* @see https://typescript-eslint.io/rules/require-array-sort-compare
|
|
@@ -4769,702 +4781,702 @@ interface RuleOptions {
|
|
|
4769
4781
|
'unicode-bom'?: Linter.RuleEntry<UnicodeBom>
|
|
4770
4782
|
/**
|
|
4771
4783
|
* Improve regexes by making them shorter, consistent, and safer.
|
|
4772
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4784
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/better-regex.md
|
|
4773
4785
|
*/
|
|
4774
4786
|
'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>
|
|
4775
4787
|
/**
|
|
4776
4788
|
* Enforce a specific parameter name in catch clauses.
|
|
4777
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4789
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/catch-error-name.md
|
|
4778
4790
|
*/
|
|
4779
4791
|
'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>
|
|
4780
4792
|
/**
|
|
4781
4793
|
* Use destructured variables over properties.
|
|
4782
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4794
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/consistent-destructuring.md
|
|
4783
4795
|
*/
|
|
4784
4796
|
'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>
|
|
4785
4797
|
/**
|
|
4786
4798
|
* Prefer consistent types when spreading a ternary in an array literal.
|
|
4787
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4799
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/consistent-empty-array-spread.md
|
|
4788
4800
|
*/
|
|
4789
4801
|
'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>
|
|
4790
4802
|
/**
|
|
4791
4803
|
* Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
|
|
4792
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4804
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/consistent-existence-index-check.md
|
|
4793
4805
|
*/
|
|
4794
4806
|
'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>
|
|
4795
4807
|
/**
|
|
4796
4808
|
* Move function definitions to the highest possible scope.
|
|
4797
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4809
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/consistent-function-scoping.md
|
|
4798
4810
|
*/
|
|
4799
4811
|
'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>
|
|
4800
4812
|
/**
|
|
4801
4813
|
* Enforce correct `Error` subclassing.
|
|
4802
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4814
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/custom-error-definition.md
|
|
4803
4815
|
*/
|
|
4804
4816
|
'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>
|
|
4805
4817
|
/**
|
|
4806
4818
|
* Enforce no spaces between braces.
|
|
4807
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4819
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/empty-brace-spaces.md
|
|
4808
4820
|
*/
|
|
4809
4821
|
'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>
|
|
4810
4822
|
/**
|
|
4811
4823
|
* Enforce passing a `message` value when creating a built-in error.
|
|
4812
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4824
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/error-message.md
|
|
4813
4825
|
*/
|
|
4814
4826
|
'unicorn/error-message'?: Linter.RuleEntry<[]>
|
|
4815
4827
|
/**
|
|
4816
4828
|
* Require escape sequences to use uppercase values.
|
|
4817
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4829
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/escape-case.md
|
|
4818
4830
|
*/
|
|
4819
4831
|
'unicorn/escape-case'?: Linter.RuleEntry<[]>
|
|
4820
4832
|
/**
|
|
4821
4833
|
* Add expiration conditions to TODO comments.
|
|
4822
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4834
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/expiring-todo-comments.md
|
|
4823
4835
|
*/
|
|
4824
4836
|
'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>
|
|
4825
4837
|
/**
|
|
4826
4838
|
* Enforce explicitly comparing the `length` or `size` property of a value.
|
|
4827
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4839
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/explicit-length-check.md
|
|
4828
4840
|
*/
|
|
4829
4841
|
'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>
|
|
4830
4842
|
/**
|
|
4831
4843
|
* Enforce a case style for filenames.
|
|
4832
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4844
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/filename-case.md
|
|
4833
4845
|
*/
|
|
4834
4846
|
'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>
|
|
4835
4847
|
/**
|
|
4836
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4848
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#import-index
|
|
4837
4849
|
* @deprecated
|
|
4838
4850
|
*/
|
|
4839
4851
|
'unicorn/import-index'?: Linter.RuleEntry<[]>
|
|
4840
4852
|
/**
|
|
4841
4853
|
* Enforce specific import styles per module.
|
|
4842
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4854
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/import-style.md
|
|
4843
4855
|
*/
|
|
4844
4856
|
'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>
|
|
4845
4857
|
/**
|
|
4846
4858
|
* Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
|
|
4847
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4859
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/new-for-builtins.md
|
|
4848
4860
|
*/
|
|
4849
4861
|
'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>
|
|
4850
4862
|
/**
|
|
4851
4863
|
* Enforce specifying rules to disable in `eslint-disable` comments.
|
|
4852
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4864
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-abusive-eslint-disable.md
|
|
4853
4865
|
*/
|
|
4854
4866
|
'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>
|
|
4855
4867
|
/**
|
|
4856
4868
|
* Disallow anonymous functions and classes as the default export.
|
|
4857
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4869
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-anonymous-default-export.md
|
|
4858
4870
|
*/
|
|
4859
4871
|
'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>
|
|
4860
4872
|
/**
|
|
4861
4873
|
* Prevent passing a function reference directly to iterator methods.
|
|
4862
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4874
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-array-callback-reference.md
|
|
4863
4875
|
*/
|
|
4864
4876
|
'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>
|
|
4865
4877
|
/**
|
|
4866
4878
|
* Prefer `for…of` over the `forEach` method.
|
|
4867
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4879
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-array-for-each.md
|
|
4868
4880
|
*/
|
|
4869
4881
|
'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>
|
|
4870
4882
|
/**
|
|
4871
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4883
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#no-array-instanceof
|
|
4872
4884
|
* @deprecated
|
|
4873
4885
|
*/
|
|
4874
4886
|
'unicorn/no-array-instanceof'?: Linter.RuleEntry<[]>
|
|
4875
4887
|
/**
|
|
4876
4888
|
* Disallow using the `this` argument in array methods.
|
|
4877
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4889
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-array-method-this-argument.md
|
|
4878
4890
|
*/
|
|
4879
4891
|
'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>
|
|
4880
4892
|
/**
|
|
4881
4893
|
* Enforce combining multiple `Array#push()` into one call.
|
|
4882
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4894
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-array-push-push.md
|
|
4883
4895
|
*/
|
|
4884
4896
|
'unicorn/no-array-push-push'?: Linter.RuleEntry<UnicornNoArrayPushPush>
|
|
4885
4897
|
/**
|
|
4886
4898
|
* Disallow `Array#reduce()` and `Array#reduceRight()`.
|
|
4887
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4899
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-array-reduce.md
|
|
4888
4900
|
*/
|
|
4889
4901
|
'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>
|
|
4890
4902
|
/**
|
|
4891
4903
|
* Disallow member access from await expression.
|
|
4892
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4904
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-await-expression-member.md
|
|
4893
4905
|
*/
|
|
4894
4906
|
'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>
|
|
4895
4907
|
/**
|
|
4896
4908
|
* Disallow using `await` in `Promise` method parameters.
|
|
4897
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4909
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-await-in-promise-methods.md
|
|
4898
4910
|
*/
|
|
4899
4911
|
'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
4900
4912
|
/**
|
|
4901
4913
|
* Do not use leading/trailing space between `console.log` parameters.
|
|
4902
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4914
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-console-spaces.md
|
|
4903
4915
|
*/
|
|
4904
4916
|
'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>
|
|
4905
4917
|
/**
|
|
4906
4918
|
* Do not use `document.cookie` directly.
|
|
4907
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4919
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-document-cookie.md
|
|
4908
4920
|
*/
|
|
4909
4921
|
'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>
|
|
4910
4922
|
/**
|
|
4911
4923
|
* Disallow empty files.
|
|
4912
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4924
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-empty-file.md
|
|
4913
4925
|
*/
|
|
4914
4926
|
'unicorn/no-empty-file'?: Linter.RuleEntry<[]>
|
|
4915
4927
|
/**
|
|
4916
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4928
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#no-fn-reference-in-iterator
|
|
4917
4929
|
* @deprecated
|
|
4918
4930
|
*/
|
|
4919
4931
|
'unicorn/no-fn-reference-in-iterator'?: Linter.RuleEntry<[]>
|
|
4920
4932
|
/**
|
|
4921
4933
|
* Do not use a `for` loop that can be replaced with a `for-of` loop.
|
|
4922
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4934
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-for-loop.md
|
|
4923
4935
|
*/
|
|
4924
4936
|
'unicorn/no-for-loop'?: Linter.RuleEntry<[]>
|
|
4925
4937
|
/**
|
|
4926
4938
|
* Enforce the use of Unicode escapes instead of hexadecimal escapes.
|
|
4927
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4939
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-hex-escape.md
|
|
4928
4940
|
*/
|
|
4929
4941
|
'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>
|
|
4930
4942
|
/**
|
|
4931
4943
|
* Require `Array.isArray()` instead of `instanceof Array`.
|
|
4932
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4944
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-instanceof-array.md
|
|
4933
4945
|
*/
|
|
4934
4946
|
'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>
|
|
4935
4947
|
/**
|
|
4936
4948
|
* Disallow invalid options in `fetch()` and `new Request()`.
|
|
4937
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4949
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-invalid-fetch-options.md
|
|
4938
4950
|
*/
|
|
4939
4951
|
'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>
|
|
4940
4952
|
/**
|
|
4941
4953
|
* Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
|
|
4942
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4954
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-invalid-remove-event-listener.md
|
|
4943
4955
|
*/
|
|
4944
4956
|
'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>
|
|
4945
4957
|
/**
|
|
4946
4958
|
* Disallow identifiers starting with `new` or `class`.
|
|
4947
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4959
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-keyword-prefix.md
|
|
4948
4960
|
*/
|
|
4949
4961
|
'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>
|
|
4950
4962
|
/**
|
|
4951
4963
|
* Disallow using `.length` as the `end` argument of `{Array,String,TypedArray}#slice()`.
|
|
4952
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4964
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-length-as-slice-end.md
|
|
4953
4965
|
*/
|
|
4954
4966
|
'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>
|
|
4955
4967
|
/**
|
|
4956
4968
|
* Disallow `if` statements as the only statement in `if` blocks without `else`.
|
|
4957
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4969
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-lonely-if.md
|
|
4958
4970
|
*/
|
|
4959
4971
|
'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>
|
|
4960
4972
|
/**
|
|
4961
4973
|
* Disallow a magic number as the `depth` argument in `Array#flat(…).`
|
|
4962
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4974
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-magic-array-flat-depth.md
|
|
4963
4975
|
*/
|
|
4964
4976
|
'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>
|
|
4965
4977
|
/**
|
|
4966
4978
|
* Disallow negated conditions.
|
|
4967
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4979
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-negated-condition.md
|
|
4968
4980
|
*/
|
|
4969
4981
|
'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>
|
|
4970
4982
|
/**
|
|
4971
4983
|
* Disallow negated expression in equality check.
|
|
4972
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4984
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-negation-in-equality-check.md
|
|
4973
4985
|
*/
|
|
4974
4986
|
'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>
|
|
4975
4987
|
/**
|
|
4976
4988
|
* Disallow nested ternary expressions.
|
|
4977
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4989
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-nested-ternary.md
|
|
4978
4990
|
*/
|
|
4979
4991
|
'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>
|
|
4980
4992
|
/**
|
|
4981
4993
|
* Disallow `new Array()`.
|
|
4982
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4994
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-new-array.md
|
|
4983
4995
|
*/
|
|
4984
4996
|
'unicorn/no-new-array'?: Linter.RuleEntry<[]>
|
|
4985
4997
|
/**
|
|
4986
4998
|
* Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
|
|
4987
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
4999
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-new-buffer.md
|
|
4988
5000
|
*/
|
|
4989
5001
|
'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>
|
|
4990
5002
|
/**
|
|
4991
5003
|
* Disallow the use of the `null` literal.
|
|
4992
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5004
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-null.md
|
|
4993
5005
|
*/
|
|
4994
5006
|
'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>
|
|
4995
5007
|
/**
|
|
4996
5008
|
* Disallow the use of objects as default parameters.
|
|
4997
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5009
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-object-as-default-parameter.md
|
|
4998
5010
|
*/
|
|
4999
5011
|
'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>
|
|
5000
5012
|
/**
|
|
5001
5013
|
* Disallow `process.exit()`.
|
|
5002
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5014
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-process-exit.md
|
|
5003
5015
|
*/
|
|
5004
5016
|
'unicorn/no-process-exit'?: Linter.RuleEntry<[]>
|
|
5005
5017
|
/**
|
|
5006
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5018
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#no-reduce
|
|
5007
5019
|
* @deprecated
|
|
5008
5020
|
*/
|
|
5009
5021
|
'unicorn/no-reduce'?: Linter.RuleEntry<[]>
|
|
5010
5022
|
/**
|
|
5011
5023
|
* Disallow passing single-element arrays to `Promise` methods.
|
|
5012
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5024
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-single-promise-in-promise-methods.md
|
|
5013
5025
|
*/
|
|
5014
5026
|
'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
5015
5027
|
/**
|
|
5016
5028
|
* Disallow classes that only have static members.
|
|
5017
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5029
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-static-only-class.md
|
|
5018
5030
|
*/
|
|
5019
5031
|
'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>
|
|
5020
5032
|
/**
|
|
5021
5033
|
* Disallow `then` property.
|
|
5022
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5034
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-thenable.md
|
|
5023
5035
|
*/
|
|
5024
5036
|
'unicorn/no-thenable'?: Linter.RuleEntry<[]>
|
|
5025
5037
|
/**
|
|
5026
5038
|
* Disallow assigning `this` to a variable.
|
|
5027
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5039
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-this-assignment.md
|
|
5028
5040
|
*/
|
|
5029
5041
|
'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>
|
|
5030
5042
|
/**
|
|
5031
5043
|
* Disallow comparing `undefined` using `typeof`.
|
|
5032
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5044
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-typeof-undefined.md
|
|
5033
5045
|
*/
|
|
5034
5046
|
'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>
|
|
5035
5047
|
/**
|
|
5036
5048
|
* Disallow awaiting non-promise values.
|
|
5037
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5049
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-unnecessary-await.md
|
|
5038
5050
|
*/
|
|
5039
5051
|
'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>
|
|
5040
5052
|
/**
|
|
5041
5053
|
* Enforce the use of built-in methods instead of unnecessary polyfills.
|
|
5042
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5054
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-unnecessary-polyfills.md
|
|
5043
5055
|
*/
|
|
5044
5056
|
'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>
|
|
5045
5057
|
/**
|
|
5046
5058
|
* Disallow unreadable array destructuring.
|
|
5047
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5059
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-unreadable-array-destructuring.md
|
|
5048
5060
|
*/
|
|
5049
5061
|
'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>
|
|
5050
5062
|
/**
|
|
5051
5063
|
* Disallow unreadable IIFEs.
|
|
5052
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5064
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-unreadable-iife.md
|
|
5053
5065
|
*/
|
|
5054
5066
|
'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>
|
|
5055
5067
|
/**
|
|
5056
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5068
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#no-unsafe-regex
|
|
5057
5069
|
* @deprecated
|
|
5058
5070
|
*/
|
|
5059
5071
|
'unicorn/no-unsafe-regex'?: Linter.RuleEntry<[]>
|
|
5060
5072
|
/**
|
|
5061
5073
|
* Disallow unused object properties.
|
|
5062
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5074
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-unused-properties.md
|
|
5063
5075
|
*/
|
|
5064
5076
|
'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>
|
|
5065
5077
|
/**
|
|
5066
5078
|
* Disallow useless fallback when spreading in object literals.
|
|
5067
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5079
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-useless-fallback-in-spread.md
|
|
5068
5080
|
*/
|
|
5069
5081
|
'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>
|
|
5070
5082
|
/**
|
|
5071
5083
|
* Disallow useless array length check.
|
|
5072
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5084
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-useless-length-check.md
|
|
5073
5085
|
*/
|
|
5074
5086
|
'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>
|
|
5075
5087
|
/**
|
|
5076
5088
|
* Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
|
|
5077
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5089
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-useless-promise-resolve-reject.md
|
|
5078
5090
|
*/
|
|
5079
5091
|
'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>
|
|
5080
5092
|
/**
|
|
5081
5093
|
* Disallow unnecessary spread.
|
|
5082
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5094
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-useless-spread.md
|
|
5083
5095
|
*/
|
|
5084
5096
|
'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>
|
|
5085
5097
|
/**
|
|
5086
5098
|
* Disallow useless case in switch statements.
|
|
5087
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5099
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-useless-switch-case.md
|
|
5088
5100
|
*/
|
|
5089
5101
|
'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>
|
|
5090
5102
|
/**
|
|
5091
5103
|
* Disallow useless `undefined`.
|
|
5092
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5104
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-useless-undefined.md
|
|
5093
5105
|
*/
|
|
5094
5106
|
'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>
|
|
5095
5107
|
/**
|
|
5096
5108
|
* Disallow number literals with zero fractions or dangling dots.
|
|
5097
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5109
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/no-zero-fractions.md
|
|
5098
5110
|
*/
|
|
5099
5111
|
'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>
|
|
5100
5112
|
/**
|
|
5101
5113
|
* Enforce proper case for numeric literals.
|
|
5102
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5114
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/number-literal-case.md
|
|
5103
5115
|
*/
|
|
5104
5116
|
'unicorn/number-literal-case'?: Linter.RuleEntry<[]>
|
|
5105
5117
|
/**
|
|
5106
5118
|
* Enforce the style of numeric separators by correctly grouping digits.
|
|
5107
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5119
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/numeric-separators-style.md
|
|
5108
5120
|
*/
|
|
5109
5121
|
'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>
|
|
5110
5122
|
/**
|
|
5111
5123
|
* Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
|
|
5112
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5124
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-add-event-listener.md
|
|
5113
5125
|
*/
|
|
5114
5126
|
'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>
|
|
5115
5127
|
/**
|
|
5116
5128
|
* Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
|
|
5117
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5129
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-array-find.md
|
|
5118
5130
|
*/
|
|
5119
5131
|
'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>
|
|
5120
5132
|
/**
|
|
5121
5133
|
* Prefer `Array#flat()` over legacy techniques to flatten arrays.
|
|
5122
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5134
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-array-flat.md
|
|
5123
5135
|
*/
|
|
5124
5136
|
'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>
|
|
5125
5137
|
/**
|
|
5126
5138
|
* Prefer `.flatMap(…)` over `.map(…).flat()`.
|
|
5127
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5139
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-array-flat-map.md
|
|
5128
5140
|
*/
|
|
5129
5141
|
'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>
|
|
5130
5142
|
/**
|
|
5131
5143
|
* Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
|
|
5132
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5144
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-array-index-of.md
|
|
5133
5145
|
*/
|
|
5134
5146
|
'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>
|
|
5135
5147
|
/**
|
|
5136
5148
|
* Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
|
|
5137
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5149
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-array-some.md
|
|
5138
5150
|
*/
|
|
5139
5151
|
'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>
|
|
5140
5152
|
/**
|
|
5141
5153
|
* Prefer `.at()` method for index access and `String#charAt()`.
|
|
5142
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5154
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-at.md
|
|
5143
5155
|
*/
|
|
5144
5156
|
'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>
|
|
5145
5157
|
/**
|
|
5146
5158
|
* Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
|
|
5147
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5159
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-blob-reading-methods.md
|
|
5148
5160
|
*/
|
|
5149
5161
|
'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>
|
|
5150
5162
|
/**
|
|
5151
5163
|
* Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
|
|
5152
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5164
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-code-point.md
|
|
5153
5165
|
*/
|
|
5154
5166
|
'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>
|
|
5155
5167
|
/**
|
|
5156
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5168
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-dataset
|
|
5157
5169
|
* @deprecated
|
|
5158
5170
|
*/
|
|
5159
5171
|
'unicorn/prefer-dataset'?: Linter.RuleEntry<[]>
|
|
5160
5172
|
/**
|
|
5161
5173
|
* Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
|
|
5162
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5174
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-date-now.md
|
|
5163
5175
|
*/
|
|
5164
5176
|
'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>
|
|
5165
5177
|
/**
|
|
5166
5178
|
* Prefer default parameters over reassignment.
|
|
5167
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5179
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-default-parameters.md
|
|
5168
5180
|
*/
|
|
5169
5181
|
'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>
|
|
5170
5182
|
/**
|
|
5171
5183
|
* Prefer `Node#append()` over `Node#appendChild()`.
|
|
5172
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5184
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-dom-node-append.md
|
|
5173
5185
|
*/
|
|
5174
5186
|
'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>
|
|
5175
5187
|
/**
|
|
5176
5188
|
* Prefer using `.dataset` on DOM elements over calling attribute methods.
|
|
5177
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5189
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-dom-node-dataset.md
|
|
5178
5190
|
*/
|
|
5179
5191
|
'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>
|
|
5180
5192
|
/**
|
|
5181
5193
|
* Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
|
|
5182
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5194
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-dom-node-remove.md
|
|
5183
5195
|
*/
|
|
5184
5196
|
'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>
|
|
5185
5197
|
/**
|
|
5186
5198
|
* Prefer `.textContent` over `.innerText`.
|
|
5187
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5199
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-dom-node-text-content.md
|
|
5188
5200
|
*/
|
|
5189
5201
|
'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>
|
|
5190
5202
|
/**
|
|
5191
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5203
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-event-key
|
|
5192
5204
|
* @deprecated
|
|
5193
5205
|
*/
|
|
5194
5206
|
'unicorn/prefer-event-key'?: Linter.RuleEntry<[]>
|
|
5195
5207
|
/**
|
|
5196
5208
|
* Prefer `EventTarget` over `EventEmitter`.
|
|
5197
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5209
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-event-target.md
|
|
5198
5210
|
*/
|
|
5199
5211
|
'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>
|
|
5200
5212
|
/**
|
|
5201
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5213
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-exponentiation-operator
|
|
5202
5214
|
* @deprecated
|
|
5203
5215
|
*/
|
|
5204
5216
|
'unicorn/prefer-exponentiation-operator'?: Linter.RuleEntry<[]>
|
|
5205
5217
|
/**
|
|
5206
5218
|
* Prefer `export…from` when re-exporting.
|
|
5207
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5219
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-export-from.md
|
|
5208
5220
|
*/
|
|
5209
5221
|
'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>
|
|
5210
5222
|
/**
|
|
5211
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5223
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-flat-map
|
|
5212
5224
|
* @deprecated
|
|
5213
5225
|
*/
|
|
5214
5226
|
'unicorn/prefer-flat-map'?: Linter.RuleEntry<[]>
|
|
5215
5227
|
/**
|
|
5216
5228
|
* Prefer `globalThis` over `window`, `self`, and `global`.
|
|
5217
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5229
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-global-this.md
|
|
5218
5230
|
*/
|
|
5219
5231
|
'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>
|
|
5220
5232
|
/**
|
|
5221
5233
|
* Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
|
|
5222
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5234
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-includes.md
|
|
5223
5235
|
*/
|
|
5224
5236
|
'unicorn/prefer-includes'?: Linter.RuleEntry<[]>
|
|
5225
5237
|
/**
|
|
5226
5238
|
* Prefer reading a JSON file as a buffer.
|
|
5227
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5239
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-json-parse-buffer.md
|
|
5228
5240
|
*/
|
|
5229
5241
|
'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>
|
|
5230
5242
|
/**
|
|
5231
5243
|
* Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
|
|
5232
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5244
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-keyboard-event-key.md
|
|
5233
5245
|
*/
|
|
5234
5246
|
'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>
|
|
5235
5247
|
/**
|
|
5236
5248
|
* Prefer using a logical operator over a ternary.
|
|
5237
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5249
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-logical-operator-over-ternary.md
|
|
5238
5250
|
*/
|
|
5239
5251
|
'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>
|
|
5240
5252
|
/**
|
|
5241
5253
|
* Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
|
|
5242
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5254
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-math-min-max.md
|
|
5243
5255
|
*/
|
|
5244
5256
|
'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>
|
|
5245
5257
|
/**
|
|
5246
5258
|
* Enforce the use of `Math.trunc` instead of bitwise operators.
|
|
5247
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5259
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-math-trunc.md
|
|
5248
5260
|
*/
|
|
5249
5261
|
'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>
|
|
5250
5262
|
/**
|
|
5251
5263
|
* Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
|
|
5252
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5264
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-modern-dom-apis.md
|
|
5253
5265
|
*/
|
|
5254
5266
|
'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>
|
|
5255
5267
|
/**
|
|
5256
5268
|
* Prefer modern `Math` APIs over legacy patterns.
|
|
5257
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5269
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-modern-math-apis.md
|
|
5258
5270
|
*/
|
|
5259
5271
|
'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>
|
|
5260
5272
|
/**
|
|
5261
5273
|
* Prefer JavaScript modules (ESM) over CommonJS.
|
|
5262
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5274
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-module.md
|
|
5263
5275
|
*/
|
|
5264
5276
|
'unicorn/prefer-module'?: Linter.RuleEntry<[]>
|
|
5265
5277
|
/**
|
|
5266
5278
|
* Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
|
|
5267
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5279
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-native-coercion-functions.md
|
|
5268
5280
|
*/
|
|
5269
5281
|
'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>
|
|
5270
5282
|
/**
|
|
5271
5283
|
* Prefer negative index over `.length - index` when possible.
|
|
5272
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5284
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-negative-index.md
|
|
5273
5285
|
*/
|
|
5274
5286
|
'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>
|
|
5275
5287
|
/**
|
|
5276
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5288
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-node-append
|
|
5277
5289
|
* @deprecated
|
|
5278
5290
|
*/
|
|
5279
5291
|
'unicorn/prefer-node-append'?: Linter.RuleEntry<[]>
|
|
5280
5292
|
/**
|
|
5281
5293
|
* Prefer using the `node:` protocol when importing Node.js builtin modules.
|
|
5282
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5294
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-node-protocol.md
|
|
5283
5295
|
*/
|
|
5284
5296
|
'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>
|
|
5285
5297
|
/**
|
|
5286
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5298
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-node-remove
|
|
5287
5299
|
* @deprecated
|
|
5288
5300
|
*/
|
|
5289
5301
|
'unicorn/prefer-node-remove'?: Linter.RuleEntry<[]>
|
|
5290
5302
|
/**
|
|
5291
5303
|
* Prefer `Number` static properties over global ones.
|
|
5292
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5304
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-number-properties.md
|
|
5293
5305
|
*/
|
|
5294
5306
|
'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>
|
|
5295
5307
|
/**
|
|
5296
5308
|
* Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
|
|
5297
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5309
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-object-from-entries.md
|
|
5298
5310
|
*/
|
|
5299
5311
|
'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>
|
|
5300
5312
|
/**
|
|
5301
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5313
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-object-has-own
|
|
5302
5314
|
* @deprecated
|
|
5303
5315
|
*/
|
|
5304
5316
|
'unicorn/prefer-object-has-own'?: Linter.RuleEntry<[]>
|
|
5305
5317
|
/**
|
|
5306
5318
|
* Prefer omitting the `catch` binding parameter.
|
|
5307
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5319
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-optional-catch-binding.md
|
|
5308
5320
|
*/
|
|
5309
5321
|
'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>
|
|
5310
5322
|
/**
|
|
5311
5323
|
* Prefer borrowing methods from the prototype instead of the instance.
|
|
5312
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5324
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-prototype-methods.md
|
|
5313
5325
|
*/
|
|
5314
5326
|
'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>
|
|
5315
5327
|
/**
|
|
5316
5328
|
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
|
|
5317
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5329
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-query-selector.md
|
|
5318
5330
|
*/
|
|
5319
5331
|
'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>
|
|
5320
5332
|
/**
|
|
5321
5333
|
* Prefer `Reflect.apply()` over `Function#apply()`.
|
|
5322
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5334
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-reflect-apply.md
|
|
5323
5335
|
*/
|
|
5324
5336
|
'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>
|
|
5325
5337
|
/**
|
|
5326
5338
|
* Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
|
|
5327
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5339
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-regexp-test.md
|
|
5328
5340
|
*/
|
|
5329
5341
|
'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>
|
|
5330
5342
|
/**
|
|
5331
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5343
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-replace-all
|
|
5332
5344
|
* @deprecated
|
|
5333
5345
|
*/
|
|
5334
5346
|
'unicorn/prefer-replace-all'?: Linter.RuleEntry<[]>
|
|
5335
5347
|
/**
|
|
5336
5348
|
* Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
|
|
5337
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5349
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-set-has.md
|
|
5338
5350
|
*/
|
|
5339
5351
|
'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>
|
|
5340
5352
|
/**
|
|
5341
5353
|
* Prefer using `Set#size` instead of `Array#length`.
|
|
5342
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5354
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-set-size.md
|
|
5343
5355
|
*/
|
|
5344
5356
|
'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>
|
|
5345
5357
|
/**
|
|
5346
5358
|
* Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
|
|
5347
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5359
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-spread.md
|
|
5348
5360
|
*/
|
|
5349
5361
|
'unicorn/prefer-spread'?: Linter.RuleEntry<[]>
|
|
5350
5362
|
/**
|
|
5351
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5363
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-starts-ends-with
|
|
5352
5364
|
* @deprecated
|
|
5353
5365
|
*/
|
|
5354
5366
|
'unicorn/prefer-starts-ends-with'?: Linter.RuleEntry<[]>
|
|
5355
5367
|
/**
|
|
5356
5368
|
* Prefer using the `String.raw` tag to avoid escaping `\`.
|
|
5357
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5369
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-string-raw.md
|
|
5358
5370
|
*/
|
|
5359
5371
|
'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>
|
|
5360
5372
|
/**
|
|
5361
5373
|
* Prefer `String#replaceAll()` over regex searches with the global flag.
|
|
5362
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5374
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-string-replace-all.md
|
|
5363
5375
|
*/
|
|
5364
5376
|
'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>
|
|
5365
5377
|
/**
|
|
5366
5378
|
* Prefer `String#slice()` over `String#substr()` and `String#substring()`.
|
|
5367
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5379
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-string-slice.md
|
|
5368
5380
|
*/
|
|
5369
5381
|
'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>
|
|
5370
5382
|
/**
|
|
5371
5383
|
* Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
|
|
5372
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5384
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-string-starts-ends-with.md
|
|
5373
5385
|
*/
|
|
5374
5386
|
'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>
|
|
5375
5387
|
/**
|
|
5376
5388
|
* Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
|
|
5377
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5389
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-string-trim-start-end.md
|
|
5378
5390
|
*/
|
|
5379
5391
|
'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>
|
|
5380
5392
|
/**
|
|
5381
5393
|
* Prefer using `structuredClone` to create a deep clone.
|
|
5382
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5394
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-structured-clone.md
|
|
5383
5395
|
*/
|
|
5384
5396
|
'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>
|
|
5385
5397
|
/**
|
|
5386
5398
|
* Prefer `switch` over multiple `else-if`.
|
|
5387
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5399
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-switch.md
|
|
5388
5400
|
*/
|
|
5389
5401
|
'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>
|
|
5390
5402
|
/**
|
|
5391
5403
|
* Prefer ternary expressions over simple `if-else` statements.
|
|
5392
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5404
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-ternary.md
|
|
5393
5405
|
*/
|
|
5394
5406
|
'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>
|
|
5395
5407
|
/**
|
|
5396
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5408
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-text-content
|
|
5397
5409
|
* @deprecated
|
|
5398
5410
|
*/
|
|
5399
5411
|
'unicorn/prefer-text-content'?: Linter.RuleEntry<[]>
|
|
5400
5412
|
/**
|
|
5401
5413
|
* Prefer top-level await over top-level promises and async function calls.
|
|
5402
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5414
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-top-level-await.md
|
|
5403
5415
|
*/
|
|
5404
5416
|
'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>
|
|
5405
5417
|
/**
|
|
5406
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5418
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-trim-start-end
|
|
5407
5419
|
* @deprecated
|
|
5408
5420
|
*/
|
|
5409
5421
|
'unicorn/prefer-trim-start-end'?: Linter.RuleEntry<[]>
|
|
5410
5422
|
/**
|
|
5411
5423
|
* Enforce throwing `TypeError` in type checking conditions.
|
|
5412
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5424
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prefer-type-error.md
|
|
5413
5425
|
*/
|
|
5414
5426
|
'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>
|
|
5415
5427
|
/**
|
|
5416
5428
|
* Prevent abbreviations.
|
|
5417
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5429
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/prevent-abbreviations.md
|
|
5418
5430
|
*/
|
|
5419
5431
|
'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>
|
|
5420
5432
|
/**
|
|
5421
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5433
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#regex-shorthand
|
|
5422
5434
|
* @deprecated
|
|
5423
5435
|
*/
|
|
5424
5436
|
'unicorn/regex-shorthand'?: Linter.RuleEntry<[]>
|
|
5425
5437
|
/**
|
|
5426
5438
|
* Enforce consistent relative URL style.
|
|
5427
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5439
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/relative-url-style.md
|
|
5428
5440
|
*/
|
|
5429
5441
|
'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>
|
|
5430
5442
|
/**
|
|
5431
5443
|
* Enforce using the separator argument with `Array#join()`.
|
|
5432
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5444
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/require-array-join-separator.md
|
|
5433
5445
|
*/
|
|
5434
5446
|
'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>
|
|
5435
5447
|
/**
|
|
5436
5448
|
* Enforce using the digits argument with `Number#toFixed()`.
|
|
5437
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5449
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/require-number-to-fixed-digits-argument.md
|
|
5438
5450
|
*/
|
|
5439
5451
|
'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>
|
|
5440
5452
|
/**
|
|
5441
5453
|
* Enforce using the `targetOrigin` argument with `window.postMessage()`.
|
|
5442
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5454
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/require-post-message-target-origin.md
|
|
5443
5455
|
*/
|
|
5444
5456
|
'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>
|
|
5445
5457
|
/**
|
|
5446
5458
|
* Enforce better string content.
|
|
5447
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5459
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/string-content.md
|
|
5448
5460
|
*/
|
|
5449
5461
|
'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>
|
|
5450
5462
|
/**
|
|
5451
5463
|
* Enforce consistent brace style for `case` clauses.
|
|
5452
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5464
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/switch-case-braces.md
|
|
5453
5465
|
*/
|
|
5454
5466
|
'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>
|
|
5455
5467
|
/**
|
|
5456
5468
|
* Fix whitespace-insensitive template indentation.
|
|
5457
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5469
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/template-indent.md
|
|
5458
5470
|
*/
|
|
5459
5471
|
'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>
|
|
5460
5472
|
/**
|
|
5461
5473
|
* Enforce consistent case for text encoding identifiers.
|
|
5462
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5474
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/text-encoding-identifier-case.md
|
|
5463
5475
|
*/
|
|
5464
5476
|
'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>
|
|
5465
5477
|
/**
|
|
5466
5478
|
* Require `new` when creating an error.
|
|
5467
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.
|
|
5479
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/rules/throw-new-error.md
|
|
5468
5480
|
*/
|
|
5469
5481
|
'unicorn/throw-new-error'?: Linter.RuleEntry<[]>
|
|
5470
5482
|
/**
|
|
@@ -5962,7 +5974,7 @@ interface RuleOptions {
|
|
|
5962
5974
|
* enforce `inheritAttrs` to be set to `false` when using `v-bind="$attrs"`
|
|
5963
5975
|
* @see https://eslint.vuejs.org/rules/no-duplicate-attr-inheritance.html
|
|
5964
5976
|
*/
|
|
5965
|
-
'vue/no-duplicate-attr-inheritance'?: Linter.RuleEntry<
|
|
5977
|
+
'vue/no-duplicate-attr-inheritance'?: Linter.RuleEntry<VueNoDuplicateAttrInheritance>
|
|
5966
5978
|
/**
|
|
5967
5979
|
* disallow duplication of attributes
|
|
5968
5980
|
* @see https://eslint.vuejs.org/rules/no-duplicate-attributes.html
|
|
@@ -6406,6 +6418,11 @@ interface RuleOptions {
|
|
|
6406
6418
|
* @see https://eslint.vuejs.org/rules/prefer-true-attribute-shorthand.html
|
|
6407
6419
|
*/
|
|
6408
6420
|
'vue/prefer-true-attribute-shorthand'?: Linter.RuleEntry<VuePreferTrueAttributeShorthand>
|
|
6421
|
+
/**
|
|
6422
|
+
* require using `useTemplateRef` instead of `ref`/`shallowRef` for template refs
|
|
6423
|
+
* @see https://eslint.vuejs.org/rules/prefer-use-template-ref.html
|
|
6424
|
+
*/
|
|
6425
|
+
'vue/prefer-use-template-ref'?: Linter.RuleEntry<[]>
|
|
6409
6426
|
/**
|
|
6410
6427
|
* enforce specific casing for the Prop name in Vue components
|
|
6411
6428
|
* @see https://eslint.vuejs.org/rules/prop-name-casing.html
|
|
@@ -6516,6 +6533,11 @@ interface RuleOptions {
|
|
|
6516
6533
|
* @see https://eslint.vuejs.org/rules/require-valid-default-prop.html
|
|
6517
6534
|
*/
|
|
6518
6535
|
'vue/require-valid-default-prop'?: Linter.RuleEntry<[]>
|
|
6536
|
+
/**
|
|
6537
|
+
* enforce using only specific component names
|
|
6538
|
+
* @see https://eslint.vuejs.org/rules/restricted-component-names.html
|
|
6539
|
+
*/
|
|
6540
|
+
'vue/restricted-component-names'?: Linter.RuleEntry<VueRestrictedComponentNames>
|
|
6519
6541
|
/**
|
|
6520
6542
|
* enforce that a return statement is present in computed property
|
|
6521
6543
|
* @see https://eslint.vuejs.org/rules/return-in-computed-property.html
|
|
@@ -6542,6 +6564,11 @@ interface RuleOptions {
|
|
|
6542
6564
|
* @see https://eslint.vuejs.org/rules/singleline-html-element-content-newline.html
|
|
6543
6565
|
*/
|
|
6544
6566
|
'vue/singleline-html-element-content-newline'?: Linter.RuleEntry<VueSinglelineHtmlElementContentNewline>
|
|
6567
|
+
/**
|
|
6568
|
+
* enforce specific casing for slot names
|
|
6569
|
+
* @see https://eslint.vuejs.org/rules/slot-name-casing.html
|
|
6570
|
+
*/
|
|
6571
|
+
'vue/slot-name-casing'?: Linter.RuleEntry<VueSlotNameCasing>
|
|
6545
6572
|
/**
|
|
6546
6573
|
* enforce sort-keys in a manner that is compatible with order-in-components
|
|
6547
6574
|
* @see https://eslint.vuejs.org/rules/sort-keys.html
|
|
@@ -7056,10 +7083,10 @@ type ImportExtensions = ([]|[("always" | "ignorePackages" | "never")] | []|[("al
|
|
|
7056
7083
|
ignorePackages?: boolean
|
|
7057
7084
|
checkTypeImports?: boolean
|
|
7058
7085
|
[k: string]: unknown | undefined
|
|
7059
|
-
}] | []|[{
|
|
7060
|
-
[k: string]: ("always" | "ignorePackages" | "never")
|
|
7061
7086
|
}] | []|[("always" | "ignorePackages" | "never")]|[("always" | "ignorePackages" | "never"), {
|
|
7062
7087
|
[k: string]: ("always" | "ignorePackages" | "never")
|
|
7088
|
+
}] | []|[{
|
|
7089
|
+
[k: string]: ("always" | "ignorePackages" | "never")
|
|
7063
7090
|
}])
|
|
7064
7091
|
// ----- import/first -----
|
|
7065
7092
|
type ImportFirst = []|[("absolute-first" | "disable-absolute-first")]
|
|
@@ -7446,6 +7473,7 @@ type JsdocInformativeDocs = []|[{
|
|
|
7446
7473
|
}]
|
|
7447
7474
|
// ----- jsdoc/lines-before-block -----
|
|
7448
7475
|
type JsdocLinesBeforeBlock = []|[{
|
|
7476
|
+
checkBlockStarts?: boolean
|
|
7449
7477
|
excludedTags?: string[]
|
|
7450
7478
|
ignoreSameLine?: boolean
|
|
7451
7479
|
lines?: number
|
|
@@ -9067,6 +9095,7 @@ type NodeNoRestrictedRequire = []|[(string | {
|
|
|
9067
9095
|
// ----- node/no-sync -----
|
|
9068
9096
|
type NodeNoSync = []|[{
|
|
9069
9097
|
allowAtRootLevel?: boolean
|
|
9098
|
+
ignores?: string[]
|
|
9070
9099
|
}]
|
|
9071
9100
|
// ----- node/no-unpublished-bin -----
|
|
9072
9101
|
type NodeNoUnpublishedBin = []|[{
|
|
@@ -9148,7 +9177,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
9148
9177
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
9149
9178
|
version?: string
|
|
9150
9179
|
allowExperimental?: boolean
|
|
9151
|
-
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
|
|
9180
|
+
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
|
|
9152
9181
|
}]
|
|
9153
9182
|
// ----- node/prefer-global/buffer -----
|
|
9154
9183
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -9291,61 +9320,30 @@ type PaddingLineBetweenStatements = {
|
|
|
9291
9320
|
// ----- perfectionist/sort-array-includes -----
|
|
9292
9321
|
type PerfectionistSortArrayIncludes = []|[{
|
|
9293
9322
|
|
|
9294
|
-
|
|
9295
|
-
|
|
9296
|
-
order?: ("asc" | "desc")
|
|
9297
|
-
|
|
9298
|
-
matcher?: ("minimatch" | "regex")
|
|
9299
|
-
|
|
9300
|
-
ignoreCase?: boolean
|
|
9301
|
-
|
|
9302
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9323
|
+
partitionByComment?: (string[] | boolean | string)
|
|
9303
9324
|
|
|
9304
9325
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
9305
9326
|
|
|
9306
|
-
partitionByComment?: (string[] | boolean | string)
|
|
9307
|
-
|
|
9308
9327
|
partitionByNewLine?: boolean
|
|
9309
|
-
}]
|
|
9310
|
-
// ----- perfectionist/sort-astro-attributes -----
|
|
9311
|
-
type PerfectionistSortAstroAttributes = []|[{
|
|
9312
|
-
|
|
9313
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9314
|
-
|
|
9315
|
-
order?: ("asc" | "desc")
|
|
9316
9328
|
|
|
9317
|
-
|
|
9329
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9318
9330
|
|
|
9319
9331
|
ignoreCase?: boolean
|
|
9320
9332
|
|
|
9321
|
-
|
|
9333
|
+
locales?: (string | string[])
|
|
9322
9334
|
|
|
9323
|
-
|
|
9335
|
+
order?: ("asc" | "desc")
|
|
9324
9336
|
|
|
9325
|
-
|
|
9326
|
-
[k: string]: (string | string[]) | undefined
|
|
9327
|
-
}
|
|
9337
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9328
9338
|
}]
|
|
9329
9339
|
// ----- perfectionist/sort-classes -----
|
|
9330
9340
|
type PerfectionistSortClasses = []|[{
|
|
9331
9341
|
|
|
9332
|
-
|
|
9333
|
-
|
|
9334
|
-
order?: ("asc" | "desc")
|
|
9335
|
-
|
|
9336
|
-
matcher?: ("minimatch" | "regex")
|
|
9337
|
-
|
|
9338
|
-
ignoreCase?: boolean
|
|
9339
|
-
|
|
9340
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9342
|
+
ignoreCallbackDependenciesPatterns?: string[]
|
|
9341
9343
|
|
|
9342
9344
|
partitionByComment?: (string[] | boolean | string)
|
|
9343
9345
|
|
|
9344
|
-
groups?: (string | string[])[]
|
|
9345
|
-
|
|
9346
9346
|
customGroups?: ({
|
|
9347
|
-
[k: string]: (string | string[]) | undefined
|
|
9348
|
-
} | ({
|
|
9349
9347
|
|
|
9350
9348
|
groupName?: string
|
|
9351
9349
|
|
|
@@ -9354,15 +9352,15 @@ type PerfectionistSortClasses = []|[{
|
|
|
9354
9352
|
order?: ("desc" | "asc")
|
|
9355
9353
|
anyOf?: {
|
|
9356
9354
|
|
|
9357
|
-
|
|
9355
|
+
elementValuePattern?: string
|
|
9358
9356
|
|
|
9359
|
-
|
|
9357
|
+
decoratorNamePattern?: string
|
|
9360
9358
|
|
|
9361
|
-
|
|
9359
|
+
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
9362
9360
|
|
|
9363
|
-
|
|
9361
|
+
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
9364
9362
|
|
|
9365
|
-
|
|
9363
|
+
elementNamePattern?: string
|
|
9366
9364
|
}[]
|
|
9367
9365
|
} | {
|
|
9368
9366
|
|
|
@@ -9372,91 +9370,165 @@ type PerfectionistSortClasses = []|[{
|
|
|
9372
9370
|
|
|
9373
9371
|
order?: ("desc" | "asc")
|
|
9374
9372
|
|
|
9375
|
-
|
|
9373
|
+
elementValuePattern?: string
|
|
9376
9374
|
|
|
9377
|
-
|
|
9375
|
+
decoratorNamePattern?: string
|
|
9378
9376
|
|
|
9379
|
-
|
|
9377
|
+
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
9380
9378
|
|
|
9381
|
-
|
|
9379
|
+
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
9382
9380
|
|
|
9383
|
-
|
|
9384
|
-
})[]
|
|
9385
|
-
}]
|
|
9386
|
-
// ----- perfectionist/sort-enums -----
|
|
9387
|
-
type PerfectionistSortEnums = []|[{
|
|
9381
|
+
elementNamePattern?: string
|
|
9382
|
+
})[]
|
|
9388
9383
|
|
|
9389
|
-
|
|
9384
|
+
partitionByNewLine?: boolean
|
|
9390
9385
|
|
|
9391
|
-
|
|
9386
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9392
9387
|
|
|
9393
|
-
|
|
9388
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9394
9389
|
|
|
9395
9390
|
ignoreCase?: boolean
|
|
9396
9391
|
|
|
9397
|
-
|
|
9392
|
+
locales?: (string | string[])
|
|
9398
9393
|
|
|
9399
|
-
|
|
9394
|
+
groups?: (string | string[])[]
|
|
9400
9395
|
|
|
9401
|
-
|
|
9396
|
+
order?: ("asc" | "desc")
|
|
9397
|
+
|
|
9398
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9399
|
+
}]
|
|
9400
|
+
// ----- perfectionist/sort-decorators -----
|
|
9401
|
+
type PerfectionistSortDecorators = []|[{
|
|
9402
9402
|
|
|
9403
9403
|
partitionByComment?: (string[] | boolean | string)
|
|
9404
9404
|
|
|
9405
|
-
|
|
9406
|
-
}]
|
|
9407
|
-
// ----- perfectionist/sort-exports -----
|
|
9408
|
-
type PerfectionistSortExports = []|[{
|
|
9405
|
+
sortOnParameters?: boolean
|
|
9409
9406
|
|
|
9410
|
-
|
|
9407
|
+
sortOnProperties?: boolean
|
|
9411
9408
|
|
|
9412
|
-
|
|
9409
|
+
sortOnAccessors?: boolean
|
|
9413
9410
|
|
|
9414
|
-
|
|
9411
|
+
sortOnMethods?: boolean
|
|
9415
9412
|
|
|
9416
|
-
|
|
9413
|
+
sortOnClasses?: boolean
|
|
9417
9414
|
|
|
9418
9415
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9419
9416
|
|
|
9417
|
+
customGroups?: {
|
|
9418
|
+
[k: string]: (string | string[]) | undefined
|
|
9419
|
+
}
|
|
9420
|
+
|
|
9421
|
+
ignoreCase?: boolean
|
|
9422
|
+
|
|
9423
|
+
locales?: (string | string[])
|
|
9424
|
+
|
|
9425
|
+
groups?: (string | string[])[]
|
|
9426
|
+
|
|
9427
|
+
order?: ("asc" | "desc")
|
|
9428
|
+
|
|
9429
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9430
|
+
}]
|
|
9431
|
+
// ----- perfectionist/sort-enums -----
|
|
9432
|
+
type PerfectionistSortEnums = []|[{
|
|
9433
|
+
|
|
9420
9434
|
partitionByComment?: (string[] | boolean | string)
|
|
9421
9435
|
|
|
9436
|
+
forceNumericSort?: boolean
|
|
9437
|
+
|
|
9438
|
+
sortByValue?: boolean
|
|
9439
|
+
|
|
9422
9440
|
partitionByNewLine?: boolean
|
|
9423
9441
|
|
|
9424
|
-
|
|
9425
|
-
}]
|
|
9426
|
-
// ----- perfectionist/sort-imports -----
|
|
9427
|
-
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
9428
|
-
type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
|
|
9442
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9429
9443
|
|
|
9430
|
-
|
|
9444
|
+
ignoreCase?: boolean
|
|
9445
|
+
|
|
9446
|
+
locales?: (string | string[])
|
|
9431
9447
|
|
|
9432
9448
|
order?: ("asc" | "desc")
|
|
9433
9449
|
|
|
9434
|
-
|
|
9450
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9451
|
+
}]
|
|
9452
|
+
// ----- perfectionist/sort-exports -----
|
|
9453
|
+
type PerfectionistSortExports = []|[{
|
|
9435
9454
|
|
|
9436
|
-
|
|
9455
|
+
partitionByComment?: (string[] | boolean | string)
|
|
9456
|
+
|
|
9457
|
+
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
9458
|
+
|
|
9459
|
+
partitionByNewLine?: boolean
|
|
9437
9460
|
|
|
9438
9461
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9439
9462
|
|
|
9440
|
-
|
|
9463
|
+
ignoreCase?: boolean
|
|
9441
9464
|
|
|
9442
|
-
|
|
9465
|
+
locales?: (string | string[])
|
|
9443
9466
|
|
|
9444
|
-
|
|
9467
|
+
order?: ("asc" | "desc")
|
|
9445
9468
|
|
|
9446
|
-
|
|
9469
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9470
|
+
}]
|
|
9471
|
+
// ----- perfectionist/sort-heritage-clauses -----
|
|
9472
|
+
type PerfectionistSortHeritageClauses = []|[{
|
|
9473
|
+
|
|
9474
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9475
|
+
|
|
9476
|
+
customGroups?: {
|
|
9477
|
+
[k: string]: (string | string[]) | undefined
|
|
9478
|
+
}
|
|
9479
|
+
|
|
9480
|
+
ignoreCase?: boolean
|
|
9481
|
+
|
|
9482
|
+
locales?: (string | string[])
|
|
9447
9483
|
|
|
9448
9484
|
groups?: (string | string[])[]
|
|
9449
9485
|
|
|
9486
|
+
order?: ("asc" | "desc")
|
|
9487
|
+
|
|
9488
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9489
|
+
}]
|
|
9490
|
+
// ----- perfectionist/sort-imports -----
|
|
9491
|
+
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
9492
|
+
type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
|
|
9493
|
+
|
|
9450
9494
|
customGroups?: {
|
|
9451
|
-
|
|
9495
|
+
|
|
9496
|
+
value?: {
|
|
9452
9497
|
[k: string]: unknown | undefined
|
|
9453
9498
|
}
|
|
9454
|
-
|
|
9499
|
+
|
|
9500
|
+
type?: {
|
|
9455
9501
|
[k: string]: unknown | undefined
|
|
9456
9502
|
}
|
|
9457
9503
|
}
|
|
9458
9504
|
|
|
9505
|
+
partitionByComment?: (string[] | boolean | string)
|
|
9506
|
+
|
|
9507
|
+
internalPattern?: string[]
|
|
9508
|
+
|
|
9509
|
+
maxLineLength?: number
|
|
9510
|
+
|
|
9511
|
+
sortSideEffects?: boolean
|
|
9512
|
+
|
|
9459
9513
|
environment?: ("node" | "bun")
|
|
9514
|
+
|
|
9515
|
+
tsconfigRootDir?: string
|
|
9516
|
+
|
|
9517
|
+
partitionByNewLine?: boolean
|
|
9518
|
+
|
|
9519
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9520
|
+
|
|
9521
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9522
|
+
|
|
9523
|
+
ignoreCase?: boolean
|
|
9524
|
+
|
|
9525
|
+
locales?: (string | string[])
|
|
9526
|
+
|
|
9527
|
+
groups?: (string | string[])[]
|
|
9528
|
+
|
|
9529
|
+
order?: ("asc" | "desc")
|
|
9530
|
+
|
|
9531
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9460
9532
|
})
|
|
9461
9533
|
type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
|
|
9462
9534
|
[k: string]: unknown | undefined
|
|
@@ -9468,284 +9540,376 @@ interface _PerfectionistSortImports_IsLineLength {
|
|
|
9468
9540
|
// ----- perfectionist/sort-interfaces -----
|
|
9469
9541
|
type PerfectionistSortInterfaces = []|[{
|
|
9470
9542
|
|
|
9471
|
-
|
|
9543
|
+
ignorePattern?: string[]
|
|
9472
9544
|
|
|
9473
|
-
|
|
9545
|
+
partitionByComment?: (string[] | boolean | string)
|
|
9546
|
+
customGroups?: ({
|
|
9547
|
+
[k: string]: (string | string[]) | undefined
|
|
9548
|
+
} | ({
|
|
9549
|
+
|
|
9550
|
+
groupName?: string
|
|
9551
|
+
|
|
9552
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9553
|
+
|
|
9554
|
+
order?: ("desc" | "asc")
|
|
9555
|
+
anyOf?: {
|
|
9556
|
+
|
|
9557
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9558
|
+
|
|
9559
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
9560
|
+
|
|
9561
|
+
elementNamePattern?: string
|
|
9562
|
+
}[]
|
|
9563
|
+
} | {
|
|
9564
|
+
|
|
9565
|
+
groupName?: string
|
|
9566
|
+
|
|
9567
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9568
|
+
|
|
9569
|
+
order?: ("desc" | "asc")
|
|
9570
|
+
|
|
9571
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9572
|
+
|
|
9573
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
9574
|
+
|
|
9575
|
+
elementNamePattern?: string
|
|
9576
|
+
})[])
|
|
9474
9577
|
|
|
9475
|
-
|
|
9578
|
+
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
9476
9579
|
|
|
9477
|
-
|
|
9580
|
+
partitionByNewLine?: boolean
|
|
9478
9581
|
|
|
9479
9582
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9480
9583
|
|
|
9481
|
-
|
|
9482
|
-
|
|
9483
|
-
partitionByComment?: (boolean | string | string[])
|
|
9584
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9484
9585
|
|
|
9485
|
-
|
|
9586
|
+
ignoreCase?: boolean
|
|
9486
9587
|
|
|
9487
|
-
|
|
9588
|
+
locales?: (string | string[])
|
|
9488
9589
|
|
|
9489
9590
|
groups?: (string | string[])[]
|
|
9490
9591
|
|
|
9491
|
-
|
|
9492
|
-
|
|
9493
|
-
|
|
9592
|
+
order?: ("asc" | "desc")
|
|
9593
|
+
|
|
9594
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9494
9595
|
}]
|
|
9495
9596
|
// ----- perfectionist/sort-intersection-types -----
|
|
9496
9597
|
type PerfectionistSortIntersectionTypes = []|[{
|
|
9497
9598
|
|
|
9498
|
-
|
|
9599
|
+
partitionByComment?: (string[] | boolean | string)
|
|
9499
9600
|
|
|
9500
|
-
|
|
9601
|
+
partitionByNewLine?: boolean
|
|
9602
|
+
|
|
9603
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9501
9604
|
|
|
9502
|
-
|
|
9605
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9503
9606
|
|
|
9504
9607
|
ignoreCase?: boolean
|
|
9505
9608
|
|
|
9506
|
-
|
|
9609
|
+
locales?: (string | string[])
|
|
9507
9610
|
|
|
9508
9611
|
groups?: (string | string[])[]
|
|
9509
9612
|
|
|
9510
|
-
|
|
9613
|
+
order?: ("asc" | "desc")
|
|
9511
9614
|
|
|
9512
|
-
|
|
9615
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9513
9616
|
}]
|
|
9514
9617
|
// ----- perfectionist/sort-jsx-props -----
|
|
9515
9618
|
type PerfectionistSortJsxProps = []|[{
|
|
9516
9619
|
|
|
9517
|
-
|
|
9620
|
+
ignorePattern?: string[]
|
|
9518
9621
|
|
|
9519
|
-
|
|
9622
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9520
9623
|
|
|
9521
|
-
|
|
9624
|
+
customGroups?: {
|
|
9625
|
+
[k: string]: (string | string[]) | undefined
|
|
9626
|
+
}
|
|
9522
9627
|
|
|
9523
9628
|
ignoreCase?: boolean
|
|
9524
9629
|
|
|
9525
|
-
|
|
9526
|
-
|
|
9527
|
-
ignorePattern?: string[]
|
|
9630
|
+
locales?: (string | string[])
|
|
9528
9631
|
|
|
9529
9632
|
groups?: (string | string[])[]
|
|
9530
9633
|
|
|
9531
|
-
|
|
9532
|
-
|
|
9533
|
-
|
|
9634
|
+
order?: ("asc" | "desc")
|
|
9635
|
+
|
|
9636
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9534
9637
|
}]
|
|
9535
9638
|
// ----- perfectionist/sort-maps -----
|
|
9536
9639
|
type PerfectionistSortMaps = []|[{
|
|
9537
9640
|
|
|
9538
|
-
|
|
9641
|
+
partitionByComment?: (string[] | boolean | string)
|
|
9539
9642
|
|
|
9540
|
-
|
|
9643
|
+
partitionByNewLine?: boolean
|
|
9541
9644
|
|
|
9542
|
-
|
|
9645
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9543
9646
|
|
|
9544
9647
|
ignoreCase?: boolean
|
|
9545
9648
|
|
|
9546
|
-
|
|
9649
|
+
locales?: (string | string[])
|
|
9650
|
+
|
|
9651
|
+
order?: ("asc" | "desc")
|
|
9652
|
+
|
|
9653
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9654
|
+
}]
|
|
9655
|
+
// ----- perfectionist/sort-modules -----
|
|
9656
|
+
type PerfectionistSortModules = []|[{
|
|
9547
9657
|
|
|
9548
9658
|
partitionByComment?: (string[] | boolean | string)
|
|
9549
9659
|
|
|
9660
|
+
customGroups?: ({
|
|
9661
|
+
|
|
9662
|
+
groupName?: string
|
|
9663
|
+
|
|
9664
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9665
|
+
|
|
9666
|
+
order?: ("desc" | "asc")
|
|
9667
|
+
anyOf?: {
|
|
9668
|
+
|
|
9669
|
+
decoratorNamePattern?: string
|
|
9670
|
+
|
|
9671
|
+
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
9672
|
+
|
|
9673
|
+
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
9674
|
+
|
|
9675
|
+
elementNamePattern?: string
|
|
9676
|
+
}[]
|
|
9677
|
+
} | {
|
|
9678
|
+
|
|
9679
|
+
groupName?: string
|
|
9680
|
+
|
|
9681
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9682
|
+
|
|
9683
|
+
order?: ("desc" | "asc")
|
|
9684
|
+
|
|
9685
|
+
decoratorNamePattern?: string
|
|
9686
|
+
|
|
9687
|
+
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
9688
|
+
|
|
9689
|
+
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
9690
|
+
|
|
9691
|
+
elementNamePattern?: string
|
|
9692
|
+
})[]
|
|
9693
|
+
|
|
9550
9694
|
partitionByNewLine?: boolean
|
|
9695
|
+
|
|
9696
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9697
|
+
|
|
9698
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9699
|
+
|
|
9700
|
+
ignoreCase?: boolean
|
|
9701
|
+
|
|
9702
|
+
locales?: (string | string[])
|
|
9703
|
+
|
|
9704
|
+
groups?: (string | string[])[]
|
|
9705
|
+
|
|
9706
|
+
order?: ("asc" | "desc")
|
|
9707
|
+
|
|
9708
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9551
9709
|
}]
|
|
9552
9710
|
// ----- perfectionist/sort-named-exports -----
|
|
9553
9711
|
type PerfectionistSortNamedExports = []|[{
|
|
9554
9712
|
|
|
9555
|
-
|
|
9556
|
-
|
|
9557
|
-
order?: ("asc" | "desc")
|
|
9713
|
+
partitionByComment?: (string[] | boolean | string)
|
|
9558
9714
|
|
|
9559
|
-
|
|
9715
|
+
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
9560
9716
|
|
|
9561
|
-
|
|
9717
|
+
partitionByNewLine?: boolean
|
|
9562
9718
|
|
|
9563
9719
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9564
9720
|
|
|
9565
|
-
|
|
9721
|
+
ignoreCase?: boolean
|
|
9566
9722
|
|
|
9567
|
-
|
|
9723
|
+
locales?: (string | string[])
|
|
9568
9724
|
|
|
9569
|
-
|
|
9725
|
+
order?: ("asc" | "desc")
|
|
9726
|
+
|
|
9727
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9570
9728
|
}]
|
|
9571
9729
|
// ----- perfectionist/sort-named-imports -----
|
|
9572
9730
|
type PerfectionistSortNamedImports = []|[{
|
|
9573
9731
|
|
|
9574
|
-
|
|
9732
|
+
partitionByComment?: (string[] | boolean | string)
|
|
9575
9733
|
|
|
9576
|
-
|
|
9734
|
+
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
9577
9735
|
|
|
9578
|
-
|
|
9736
|
+
ignoreAlias?: boolean
|
|
9579
9737
|
|
|
9580
|
-
|
|
9738
|
+
partitionByNewLine?: boolean
|
|
9581
9739
|
|
|
9582
9740
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9583
9741
|
|
|
9584
|
-
|
|
9742
|
+
ignoreCase?: boolean
|
|
9585
9743
|
|
|
9586
|
-
|
|
9744
|
+
locales?: (string | string[])
|
|
9587
9745
|
|
|
9588
|
-
|
|
9746
|
+
order?: ("asc" | "desc")
|
|
9589
9747
|
|
|
9590
|
-
|
|
9748
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9591
9749
|
}]
|
|
9592
9750
|
// ----- perfectionist/sort-object-types -----
|
|
9593
9751
|
type PerfectionistSortObjectTypes = []|[{
|
|
9594
9752
|
|
|
9595
|
-
|
|
9753
|
+
ignorePattern?: string[]
|
|
9596
9754
|
|
|
9597
|
-
|
|
9755
|
+
partitionByComment?: (string[] | boolean | string)
|
|
9756
|
+
customGroups?: ({
|
|
9757
|
+
[k: string]: (string | string[]) | undefined
|
|
9758
|
+
} | ({
|
|
9759
|
+
|
|
9760
|
+
groupName?: string
|
|
9761
|
+
|
|
9762
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9763
|
+
|
|
9764
|
+
order?: ("desc" | "asc")
|
|
9765
|
+
anyOf?: {
|
|
9766
|
+
|
|
9767
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9768
|
+
|
|
9769
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
9770
|
+
|
|
9771
|
+
elementNamePattern?: string
|
|
9772
|
+
}[]
|
|
9773
|
+
} | {
|
|
9774
|
+
|
|
9775
|
+
groupName?: string
|
|
9776
|
+
|
|
9777
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9778
|
+
|
|
9779
|
+
order?: ("desc" | "asc")
|
|
9780
|
+
|
|
9781
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9782
|
+
|
|
9783
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
9784
|
+
|
|
9785
|
+
elementNamePattern?: string
|
|
9786
|
+
})[])
|
|
9598
9787
|
|
|
9599
|
-
|
|
9788
|
+
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
9600
9789
|
|
|
9601
|
-
|
|
9790
|
+
partitionByNewLine?: boolean
|
|
9602
9791
|
|
|
9603
9792
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9604
9793
|
|
|
9605
|
-
|
|
9794
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9606
9795
|
|
|
9607
|
-
|
|
9796
|
+
ignoreCase?: boolean
|
|
9608
9797
|
|
|
9609
|
-
|
|
9798
|
+
locales?: (string | string[])
|
|
9610
9799
|
|
|
9611
9800
|
groups?: (string | string[])[]
|
|
9612
9801
|
|
|
9613
|
-
|
|
9614
|
-
|
|
9615
|
-
|
|
9802
|
+
order?: ("asc" | "desc")
|
|
9803
|
+
|
|
9804
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9616
9805
|
}]
|
|
9617
9806
|
// ----- perfectionist/sort-objects -----
|
|
9618
9807
|
type PerfectionistSortObjects = []|[{
|
|
9619
9808
|
|
|
9620
|
-
|
|
9621
|
-
|
|
9622
|
-
|
|
9623
|
-
|
|
9624
|
-
matcher?: ("minimatch" | "regex")
|
|
9625
|
-
|
|
9626
|
-
ignoreCase?: boolean
|
|
9809
|
+
destructuredObjects?: (boolean | {
|
|
9810
|
+
|
|
9811
|
+
groups?: boolean
|
|
9812
|
+
})
|
|
9627
9813
|
|
|
9628
|
-
|
|
9814
|
+
ignorePattern?: string[]
|
|
9629
9815
|
|
|
9630
9816
|
partitionByComment?: (string[] | boolean | string)
|
|
9631
9817
|
|
|
9632
|
-
|
|
9818
|
+
destructureOnly?: boolean
|
|
9819
|
+
|
|
9820
|
+
objectDeclarations?: boolean
|
|
9633
9821
|
|
|
9634
9822
|
styledComponents?: boolean
|
|
9635
9823
|
|
|
9636
|
-
|
|
9824
|
+
partitionByNewLine?: boolean
|
|
9637
9825
|
|
|
9638
|
-
|
|
9826
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9639
9827
|
|
|
9640
|
-
|
|
9828
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9641
9829
|
|
|
9642
9830
|
customGroups?: {
|
|
9643
9831
|
[k: string]: (string | string[]) | undefined
|
|
9644
9832
|
}
|
|
9645
|
-
}]
|
|
9646
|
-
// ----- perfectionist/sort-sets -----
|
|
9647
|
-
type PerfectionistSortSets = []|[{
|
|
9648
|
-
|
|
9649
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9650
|
-
|
|
9651
|
-
order?: ("asc" | "desc")
|
|
9652
|
-
|
|
9653
|
-
matcher?: ("minimatch" | "regex")
|
|
9654
9833
|
|
|
9655
9834
|
ignoreCase?: boolean
|
|
9656
9835
|
|
|
9657
|
-
|
|
9836
|
+
locales?: (string | string[])
|
|
9658
9837
|
|
|
9659
|
-
|
|
9838
|
+
groups?: (string | string[])[]
|
|
9660
9839
|
|
|
9661
|
-
|
|
9840
|
+
order?: ("asc" | "desc")
|
|
9662
9841
|
|
|
9663
|
-
|
|
9842
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9664
9843
|
}]
|
|
9665
|
-
// ----- perfectionist/sort-
|
|
9666
|
-
type
|
|
9844
|
+
// ----- perfectionist/sort-sets -----
|
|
9845
|
+
type PerfectionistSortSets = []|[{
|
|
9667
9846
|
|
|
9668
|
-
|
|
9847
|
+
partitionByComment?: (string[] | boolean | string)
|
|
9669
9848
|
|
|
9670
|
-
|
|
9849
|
+
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
9671
9850
|
|
|
9672
|
-
|
|
9851
|
+
partitionByNewLine?: boolean
|
|
9852
|
+
|
|
9853
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9673
9854
|
|
|
9674
9855
|
ignoreCase?: boolean
|
|
9675
9856
|
|
|
9676
|
-
|
|
9857
|
+
locales?: (string | string[])
|
|
9677
9858
|
|
|
9678
|
-
|
|
9859
|
+
order?: ("asc" | "desc")
|
|
9679
9860
|
|
|
9680
|
-
|
|
9681
|
-
[k: string]: (string | string[]) | undefined
|
|
9682
|
-
}
|
|
9861
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9683
9862
|
}]
|
|
9684
9863
|
// ----- perfectionist/sort-switch-case -----
|
|
9685
9864
|
type PerfectionistSortSwitchCase = []|[{
|
|
9686
9865
|
|
|
9687
|
-
|
|
9688
|
-
|
|
9689
|
-
order?: ("asc" | "desc")
|
|
9866
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9690
9867
|
|
|
9691
9868
|
ignoreCase?: boolean
|
|
9692
9869
|
|
|
9693
|
-
|
|
9870
|
+
locales?: (string | string[])
|
|
9871
|
+
|
|
9872
|
+
order?: ("asc" | "desc")
|
|
9873
|
+
|
|
9874
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9694
9875
|
}]
|
|
9695
9876
|
// ----- perfectionist/sort-union-types -----
|
|
9696
9877
|
type PerfectionistSortUnionTypes = []|[{
|
|
9697
9878
|
|
|
9698
|
-
|
|
9879
|
+
partitionByComment?: (string[] | boolean | string)
|
|
9699
9880
|
|
|
9700
|
-
|
|
9881
|
+
partitionByNewLine?: boolean
|
|
9882
|
+
|
|
9883
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9701
9884
|
|
|
9702
|
-
|
|
9885
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9703
9886
|
|
|
9704
9887
|
ignoreCase?: boolean
|
|
9705
9888
|
|
|
9706
|
-
|
|
9889
|
+
locales?: (string | string[])
|
|
9707
9890
|
|
|
9708
9891
|
groups?: (string | string[])[]
|
|
9709
9892
|
|
|
9710
|
-
|
|
9893
|
+
order?: ("asc" | "desc")
|
|
9711
9894
|
|
|
9712
|
-
|
|
9895
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9713
9896
|
}]
|
|
9714
9897
|
// ----- perfectionist/sort-variable-declarations -----
|
|
9715
9898
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
9716
9899
|
|
|
9717
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9718
|
-
|
|
9719
|
-
order?: ("asc" | "desc")
|
|
9720
|
-
|
|
9721
|
-
matcher?: ("minimatch" | "regex")
|
|
9722
|
-
|
|
9723
|
-
ignoreCase?: boolean
|
|
9724
|
-
|
|
9725
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9726
|
-
|
|
9727
9900
|
partitionByComment?: (string[] | boolean | string)
|
|
9728
9901
|
|
|
9729
9902
|
partitionByNewLine?: boolean
|
|
9730
|
-
}]
|
|
9731
|
-
// ----- perfectionist/sort-vue-attributes -----
|
|
9732
|
-
type PerfectionistSortVueAttributes = []|[{
|
|
9733
|
-
|
|
9734
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9735
|
-
|
|
9736
|
-
order?: ("asc" | "desc")
|
|
9737
9903
|
|
|
9738
|
-
|
|
9904
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9739
9905
|
|
|
9740
9906
|
ignoreCase?: boolean
|
|
9741
9907
|
|
|
9742
|
-
|
|
9908
|
+
locales?: (string | string[])
|
|
9743
9909
|
|
|
9744
|
-
|
|
9910
|
+
order?: ("asc" | "desc")
|
|
9745
9911
|
|
|
9746
|
-
|
|
9747
|
-
[k: string]: (string | string[]) | undefined
|
|
9748
|
-
}
|
|
9912
|
+
type?: ("alphabetical" | "natural" | "line-length")
|
|
9749
9913
|
}]
|
|
9750
9914
|
// ----- prefer-arrow-callback -----
|
|
9751
9915
|
type PreferArrowCallback = []|[{
|
|
@@ -9850,12 +10014,14 @@ type ReactNamingConventionFilename = []|[(("PascalCase" | "camelCase" | "kebab-c
|
|
|
9850
10014
|
type ReactNamingConventionFilenameExtension = []|[(("always" | "as-needed") | {
|
|
9851
10015
|
allow?: ("always" | "as-needed")
|
|
9852
10016
|
extensions?: string[]
|
|
10017
|
+
ignoreFilesWithoutCode?: boolean
|
|
9853
10018
|
})]
|
|
9854
10019
|
// ----- react-refresh/only-export-components -----
|
|
9855
10020
|
type ReactRefreshOnlyExportComponents = []|[{
|
|
10021
|
+
allowExportNames?: string[]
|
|
9856
10022
|
allowConstantExport?: boolean
|
|
10023
|
+
customHOCs?: string[]
|
|
9857
10024
|
checkJS?: boolean
|
|
9858
|
-
allowExportNames?: string[]
|
|
9859
10025
|
}]
|
|
9860
10026
|
// ----- react/no-useless-fragment -----
|
|
9861
10027
|
type ReactNoUselessFragment = []|[{
|
|
@@ -10019,6 +10185,7 @@ type SortKeys = []|[("asc" | "desc")]|[("asc" | "desc"), {
|
|
|
10019
10185
|
natural?: boolean
|
|
10020
10186
|
minKeys?: number
|
|
10021
10187
|
allowLineSeparatedGroups?: boolean
|
|
10188
|
+
ignoreComputedKeys?: boolean
|
|
10022
10189
|
}]
|
|
10023
10190
|
// ----- sort-vars -----
|
|
10024
10191
|
type SortVars = []|[{
|
|
@@ -10923,6 +11090,8 @@ type TsNoConfusingVoidExpression = []|[{
|
|
|
10923
11090
|
ignoreArrowShorthand?: boolean
|
|
10924
11091
|
|
|
10925
11092
|
ignoreVoidOperator?: boolean
|
|
11093
|
+
|
|
11094
|
+
ignoreVoidReturningFunctions?: boolean
|
|
10926
11095
|
}]
|
|
10927
11096
|
// ----- ts/no-duplicate-type-constituents -----
|
|
10928
11097
|
type TsNoDuplicateTypeConstituents = []|[{
|
|
@@ -11359,6 +11528,10 @@ type TsPreferOptionalChain = []|[{
|
|
|
11359
11528
|
type TsPreferPromiseRejectErrors = []|[{
|
|
11360
11529
|
|
|
11361
11530
|
allowEmptyReject?: boolean
|
|
11531
|
+
|
|
11532
|
+
allowThrowingAny?: boolean
|
|
11533
|
+
|
|
11534
|
+
allowThrowingUnknown?: boolean
|
|
11362
11535
|
}]
|
|
11363
11536
|
// ----- ts/prefer-readonly -----
|
|
11364
11537
|
type TsPreferReadonly = []|[{
|
|
@@ -11830,6 +12003,7 @@ type VueAttributeHyphenation = []|[("always" | "never")]|[("always" | "never"),
|
|
|
11830
12003
|
} & {
|
|
11831
12004
|
[k: string]: unknown | undefined
|
|
11832
12005
|
})[]
|
|
12006
|
+
ignoreTags?: string[]
|
|
11833
12007
|
}]
|
|
11834
12008
|
// ----- vue/attributes-order -----
|
|
11835
12009
|
type VueAttributesOrder = []|[{
|
|
@@ -12526,6 +12700,10 @@ type VueNoDeprecatedSlotAttribute = []|[{
|
|
|
12526
12700
|
type VueNoDupeKeys = []|[{
|
|
12527
12701
|
groups?: unknown[]
|
|
12528
12702
|
}]
|
|
12703
|
+
// ----- vue/no-duplicate-attr-inheritance -----
|
|
12704
|
+
type VueNoDuplicateAttrInheritance = []|[{
|
|
12705
|
+
checkMultiRootNodes?: boolean
|
|
12706
|
+
}]
|
|
12529
12707
|
// ----- vue/no-duplicate-attributes -----
|
|
12530
12708
|
type VueNoDuplicateAttributes = []|[{
|
|
12531
12709
|
allowCoexistClass?: boolean
|
|
@@ -12624,6 +12802,7 @@ type VueNoRequiredPropWithDefault = []|[{
|
|
|
12624
12802
|
type VueNoReservedComponentNames = []|[{
|
|
12625
12803
|
disallowVueBuiltInComponents?: boolean
|
|
12626
12804
|
disallowVue3BuiltInComponents?: boolean
|
|
12805
|
+
htmlElementCaseSensitive?: boolean
|
|
12627
12806
|
}]
|
|
12628
12807
|
// ----- vue/no-reserved-keys -----
|
|
12629
12808
|
type VueNoReservedKeys = []|[{
|
|
@@ -12760,6 +12939,7 @@ type VueNoUselessVBind = []|[{
|
|
|
12760
12939
|
// ----- vue/no-v-text-v-html-on-component -----
|
|
12761
12940
|
type VueNoVTextVHtmlOnComponent = []|[{
|
|
12762
12941
|
allow?: string[]
|
|
12942
|
+
ignoreElementNamespaces?: boolean
|
|
12763
12943
|
}]
|
|
12764
12944
|
// ----- vue/object-curly-newline -----
|
|
12765
12945
|
type VueObjectCurlyNewline = []|[((("always" | "never") | {
|
|
@@ -12870,6 +13050,10 @@ type VueRequirePropComment = []|[{
|
|
|
12870
13050
|
type VueRequireToggleInsideTransition = []|[{
|
|
12871
13051
|
additionalDirectives?: string[]
|
|
12872
13052
|
}]
|
|
13053
|
+
// ----- vue/restricted-component-names -----
|
|
13054
|
+
type VueRestrictedComponentNames = []|[{
|
|
13055
|
+
allow?: string[]
|
|
13056
|
+
}]
|
|
12873
13057
|
// ----- vue/return-in-computed-property -----
|
|
12874
13058
|
type VueReturnInComputedProperty = []|[{
|
|
12875
13059
|
treatUndefinedAsUnspecified?: boolean
|
|
@@ -12891,6 +13075,8 @@ type VueSinglelineHtmlElementContentNewline = []|[{
|
|
|
12891
13075
|
ignores?: string[]
|
|
12892
13076
|
externalIgnores?: string[]
|
|
12893
13077
|
}]
|
|
13078
|
+
// ----- vue/slot-name-casing -----
|
|
13079
|
+
type VueSlotNameCasing = []|[("camelCase" | "kebab-case" | "singleword")]
|
|
12894
13080
|
// ----- vue/sort-keys -----
|
|
12895
13081
|
type VueSortKeys = []|[("asc" | "desc")]|[("asc" | "desc"), {
|
|
12896
13082
|
caseSensitive?: boolean
|
|
@@ -12934,6 +13120,7 @@ type VueVOnEventHyphenation = []|[("always" | "never")]|[("always" | "never"), {
|
|
|
12934
13120
|
} & {
|
|
12935
13121
|
[k: string]: unknown | undefined
|
|
12936
13122
|
})[]
|
|
13123
|
+
ignoreTags?: string[]
|
|
12937
13124
|
}]
|
|
12938
13125
|
// ----- vue/v-on-function-call -----
|
|
12939
13126
|
type VueVOnFunctionCall = []|[("always" | "never")]|[("always" | "never"), {
|
|
@@ -13855,25 +14042,25 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
13855
14042
|
'padded-blocks'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13856
14043
|
'padding-line-between-statements'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13857
14044
|
'perfectionist/sort-array-includes'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13858
|
-
'perfectionist/sort-astro-attributes'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13859
14045
|
'perfectionist/sort-classes'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14046
|
+
'perfectionist/sort-decorators'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13860
14047
|
'perfectionist/sort-enums'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13861
14048
|
'perfectionist/sort-exports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14049
|
+
'perfectionist/sort-heritage-clauses'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13862
14050
|
'perfectionist/sort-imports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13863
14051
|
'perfectionist/sort-interfaces'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13864
14052
|
'perfectionist/sort-intersection-types'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13865
14053
|
'perfectionist/sort-jsx-props'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13866
14054
|
'perfectionist/sort-maps'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14055
|
+
'perfectionist/sort-modules'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13867
14056
|
'perfectionist/sort-named-exports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13868
14057
|
'perfectionist/sort-named-imports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13869
14058
|
'perfectionist/sort-object-types'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13870
14059
|
'perfectionist/sort-objects'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13871
14060
|
'perfectionist/sort-sets'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13872
|
-
'perfectionist/sort-svelte-attributes'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13873
14061
|
'perfectionist/sort-switch-case'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13874
14062
|
'perfectionist/sort-union-types'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13875
14063
|
'perfectionist/sort-variable-declarations'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13876
|
-
'perfectionist/sort-vue-attributes'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13877
14064
|
'prefer-arrow-callback'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13878
14065
|
'prefer-const'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13879
14066
|
'prefer-destructuring'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
@@ -14141,6 +14328,7 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14141
14328
|
'test/require-top-level-describe'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14142
14329
|
'test/valid-describe-callback'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14143
14330
|
'test/valid-expect'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14331
|
+
'test/valid-expect-in-promise'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14144
14332
|
'test/valid-title'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14145
14333
|
'ts/adjacent-overload-signatures'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14146
14334
|
'ts/array-type'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
@@ -14225,6 +14413,7 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14225
14413
|
'ts/no-unsafe-function-type'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14226
14414
|
'ts/no-unsafe-member-access'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14227
14415
|
'ts/no-unsafe-return'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14416
|
+
'ts/no-unsafe-type-assertion'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14228
14417
|
'ts/no-unsafe-unary-minus'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14229
14418
|
'ts/no-unused-expressions'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14230
14419
|
'ts/no-unused-vars'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
@@ -14256,6 +14445,7 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14256
14445
|
'ts/prefer-string-starts-ends-with'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14257
14446
|
'ts/prefer-ts-expect-error'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14258
14447
|
'ts/promise-function-async'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14448
|
+
'ts/related-getter-setter-pairs'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14259
14449
|
'ts/require-array-sort-compare'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14260
14450
|
'ts/require-await'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14261
14451
|
'ts/restrict-plus-operands'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
@@ -14508,7 +14698,7 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14508
14698
|
'vue/no-deprecated-vue-config-keycodes'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14509
14699
|
'vue/no-dupe-keys'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14510
14700
|
'vue/no-dupe-v-else-if'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14511
|
-
'vue/no-duplicate-attr-inheritance'?: eslint.Linter.RuleEntry<
|
|
14701
|
+
'vue/no-duplicate-attr-inheritance'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14512
14702
|
'vue/no-duplicate-attributes'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14513
14703
|
'vue/no-empty-component-block'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14514
14704
|
'vue/no-empty-pattern'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
@@ -14597,6 +14787,7 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14597
14787
|
'vue/prefer-separate-static-class'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14598
14788
|
'vue/prefer-template'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14599
14789
|
'vue/prefer-true-attribute-shorthand'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14790
|
+
'vue/prefer-use-template-ref'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14600
14791
|
'vue/prop-name-casing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14601
14792
|
'vue/quote-props'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14602
14793
|
'vue/require-component-is'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
@@ -14619,11 +14810,13 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14619
14810
|
'vue/require-typed-ref'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14620
14811
|
'vue/require-v-for-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14621
14812
|
'vue/require-valid-default-prop'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14813
|
+
'vue/restricted-component-names'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14622
14814
|
'vue/return-in-computed-property'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14623
14815
|
'vue/return-in-emits-validator'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14624
14816
|
'vue/script-indent'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14625
14817
|
'vue/script-setup-uses-vars'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14626
14818
|
'vue/singleline-html-element-content-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14819
|
+
'vue/slot-name-casing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14627
14820
|
'vue/sort-keys'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14628
14821
|
'vue/space-in-parens'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14629
14822
|
'vue/space-infix-ops'?: eslint.Linter.RuleEntry<undefined> | undefined;
|