@coderwyd/eslint-config 3.3.0 → 3.5.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 +15 -21
- package/dist/cli.js +15 -21
- package/dist/index.cjs +45 -35
- package/dist/index.d.cts +511 -169
- package/dist/index.d.ts +511 -169
- package/dist/index.js +44 -34
- package/package.json +37 -45
package/dist/index.d.cts
CHANGED
|
@@ -206,7 +206,7 @@ interface RuleOptions {
|
|
|
206
206
|
*/
|
|
207
207
|
'default-case'?: Linter.RuleEntry<DefaultCase>
|
|
208
208
|
/**
|
|
209
|
-
* Enforce default clauses in switch statements to be last
|
|
209
|
+
* Enforce `default` clauses in `switch` statements to be last
|
|
210
210
|
* @see https://eslint.org/docs/latest/rules/default-case-last
|
|
211
211
|
*/
|
|
212
212
|
'default-case-last'?: Linter.RuleEntry<[]>
|
|
@@ -283,7 +283,7 @@ interface RuleOptions {
|
|
|
283
283
|
*/
|
|
284
284
|
'eslint-comments/require-description'?: Linter.RuleEntry<EslintCommentsRequireDescription>
|
|
285
285
|
/**
|
|
286
|
-
* Enforce
|
|
286
|
+
* Enforce `for` loop update clause moving the counter in the right direction
|
|
287
287
|
* @see https://eslint.org/docs/latest/rules/for-direction
|
|
288
288
|
*/
|
|
289
289
|
'for-direction'?: Linter.RuleEntry<[]>
|
|
@@ -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.6.1/docs/rules/consistent-type-specifier-style.md
|
|
386
386
|
*/
|
|
387
387
|
'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
|
|
388
388
|
/**
|
|
389
389
|
* Ensure a default export is present, given a default import.
|
|
390
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
390
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/default.md
|
|
391
391
|
*/
|
|
392
392
|
'import/default'?: Linter.RuleEntry<[]>
|
|
393
393
|
/**
|
|
394
394
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
395
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
395
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/dynamic-import-chunkname.md
|
|
396
396
|
*/
|
|
397
397
|
'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
|
|
398
398
|
/**
|
|
399
399
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
400
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
400
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/export.md
|
|
401
401
|
*/
|
|
402
402
|
'import/export'?: Linter.RuleEntry<[]>
|
|
403
403
|
/**
|
|
404
404
|
* Ensure all exports appear after other statements.
|
|
405
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
405
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/exports-last.md
|
|
406
406
|
*/
|
|
407
407
|
'import/exports-last'?: Linter.RuleEntry<[]>
|
|
408
408
|
/**
|
|
409
409
|
* Ensure consistent use of file extension within the import path.
|
|
410
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
410
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/extensions.md
|
|
411
411
|
*/
|
|
412
412
|
'import/extensions'?: Linter.RuleEntry<ImportExtensions>
|
|
413
413
|
/**
|
|
414
414
|
* Ensure all imports appear before other statements.
|
|
415
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
415
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/first.md
|
|
416
416
|
*/
|
|
417
417
|
'import/first'?: Linter.RuleEntry<ImportFirst>
|
|
418
418
|
/**
|
|
419
419
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
420
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
420
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/group-exports.md
|
|
421
421
|
*/
|
|
422
422
|
'import/group-exports'?: Linter.RuleEntry<[]>
|
|
423
423
|
/**
|
|
424
424
|
* Replaced by `import-x/first`.
|
|
425
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
425
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/imports-first.md
|
|
426
426
|
* @deprecated
|
|
427
427
|
*/
|
|
428
428
|
'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
|
|
429
429
|
/**
|
|
430
430
|
* Enforce the maximum number of dependencies a module can have.
|
|
431
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
431
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/max-dependencies.md
|
|
432
432
|
*/
|
|
433
433
|
'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
|
|
434
434
|
/**
|
|
435
435
|
* Ensure named imports correspond to a named export in the remote file.
|
|
436
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
436
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/named.md
|
|
437
437
|
*/
|
|
438
438
|
'import/named'?: Linter.RuleEntry<ImportNamed>
|
|
439
439
|
/**
|
|
440
440
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
441
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
441
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/namespace.md
|
|
442
442
|
*/
|
|
443
443
|
'import/namespace'?: Linter.RuleEntry<ImportNamespace>
|
|
444
444
|
/**
|
|
445
445
|
* Enforce a newline after import statements.
|
|
446
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
446
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/newline-after-import.md
|
|
447
447
|
*/
|
|
448
448
|
'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
|
|
449
449
|
/**
|
|
450
450
|
* Forbid import of modules using absolute paths.
|
|
451
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
451
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-absolute-path.md
|
|
452
452
|
*/
|
|
453
453
|
'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
|
|
454
454
|
/**
|
|
455
455
|
* Forbid AMD `require` and `define` calls.
|
|
456
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
456
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-amd.md
|
|
457
457
|
*/
|
|
458
458
|
'import/no-amd'?: Linter.RuleEntry<[]>
|
|
459
459
|
/**
|
|
460
460
|
* Forbid anonymous values as default exports.
|
|
461
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
461
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-anonymous-default-export.md
|
|
462
462
|
*/
|
|
463
463
|
'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
|
|
464
464
|
/**
|
|
465
465
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
466
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
466
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-commonjs.md
|
|
467
467
|
*/
|
|
468
468
|
'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
|
|
469
469
|
/**
|
|
470
470
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
471
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
471
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-cycle.md
|
|
472
472
|
*/
|
|
473
473
|
'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
|
|
474
474
|
/**
|
|
475
475
|
* Forbid default exports.
|
|
476
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
476
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-default-export.md
|
|
477
477
|
*/
|
|
478
478
|
'import/no-default-export'?: Linter.RuleEntry<[]>
|
|
479
479
|
/**
|
|
480
480
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
481
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
481
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-deprecated.md
|
|
482
482
|
*/
|
|
483
483
|
'import/no-deprecated'?: Linter.RuleEntry<[]>
|
|
484
484
|
/**
|
|
485
485
|
* Forbid repeated import of the same module in multiple places.
|
|
486
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
486
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-duplicates.md
|
|
487
487
|
*/
|
|
488
488
|
'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
|
|
489
489
|
/**
|
|
490
490
|
* Forbid `require()` calls with expressions.
|
|
491
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
491
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-dynamic-require.md
|
|
492
492
|
*/
|
|
493
493
|
'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
|
|
494
494
|
/**
|
|
495
495
|
* Forbid empty named import blocks.
|
|
496
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
496
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-empty-named-blocks.md
|
|
497
497
|
*/
|
|
498
498
|
'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
499
499
|
/**
|
|
500
500
|
* Forbid the use of extraneous packages.
|
|
501
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
501
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-extraneous-dependencies.md
|
|
502
502
|
*/
|
|
503
503
|
'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
|
|
504
504
|
/**
|
|
505
505
|
* Forbid import statements with CommonJS module.exports.
|
|
506
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
506
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-import-module-exports.md
|
|
507
507
|
*/
|
|
508
508
|
'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
|
|
509
509
|
/**
|
|
510
510
|
* Forbid importing the submodules of other modules.
|
|
511
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
511
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-internal-modules.md
|
|
512
512
|
*/
|
|
513
513
|
'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
|
|
514
514
|
/**
|
|
515
515
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
516
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
516
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-mutable-exports.md
|
|
517
517
|
*/
|
|
518
518
|
'import/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
519
519
|
/**
|
|
520
520
|
* Forbid use of exported name as identifier of default export.
|
|
521
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
521
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-as-default.md
|
|
522
522
|
*/
|
|
523
523
|
'import/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
524
524
|
/**
|
|
525
525
|
* Forbid use of exported name as property of default export.
|
|
526
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
526
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-as-default-member.md
|
|
527
527
|
*/
|
|
528
528
|
'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
529
529
|
/**
|
|
530
530
|
* Forbid named default exports.
|
|
531
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
531
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-default.md
|
|
532
532
|
*/
|
|
533
533
|
'import/no-named-default'?: Linter.RuleEntry<[]>
|
|
534
534
|
/**
|
|
535
535
|
* Forbid named exports.
|
|
536
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
536
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-export.md
|
|
537
537
|
*/
|
|
538
538
|
'import/no-named-export'?: Linter.RuleEntry<[]>
|
|
539
539
|
/**
|
|
540
540
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
541
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
541
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-namespace.md
|
|
542
542
|
*/
|
|
543
543
|
'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
|
|
544
544
|
/**
|
|
545
545
|
* Forbid Node.js builtin modules.
|
|
546
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
546
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-nodejs-modules.md
|
|
547
547
|
*/
|
|
548
548
|
'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
|
|
549
549
|
/**
|
|
550
550
|
* Forbid importing packages through relative paths.
|
|
551
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
551
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-relative-packages.md
|
|
552
552
|
*/
|
|
553
553
|
'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
|
|
554
554
|
/**
|
|
555
555
|
* Forbid importing modules from parent directories.
|
|
556
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
556
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-relative-parent-imports.md
|
|
557
557
|
*/
|
|
558
558
|
'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
|
|
559
559
|
/**
|
|
560
560
|
* Forbid importing a default export by a different name.
|
|
561
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
561
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-rename-default.md
|
|
562
562
|
*/
|
|
563
563
|
'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
|
|
564
564
|
/**
|
|
565
565
|
* Enforce which files can be imported in a given folder.
|
|
566
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
566
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-restricted-paths.md
|
|
567
567
|
*/
|
|
568
568
|
'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
|
|
569
569
|
/**
|
|
570
570
|
* Forbid a module from importing itself.
|
|
571
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
571
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-self-import.md
|
|
572
572
|
*/
|
|
573
573
|
'import/no-self-import'?: Linter.RuleEntry<[]>
|
|
574
574
|
/**
|
|
575
575
|
* Forbid unassigned imports.
|
|
576
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
576
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unassigned-import.md
|
|
577
577
|
*/
|
|
578
578
|
'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
|
|
579
579
|
/**
|
|
580
580
|
* Ensure imports point to a file/module that can be resolved.
|
|
581
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
581
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unresolved.md
|
|
582
582
|
*/
|
|
583
583
|
'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
|
|
584
584
|
/**
|
|
585
585
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
586
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
586
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unused-modules.md
|
|
587
587
|
*/
|
|
588
588
|
'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
|
|
589
589
|
/**
|
|
590
590
|
* Forbid unnecessary path segments in import and require statements.
|
|
591
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
591
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-useless-path-segments.md
|
|
592
592
|
*/
|
|
593
593
|
'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
|
|
594
594
|
/**
|
|
595
595
|
* Forbid webpack loader syntax in imports.
|
|
596
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
596
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-webpack-loader-syntax.md
|
|
597
597
|
*/
|
|
598
598
|
'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
599
599
|
/**
|
|
600
600
|
* Enforce a convention in module import order.
|
|
601
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
601
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/order.md
|
|
602
602
|
*/
|
|
603
603
|
'import/order'?: Linter.RuleEntry<ImportOrder>
|
|
604
604
|
/**
|
|
605
605
|
* Prefer a default export if module exports a single name or multiple names.
|
|
606
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
606
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/prefer-default-export.md
|
|
607
607
|
*/
|
|
608
608
|
'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
|
|
609
609
|
/**
|
|
610
610
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
611
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
611
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/unambiguous.md
|
|
612
612
|
*/
|
|
613
613
|
'import/unambiguous'?: Linter.RuleEntry<[]>
|
|
614
614
|
/**
|
|
@@ -1736,7 +1736,7 @@ interface RuleOptions {
|
|
|
1736
1736
|
*/
|
|
1737
1737
|
'no-octal-escape'?: Linter.RuleEntry<[]>
|
|
1738
1738
|
/**
|
|
1739
|
-
* Disallow reassigning
|
|
1739
|
+
* Disallow reassigning function parameters
|
|
1740
1740
|
* @see https://eslint.org/docs/latest/rules/no-param-reassign
|
|
1741
1741
|
*/
|
|
1742
1742
|
'no-param-reassign'?: Linter.RuleEntry<NoParamReassign>
|
|
@@ -1831,7 +1831,7 @@ interface RuleOptions {
|
|
|
1831
1831
|
*/
|
|
1832
1832
|
'no-return-await'?: Linter.RuleEntry<[]>
|
|
1833
1833
|
/**
|
|
1834
|
-
* Disallow `javascript:`
|
|
1834
|
+
* Disallow `javascript:` URLs
|
|
1835
1835
|
* @see https://eslint.org/docs/latest/rules/no-script-url
|
|
1836
1836
|
*/
|
|
1837
1837
|
'no-script-url'?: Linter.RuleEntry<[]>
|
|
@@ -2476,7 +2476,7 @@ interface RuleOptions {
|
|
|
2476
2476
|
*/
|
|
2477
2477
|
'prefer-object-has-own'?: Linter.RuleEntry<[]>
|
|
2478
2478
|
/**
|
|
2479
|
-
* Disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead
|
|
2479
|
+
* Disallow using `Object.assign` with an object literal as the first argument and prefer the use of object spread instead
|
|
2480
2480
|
* @see https://eslint.org/docs/latest/rules/prefer-object-spread
|
|
2481
2481
|
*/
|
|
2482
2482
|
'prefer-object-spread'?: Linter.RuleEntry<[]>
|
|
@@ -2511,10 +2511,6 @@ interface RuleOptions {
|
|
|
2511
2511
|
* @see https://eslint.org/docs/latest/rules/prefer-template
|
|
2512
2512
|
*/
|
|
2513
2513
|
'prefer-template'?: Linter.RuleEntry<[]>
|
|
2514
|
-
/**
|
|
2515
|
-
* @see https://github.com/prettier/eslint-plugin-prettier#options
|
|
2516
|
-
*/
|
|
2517
|
-
'prettier/prettier'?: Linter.RuleEntry<PrettierPrettier>
|
|
2518
2514
|
/**
|
|
2519
2515
|
* Require quotes around object literal property names
|
|
2520
2516
|
* @see https://eslint.org/docs/latest/rules/quote-props
|
|
@@ -2533,8 +2529,8 @@ interface RuleOptions {
|
|
|
2533
2529
|
*/
|
|
2534
2530
|
'radix'?: Linter.RuleEntry<Radix>
|
|
2535
2531
|
/**
|
|
2536
|
-
* disallow
|
|
2537
|
-
* @see https://eslint-react.xyz/docs/rules/dom-no-
|
|
2532
|
+
* disallow void elements (AKA self-closing elements) from having children
|
|
2533
|
+
* @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
|
|
2538
2534
|
*/
|
|
2539
2535
|
'react-dom/no-children-in-void-dom-elements'?: Linter.RuleEntry<[]>
|
|
2540
2536
|
/**
|
|
@@ -2593,10 +2589,20 @@ interface RuleOptions {
|
|
|
2593
2589
|
*/
|
|
2594
2590
|
'react-dom/no-unsafe-target-blank'?: Linter.RuleEntry<[]>
|
|
2595
2591
|
/**
|
|
2596
|
-
*
|
|
2597
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
2592
|
+
* disallow void elements (AKA self-closing elements) from having children
|
|
2593
|
+
* @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
|
|
2594
|
+
*/
|
|
2595
|
+
'react-dom/no-void-elements-with-children'?: Linter.RuleEntry<[]>
|
|
2596
|
+
/**
|
|
2597
|
+
* enforce custom Hooks to use at least one other hook inside
|
|
2598
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-useless-custom-hooks
|
|
2598
2599
|
*/
|
|
2599
2600
|
'react-hooks-extra/ensure-custom-hooks-using-other-hooks'?: Linter.RuleEntry<[]>
|
|
2601
|
+
/**
|
|
2602
|
+
* disallow unnecessary usage of 'useCallback'
|
|
2603
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-callback
|
|
2604
|
+
*/
|
|
2605
|
+
'react-hooks-extra/ensure-use-callback-has-non-empty-deps'?: Linter.RuleEntry<[]>
|
|
2600
2606
|
/**
|
|
2601
2607
|
* disallow unnecessary usage of 'useMemo'
|
|
2602
2608
|
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
|
|
@@ -2613,8 +2619,8 @@ interface RuleOptions {
|
|
|
2613
2619
|
*/
|
|
2614
2620
|
'react-hooks-extra/no-direct-set-state-in-use-layout-effect'?: Linter.RuleEntry<[]>
|
|
2615
2621
|
/**
|
|
2616
|
-
* enforce custom
|
|
2617
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-
|
|
2622
|
+
* enforce custom Hooks to use at least one other hook inside
|
|
2623
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-useless-custom-hooks
|
|
2618
2624
|
*/
|
|
2619
2625
|
'react-hooks-extra/no-redundant-custom-hook'?: Linter.RuleEntry<[]>
|
|
2620
2626
|
/**
|
|
@@ -2627,6 +2633,11 @@ interface RuleOptions {
|
|
|
2627
2633
|
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
|
|
2628
2634
|
*/
|
|
2629
2635
|
'react-hooks-extra/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>
|
|
2636
|
+
/**
|
|
2637
|
+
* enforce custom Hooks to use at least one other hook inside
|
|
2638
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-useless-custom-hooks
|
|
2639
|
+
*/
|
|
2640
|
+
'react-hooks-extra/no-useless-custom-hooks'?: Linter.RuleEntry<[]>
|
|
2630
2641
|
/**
|
|
2631
2642
|
* disallow function calls in 'useState' that aren't wrapped in an initializer function
|
|
2632
2643
|
* @see https://eslint-react.xyz/docs/rules/hooks-extra-prefer-use-state-lazy-initialization
|
|
@@ -2680,12 +2691,12 @@ interface RuleOptions {
|
|
|
2680
2691
|
'react/ensure-forward-ref-using-ref'?: Linter.RuleEntry<[]>
|
|
2681
2692
|
/**
|
|
2682
2693
|
* disallow duplicate props
|
|
2683
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
2694
|
+
* @see https://eslint-react.xyz/docs/rules/no-duplicate-jsx-props
|
|
2684
2695
|
*/
|
|
2685
2696
|
'react/jsx-no-duplicate-props'?: Linter.RuleEntry<[]>
|
|
2686
2697
|
/**
|
|
2687
|
-
*
|
|
2688
|
-
* @see https://eslint-react.xyz/docs/rules/jsx-
|
|
2698
|
+
* helpes `eslint/no-unused-vars` to correctly mark JSX variables as used.
|
|
2699
|
+
* @see https://eslint-react.xyz/docs/rules/use-jsx-vars
|
|
2689
2700
|
*/
|
|
2690
2701
|
'react/jsx-uses-vars'?: Linter.RuleEntry<[]>
|
|
2691
2702
|
/**
|
|
@@ -2768,6 +2779,11 @@ interface RuleOptions {
|
|
|
2768
2779
|
* @see https://eslint-react.xyz/docs/rules/no-component-will-update
|
|
2769
2780
|
*/
|
|
2770
2781
|
'react/no-component-will-update'?: Linter.RuleEntry<[]>
|
|
2782
|
+
/**
|
|
2783
|
+
* disallow the use of '<Context.Provider>'
|
|
2784
|
+
* @see https://eslint-react.xyz/docs/rules/no-context-provider
|
|
2785
|
+
*/
|
|
2786
|
+
'react/no-context-provider'?: Linter.RuleEntry<[]>
|
|
2771
2787
|
/**
|
|
2772
2788
|
* disallow using 'createRef' in function components
|
|
2773
2789
|
* @see https://eslint-react.xyz/docs/rules/no-create-ref
|
|
@@ -2783,11 +2799,21 @@ interface RuleOptions {
|
|
|
2783
2799
|
* @see https://eslint-react.xyz/docs/rules/no-direct-mutation-state
|
|
2784
2800
|
*/
|
|
2785
2801
|
'react/no-direct-mutation-state'?: Linter.RuleEntry<[]>
|
|
2802
|
+
/**
|
|
2803
|
+
* disallow duplicate props
|
|
2804
|
+
* @see https://eslint-react.xyz/docs/rules/no-duplicate-jsx-props
|
|
2805
|
+
*/
|
|
2806
|
+
'react/no-duplicate-jsx-props'?: Linter.RuleEntry<[]>
|
|
2786
2807
|
/**
|
|
2787
2808
|
* disallow duplicate keys when rendering list
|
|
2788
2809
|
* @see https://eslint-react.xyz/docs/rules/no-duplicate-key
|
|
2789
2810
|
*/
|
|
2790
2811
|
'react/no-duplicate-key'?: Linter.RuleEntry<[]>
|
|
2812
|
+
/**
|
|
2813
|
+
* disallow the use of 'forwardRef'
|
|
2814
|
+
* @see https://eslint-react.xyz/docs/rules/no-forward-ref
|
|
2815
|
+
*/
|
|
2816
|
+
'react/no-forward-ref'?: Linter.RuleEntry<[]>
|
|
2791
2817
|
/**
|
|
2792
2818
|
* disallow implicit 'key' props
|
|
2793
2819
|
* @see https://eslint-react.xyz/docs/rules/no-implicit-key
|
|
@@ -2908,6 +2934,11 @@ interface RuleOptions {
|
|
|
2908
2934
|
* @see https://eslint-react.xyz/docs/rules/prefer-shorthand-fragment
|
|
2909
2935
|
*/
|
|
2910
2936
|
'react/prefer-shorthand-fragment'?: Linter.RuleEntry<[]>
|
|
2937
|
+
/**
|
|
2938
|
+
* helpes `eslint/no-unused-vars` to correctly mark JSX variables as used.
|
|
2939
|
+
* @see https://eslint-react.xyz/docs/rules/use-jsx-vars
|
|
2940
|
+
*/
|
|
2941
|
+
'react/use-jsx-vars'?: Linter.RuleEntry<[]>
|
|
2911
2942
|
/**
|
|
2912
2943
|
* disallow confusing quantifiers
|
|
2913
2944
|
* @see https://ota-meshi.github.io/eslint-plugin-regexp/rules/confusing-quantifier.html
|
|
@@ -3329,7 +3360,7 @@ interface RuleOptions {
|
|
|
3329
3360
|
*/
|
|
3330
3361
|
'require-await'?: Linter.RuleEntry<[]>
|
|
3331
3362
|
/**
|
|
3332
|
-
* Enforce the use of `u` or `v` flag on
|
|
3363
|
+
* Enforce the use of `u` or `v` flag on regular expressions
|
|
3333
3364
|
* @see https://eslint.org/docs/latest/rules/require-unicode-regexp
|
|
3334
3365
|
*/
|
|
3335
3366
|
'require-unicode-regexp'?: Linter.RuleEntry<RequireUnicodeRegexp>
|
|
@@ -3363,7 +3394,7 @@ interface RuleOptions {
|
|
|
3363
3394
|
*/
|
|
3364
3395
|
'semi-style'?: Linter.RuleEntry<SemiStyle>
|
|
3365
3396
|
/**
|
|
3366
|
-
* Enforce sorted import declarations within modules
|
|
3397
|
+
* Enforce sorted `import` declarations within modules
|
|
3367
3398
|
* @see https://eslint.org/docs/latest/rules/sort-imports
|
|
3368
3399
|
*/
|
|
3369
3400
|
'sort-imports'?: Linter.RuleEntry<SortImports>
|
|
@@ -3974,7 +4005,7 @@ interface RuleOptions {
|
|
|
3974
4005
|
*/
|
|
3975
4006
|
'test/padding-around-expect-groups'?: Linter.RuleEntry<[]>
|
|
3976
4007
|
/**
|
|
3977
|
-
* Enforce padding around
|
|
4008
|
+
* Enforce padding around `test` blocks
|
|
3978
4009
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-test-blocks.md
|
|
3979
4010
|
*/
|
|
3980
4011
|
'test/padding-around-test-blocks'?: Linter.RuleEntry<[]>
|
|
@@ -4079,7 +4110,7 @@ interface RuleOptions {
|
|
|
4079
4110
|
*/
|
|
4080
4111
|
'test/prefer-todo'?: Linter.RuleEntry<[]>
|
|
4081
4112
|
/**
|
|
4082
|
-
*
|
|
4113
|
+
* require `vi.mocked()` over `fn as Mock`
|
|
4083
4114
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-vi-mocked.md
|
|
4084
4115
|
*/
|
|
4085
4116
|
'test/prefer-vi-mocked'?: Linter.RuleEntry<[]>
|
|
@@ -4114,7 +4145,7 @@ interface RuleOptions {
|
|
|
4114
4145
|
*/
|
|
4115
4146
|
'test/valid-expect'?: Linter.RuleEntry<TestValidExpect>
|
|
4116
4147
|
/**
|
|
4117
|
-
*
|
|
4148
|
+
* require promises that have expectations in their chain to be valid
|
|
4118
4149
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-expect-in-promise.md
|
|
4119
4150
|
*/
|
|
4120
4151
|
'test/valid-expect-in-promise'?: Linter.RuleEntry<[]>
|
|
@@ -4272,7 +4303,7 @@ interface RuleOptions {
|
|
|
4272
4303
|
* Disallow using code marked as `@deprecated`
|
|
4273
4304
|
* @see https://typescript-eslint.io/rules/no-deprecated
|
|
4274
4305
|
*/
|
|
4275
|
-
'ts/no-deprecated'?: Linter.RuleEntry<
|
|
4306
|
+
'ts/no-deprecated'?: Linter.RuleEntry<TsNoDeprecated>
|
|
4276
4307
|
/**
|
|
4277
4308
|
* Disallow duplicate class members
|
|
4278
4309
|
* @see https://typescript-eslint.io/rules/no-dupe-class-members
|
|
@@ -4390,6 +4421,11 @@ interface RuleOptions {
|
|
|
4390
4421
|
* @see https://typescript-eslint.io/rules/no-misused-promises
|
|
4391
4422
|
*/
|
|
4392
4423
|
'ts/no-misused-promises'?: Linter.RuleEntry<TsNoMisusedPromises>
|
|
4424
|
+
/**
|
|
4425
|
+
* Disallow using the spread operator when it might cause unexpected behavior
|
|
4426
|
+
* @see https://typescript-eslint.io/rules/no-misused-spread
|
|
4427
|
+
*/
|
|
4428
|
+
'ts/no-misused-spread'?: Linter.RuleEntry<TsNoMisusedSpread>
|
|
4393
4429
|
/**
|
|
4394
4430
|
* Disallow enums from having both number and string members
|
|
4395
4431
|
* @see https://typescript-eslint.io/rules/no-mixed-enums
|
|
@@ -4588,7 +4624,7 @@ interface RuleOptions {
|
|
|
4588
4624
|
*/
|
|
4589
4625
|
'ts/no-wrapper-object-types'?: Linter.RuleEntry<[]>
|
|
4590
4626
|
/**
|
|
4591
|
-
* Enforce non-null assertions over explicit type
|
|
4627
|
+
* Enforce non-null assertions over explicit type assertions
|
|
4592
4628
|
* @see https://typescript-eslint.io/rules/non-nullable-type-assertion-style
|
|
4593
4629
|
*/
|
|
4594
4630
|
'ts/non-nullable-type-assertion-style'?: Linter.RuleEntry<[]>
|
|
@@ -4673,7 +4709,7 @@ interface RuleOptions {
|
|
|
4673
4709
|
*/
|
|
4674
4710
|
'ts/prefer-readonly-parameter-types'?: Linter.RuleEntry<TsPreferReadonlyParameterTypes>
|
|
4675
4711
|
/**
|
|
4676
|
-
* Enforce using type parameter when calling `Array#reduce` instead of
|
|
4712
|
+
* Enforce using type parameter when calling `Array#reduce` instead of using a type assertion
|
|
4677
4713
|
* @see https://typescript-eslint.io/rules/prefer-reduce-type-parameter
|
|
4678
4714
|
*/
|
|
4679
4715
|
'ts/prefer-reduce-type-parameter'?: Linter.RuleEntry<[]>
|
|
@@ -9027,6 +9063,9 @@ type NodeNoExtraneousImport = []|[{
|
|
|
9027
9063
|
replace: [string, string]
|
|
9028
9064
|
})[]])
|
|
9029
9065
|
resolvePaths?: string[]
|
|
9066
|
+
resolverConfig?: {
|
|
9067
|
+
[k: string]: unknown | undefined
|
|
9068
|
+
}
|
|
9030
9069
|
}]
|
|
9031
9070
|
// ----- node/no-extraneous-require -----
|
|
9032
9071
|
type NodeNoExtraneousRequire = []|[{
|
|
@@ -9048,6 +9087,9 @@ type NodeNoExtraneousRequire = []|[{
|
|
|
9048
9087
|
replace: [string, string]
|
|
9049
9088
|
})[]])
|
|
9050
9089
|
resolvePaths?: string[]
|
|
9090
|
+
resolverConfig?: {
|
|
9091
|
+
[k: string]: unknown | undefined
|
|
9092
|
+
}
|
|
9051
9093
|
tryExtensions?: string[]
|
|
9052
9094
|
}]
|
|
9053
9095
|
// ----- node/no-hide-core-modules -----
|
|
@@ -9060,6 +9102,9 @@ type NodeNoHideCoreModules = []|[{
|
|
|
9060
9102
|
type NodeNoMissingImport = []|[{
|
|
9061
9103
|
allowModules?: string[]
|
|
9062
9104
|
resolvePaths?: string[]
|
|
9105
|
+
resolverConfig?: {
|
|
9106
|
+
[k: string]: unknown | undefined
|
|
9107
|
+
}
|
|
9063
9108
|
tryExtensions?: string[]
|
|
9064
9109
|
ignoreTypeImport?: boolean
|
|
9065
9110
|
tsconfigPath?: string
|
|
@@ -9070,6 +9115,9 @@ type NodeNoMissingRequire = []|[{
|
|
|
9070
9115
|
allowModules?: string[]
|
|
9071
9116
|
tryExtensions?: string[]
|
|
9072
9117
|
resolvePaths?: string[]
|
|
9118
|
+
resolverConfig?: {
|
|
9119
|
+
[k: string]: unknown | undefined
|
|
9120
|
+
}
|
|
9073
9121
|
typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
|
|
9074
9122
|
tsconfigPath?: string
|
|
9075
9123
|
}]
|
|
@@ -9137,6 +9185,9 @@ type NodeNoUnpublishedImport = []|[{
|
|
|
9137
9185
|
replace: [string, string]
|
|
9138
9186
|
})[]])
|
|
9139
9187
|
resolvePaths?: string[]
|
|
9188
|
+
resolverConfig?: {
|
|
9189
|
+
[k: string]: unknown | undefined
|
|
9190
|
+
}
|
|
9140
9191
|
ignoreTypeImport?: boolean
|
|
9141
9192
|
ignorePrivate?: boolean
|
|
9142
9193
|
}]
|
|
@@ -9160,6 +9211,9 @@ type NodeNoUnpublishedRequire = []|[{
|
|
|
9160
9211
|
replace: [string, string]
|
|
9161
9212
|
})[]])
|
|
9162
9213
|
resolvePaths?: string[]
|
|
9214
|
+
resolverConfig?: {
|
|
9215
|
+
[k: string]: unknown | undefined
|
|
9216
|
+
}
|
|
9163
9217
|
tryExtensions?: string[]
|
|
9164
9218
|
ignorePrivate?: boolean
|
|
9165
9219
|
}]
|
|
@@ -9177,7 +9231,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
9177
9231
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
9178
9232
|
version?: string
|
|
9179
9233
|
allowExperimental?: boolean
|
|
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")[]
|
|
9234
|
+
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.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "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" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "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")[]
|
|
9181
9235
|
}]
|
|
9182
9236
|
// ----- node/prefer-global/buffer -----
|
|
9183
9237
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -9318,30 +9372,79 @@ type PaddingLineBetweenStatements = {
|
|
|
9318
9372
|
next: _PaddingLineBetweenStatementsStatementType
|
|
9319
9373
|
}[]
|
|
9320
9374
|
// ----- perfectionist/sort-array-includes -----
|
|
9321
|
-
type PerfectionistSortArrayIncludes =
|
|
9375
|
+
type PerfectionistSortArrayIncludes = {
|
|
9322
9376
|
|
|
9323
|
-
partitionByComment?: (string[] | boolean | string
|
|
9377
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9378
|
+
block?: (string[] | boolean | string)
|
|
9379
|
+
line?: (string[] | boolean | string)
|
|
9380
|
+
[k: string]: unknown | undefined
|
|
9381
|
+
})
|
|
9324
9382
|
|
|
9325
9383
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
9326
9384
|
|
|
9385
|
+
customGroups?: ({
|
|
9386
|
+
|
|
9387
|
+
groupName?: string
|
|
9388
|
+
|
|
9389
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9390
|
+
|
|
9391
|
+
order?: ("desc" | "asc")
|
|
9392
|
+
|
|
9393
|
+
newlinesInside?: ("always" | "never")
|
|
9394
|
+
anyOf?: {
|
|
9395
|
+
|
|
9396
|
+
selector?: ("literal" | "spread")
|
|
9397
|
+
|
|
9398
|
+
elementNamePattern?: string
|
|
9399
|
+
}[]
|
|
9400
|
+
} | {
|
|
9401
|
+
|
|
9402
|
+
groupName?: string
|
|
9403
|
+
|
|
9404
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9405
|
+
|
|
9406
|
+
order?: ("desc" | "asc")
|
|
9407
|
+
|
|
9408
|
+
newlinesInside?: ("always" | "never")
|
|
9409
|
+
|
|
9410
|
+
selector?: ("literal" | "spread")
|
|
9411
|
+
|
|
9412
|
+
elementNamePattern?: string
|
|
9413
|
+
})[]
|
|
9414
|
+
useConfigurationIf?: {
|
|
9415
|
+
allNamesMatchPattern?: string
|
|
9416
|
+
}
|
|
9417
|
+
|
|
9418
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9419
|
+
|
|
9327
9420
|
partitionByNewLine?: boolean
|
|
9328
9421
|
|
|
9329
9422
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9330
9423
|
|
|
9331
9424
|
ignoreCase?: boolean
|
|
9332
9425
|
|
|
9426
|
+
alphabet?: string
|
|
9427
|
+
|
|
9333
9428
|
locales?: (string | string[])
|
|
9334
9429
|
|
|
9335
|
-
|
|
9430
|
+
groups?: (string | string[] | {
|
|
9431
|
+
|
|
9432
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9433
|
+
[k: string]: unknown | undefined
|
|
9434
|
+
})[]
|
|
9336
9435
|
|
|
9337
|
-
|
|
9338
|
-
}]
|
|
9436
|
+
order?: ("asc" | "desc")
|
|
9437
|
+
}[]
|
|
9339
9438
|
// ----- perfectionist/sort-classes -----
|
|
9340
9439
|
type PerfectionistSortClasses = []|[{
|
|
9341
9440
|
|
|
9342
9441
|
ignoreCallbackDependenciesPatterns?: string[]
|
|
9343
9442
|
|
|
9344
|
-
partitionByComment?: (string[] | boolean | string
|
|
9443
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9444
|
+
block?: (string[] | boolean | string)
|
|
9445
|
+
line?: (string[] | boolean | string)
|
|
9446
|
+
[k: string]: unknown | undefined
|
|
9447
|
+
})
|
|
9345
9448
|
|
|
9346
9449
|
customGroups?: ({
|
|
9347
9450
|
|
|
@@ -9350,6 +9453,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
9350
9453
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9351
9454
|
|
|
9352
9455
|
order?: ("desc" | "asc")
|
|
9456
|
+
|
|
9457
|
+
newlinesInside?: ("always" | "never")
|
|
9353
9458
|
anyOf?: {
|
|
9354
9459
|
|
|
9355
9460
|
elementValuePattern?: string
|
|
@@ -9370,6 +9475,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
9370
9475
|
|
|
9371
9476
|
order?: ("desc" | "asc")
|
|
9372
9477
|
|
|
9478
|
+
newlinesInside?: ("always" | "never")
|
|
9479
|
+
|
|
9373
9480
|
elementValuePattern?: string
|
|
9374
9481
|
|
|
9375
9482
|
decoratorNamePattern?: string
|
|
@@ -9389,18 +9496,28 @@ type PerfectionistSortClasses = []|[{
|
|
|
9389
9496
|
|
|
9390
9497
|
ignoreCase?: boolean
|
|
9391
9498
|
|
|
9499
|
+
alphabet?: string
|
|
9500
|
+
|
|
9501
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9502
|
+
|
|
9392
9503
|
locales?: (string | string[])
|
|
9393
9504
|
|
|
9394
|
-
groups?: (string | string[]
|
|
9505
|
+
groups?: (string | string[] | {
|
|
9506
|
+
|
|
9507
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9508
|
+
[k: string]: unknown | undefined
|
|
9509
|
+
})[]
|
|
9395
9510
|
|
|
9396
9511
|
order?: ("asc" | "desc")
|
|
9397
|
-
|
|
9398
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9399
9512
|
}]
|
|
9400
9513
|
// ----- perfectionist/sort-decorators -----
|
|
9401
9514
|
type PerfectionistSortDecorators = []|[{
|
|
9402
9515
|
|
|
9403
|
-
partitionByComment?: (string[] | boolean | string
|
|
9516
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9517
|
+
block?: (string[] | boolean | string)
|
|
9518
|
+
line?: (string[] | boolean | string)
|
|
9519
|
+
[k: string]: unknown | undefined
|
|
9520
|
+
})
|
|
9404
9521
|
|
|
9405
9522
|
sortOnParameters?: boolean
|
|
9406
9523
|
|
|
@@ -9420,18 +9537,28 @@ type PerfectionistSortDecorators = []|[{
|
|
|
9420
9537
|
|
|
9421
9538
|
ignoreCase?: boolean
|
|
9422
9539
|
|
|
9540
|
+
alphabet?: string
|
|
9541
|
+
|
|
9542
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9543
|
+
|
|
9423
9544
|
locales?: (string | string[])
|
|
9424
9545
|
|
|
9425
|
-
groups?: (string | string[]
|
|
9546
|
+
groups?: (string | string[] | {
|
|
9547
|
+
|
|
9548
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9549
|
+
[k: string]: unknown | undefined
|
|
9550
|
+
})[]
|
|
9426
9551
|
|
|
9427
9552
|
order?: ("asc" | "desc")
|
|
9428
|
-
|
|
9429
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9430
9553
|
}]
|
|
9431
9554
|
// ----- perfectionist/sort-enums -----
|
|
9432
9555
|
type PerfectionistSortEnums = []|[{
|
|
9433
9556
|
|
|
9434
|
-
partitionByComment?: (string[] | boolean | string
|
|
9557
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9558
|
+
block?: (string[] | boolean | string)
|
|
9559
|
+
line?: (string[] | boolean | string)
|
|
9560
|
+
[k: string]: unknown | undefined
|
|
9561
|
+
})
|
|
9435
9562
|
|
|
9436
9563
|
forceNumericSort?: boolean
|
|
9437
9564
|
|
|
@@ -9443,16 +9570,22 @@ type PerfectionistSortEnums = []|[{
|
|
|
9443
9570
|
|
|
9444
9571
|
ignoreCase?: boolean
|
|
9445
9572
|
|
|
9573
|
+
alphabet?: string
|
|
9574
|
+
|
|
9575
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9576
|
+
|
|
9446
9577
|
locales?: (string | string[])
|
|
9447
9578
|
|
|
9448
9579
|
order?: ("asc" | "desc")
|
|
9449
|
-
|
|
9450
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9451
9580
|
}]
|
|
9452
9581
|
// ----- perfectionist/sort-exports -----
|
|
9453
9582
|
type PerfectionistSortExports = []|[{
|
|
9454
9583
|
|
|
9455
|
-
partitionByComment?: (string[] | boolean | string
|
|
9584
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9585
|
+
block?: (string[] | boolean | string)
|
|
9586
|
+
line?: (string[] | boolean | string)
|
|
9587
|
+
[k: string]: unknown | undefined
|
|
9588
|
+
})
|
|
9456
9589
|
|
|
9457
9590
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
9458
9591
|
|
|
@@ -9462,11 +9595,13 @@ type PerfectionistSortExports = []|[{
|
|
|
9462
9595
|
|
|
9463
9596
|
ignoreCase?: boolean
|
|
9464
9597
|
|
|
9598
|
+
alphabet?: string
|
|
9599
|
+
|
|
9600
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9601
|
+
|
|
9465
9602
|
locales?: (string | string[])
|
|
9466
9603
|
|
|
9467
9604
|
order?: ("asc" | "desc")
|
|
9468
|
-
|
|
9469
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9470
9605
|
}]
|
|
9471
9606
|
// ----- perfectionist/sort-heritage-clauses -----
|
|
9472
9607
|
type PerfectionistSortHeritageClauses = []|[{
|
|
@@ -9479,13 +9614,19 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
9479
9614
|
|
|
9480
9615
|
ignoreCase?: boolean
|
|
9481
9616
|
|
|
9617
|
+
alphabet?: string
|
|
9618
|
+
|
|
9619
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9620
|
+
|
|
9482
9621
|
locales?: (string | string[])
|
|
9483
9622
|
|
|
9484
|
-
groups?: (string | string[]
|
|
9623
|
+
groups?: (string | string[] | {
|
|
9624
|
+
|
|
9625
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9626
|
+
[k: string]: unknown | undefined
|
|
9627
|
+
})[]
|
|
9485
9628
|
|
|
9486
9629
|
order?: ("asc" | "desc")
|
|
9487
|
-
|
|
9488
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9489
9630
|
}]
|
|
9490
9631
|
// ----- perfectionist/sort-imports -----
|
|
9491
9632
|
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
@@ -9502,7 +9643,11 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
9502
9643
|
}
|
|
9503
9644
|
}
|
|
9504
9645
|
|
|
9505
|
-
partitionByComment?: (string[] | boolean | string
|
|
9646
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9647
|
+
block?: (string[] | boolean | string)
|
|
9648
|
+
line?: (string[] | boolean | string)
|
|
9649
|
+
[k: string]: unknown | undefined
|
|
9650
|
+
})
|
|
9506
9651
|
|
|
9507
9652
|
internalPattern?: string[]
|
|
9508
9653
|
|
|
@@ -9522,13 +9667,19 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
9522
9667
|
|
|
9523
9668
|
ignoreCase?: boolean
|
|
9524
9669
|
|
|
9670
|
+
alphabet?: string
|
|
9671
|
+
|
|
9672
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9673
|
+
|
|
9525
9674
|
locales?: (string | string[])
|
|
9526
9675
|
|
|
9527
|
-
groups?: (string | string[]
|
|
9676
|
+
groups?: (string | string[] | {
|
|
9677
|
+
|
|
9678
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9679
|
+
[k: string]: unknown | undefined
|
|
9680
|
+
})[]
|
|
9528
9681
|
|
|
9529
9682
|
order?: ("asc" | "desc")
|
|
9530
|
-
|
|
9531
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9532
9683
|
})
|
|
9533
9684
|
type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
|
|
9534
9685
|
[k: string]: unknown | undefined
|
|
@@ -9538,11 +9689,19 @@ interface _PerfectionistSortImports_IsLineLength {
|
|
|
9538
9689
|
[k: string]: unknown | undefined
|
|
9539
9690
|
}
|
|
9540
9691
|
// ----- perfectionist/sort-interfaces -----
|
|
9541
|
-
type PerfectionistSortInterfaces =
|
|
9692
|
+
type PerfectionistSortInterfaces = {
|
|
9542
9693
|
|
|
9543
9694
|
ignorePattern?: string[]
|
|
9695
|
+
useConfigurationIf?: {
|
|
9696
|
+
allNamesMatchPattern?: string
|
|
9697
|
+
declarationMatchesPattern?: string
|
|
9698
|
+
}
|
|
9544
9699
|
|
|
9545
|
-
partitionByComment?: (string[] | boolean | string
|
|
9700
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9701
|
+
block?: (string[] | boolean | string)
|
|
9702
|
+
line?: (string[] | boolean | string)
|
|
9703
|
+
[k: string]: unknown | undefined
|
|
9704
|
+
})
|
|
9546
9705
|
customGroups?: ({
|
|
9547
9706
|
[k: string]: (string | string[]) | undefined
|
|
9548
9707
|
} | ({
|
|
@@ -9552,6 +9711,8 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
9552
9711
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9553
9712
|
|
|
9554
9713
|
order?: ("desc" | "asc")
|
|
9714
|
+
|
|
9715
|
+
newlinesInside?: ("always" | "never")
|
|
9555
9716
|
anyOf?: {
|
|
9556
9717
|
|
|
9557
9718
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
@@ -9568,6 +9729,8 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
9568
9729
|
|
|
9569
9730
|
order?: ("desc" | "asc")
|
|
9570
9731
|
|
|
9732
|
+
newlinesInside?: ("always" | "never")
|
|
9733
|
+
|
|
9571
9734
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9572
9735
|
|
|
9573
9736
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
@@ -9577,6 +9740,8 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
9577
9740
|
|
|
9578
9741
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
9579
9742
|
|
|
9743
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9744
|
+
|
|
9580
9745
|
partitionByNewLine?: boolean
|
|
9581
9746
|
|
|
9582
9747
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -9585,18 +9750,26 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
9585
9750
|
|
|
9586
9751
|
ignoreCase?: boolean
|
|
9587
9752
|
|
|
9753
|
+
alphabet?: string
|
|
9754
|
+
|
|
9588
9755
|
locales?: (string | string[])
|
|
9589
9756
|
|
|
9590
|
-
groups?: (string | string[]
|
|
9757
|
+
groups?: (string | string[] | {
|
|
9758
|
+
|
|
9759
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9760
|
+
[k: string]: unknown | undefined
|
|
9761
|
+
})[]
|
|
9591
9762
|
|
|
9592
9763
|
order?: ("asc" | "desc")
|
|
9593
|
-
|
|
9594
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9595
|
-
}]
|
|
9764
|
+
}[]
|
|
9596
9765
|
// ----- perfectionist/sort-intersection-types -----
|
|
9597
9766
|
type PerfectionistSortIntersectionTypes = []|[{
|
|
9598
9767
|
|
|
9599
|
-
partitionByComment?: (string[] | boolean | string
|
|
9768
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9769
|
+
block?: (string[] | boolean | string)
|
|
9770
|
+
line?: (string[] | boolean | string)
|
|
9771
|
+
[k: string]: unknown | undefined
|
|
9772
|
+
})
|
|
9600
9773
|
|
|
9601
9774
|
partitionByNewLine?: boolean
|
|
9602
9775
|
|
|
@@ -9606,13 +9779,19 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
9606
9779
|
|
|
9607
9780
|
ignoreCase?: boolean
|
|
9608
9781
|
|
|
9782
|
+
alphabet?: string
|
|
9783
|
+
|
|
9784
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9785
|
+
|
|
9609
9786
|
locales?: (string | string[])
|
|
9610
9787
|
|
|
9611
|
-
groups?: (string | string[]
|
|
9788
|
+
groups?: (string | string[] | {
|
|
9789
|
+
|
|
9790
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9791
|
+
[k: string]: unknown | undefined
|
|
9792
|
+
})[]
|
|
9612
9793
|
|
|
9613
9794
|
order?: ("asc" | "desc")
|
|
9614
|
-
|
|
9615
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9616
9795
|
}]
|
|
9617
9796
|
// ----- perfectionist/sort-jsx-props -----
|
|
9618
9797
|
type PerfectionistSortJsxProps = []|[{
|
|
@@ -9627,18 +9806,28 @@ type PerfectionistSortJsxProps = []|[{
|
|
|
9627
9806
|
|
|
9628
9807
|
ignoreCase?: boolean
|
|
9629
9808
|
|
|
9809
|
+
alphabet?: string
|
|
9810
|
+
|
|
9811
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9812
|
+
|
|
9630
9813
|
locales?: (string | string[])
|
|
9631
9814
|
|
|
9632
|
-
groups?: (string | string[]
|
|
9815
|
+
groups?: (string | string[] | {
|
|
9816
|
+
|
|
9817
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9818
|
+
[k: string]: unknown | undefined
|
|
9819
|
+
})[]
|
|
9633
9820
|
|
|
9634
9821
|
order?: ("asc" | "desc")
|
|
9635
|
-
|
|
9636
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9637
9822
|
}]
|
|
9638
9823
|
// ----- perfectionist/sort-maps -----
|
|
9639
9824
|
type PerfectionistSortMaps = []|[{
|
|
9640
9825
|
|
|
9641
|
-
partitionByComment?: (string[] | boolean | string
|
|
9826
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9827
|
+
block?: (string[] | boolean | string)
|
|
9828
|
+
line?: (string[] | boolean | string)
|
|
9829
|
+
[k: string]: unknown | undefined
|
|
9830
|
+
})
|
|
9642
9831
|
|
|
9643
9832
|
partitionByNewLine?: boolean
|
|
9644
9833
|
|
|
@@ -9646,16 +9835,22 @@ type PerfectionistSortMaps = []|[{
|
|
|
9646
9835
|
|
|
9647
9836
|
ignoreCase?: boolean
|
|
9648
9837
|
|
|
9838
|
+
alphabet?: string
|
|
9839
|
+
|
|
9840
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9841
|
+
|
|
9649
9842
|
locales?: (string | string[])
|
|
9650
9843
|
|
|
9651
9844
|
order?: ("asc" | "desc")
|
|
9652
|
-
|
|
9653
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9654
9845
|
}]
|
|
9655
9846
|
// ----- perfectionist/sort-modules -----
|
|
9656
9847
|
type PerfectionistSortModules = []|[{
|
|
9657
9848
|
|
|
9658
|
-
partitionByComment?: (string[] | boolean | string
|
|
9849
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9850
|
+
block?: (string[] | boolean | string)
|
|
9851
|
+
line?: (string[] | boolean | string)
|
|
9852
|
+
[k: string]: unknown | undefined
|
|
9853
|
+
})
|
|
9659
9854
|
|
|
9660
9855
|
customGroups?: ({
|
|
9661
9856
|
|
|
@@ -9664,6 +9859,8 @@ type PerfectionistSortModules = []|[{
|
|
|
9664
9859
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9665
9860
|
|
|
9666
9861
|
order?: ("desc" | "asc")
|
|
9862
|
+
|
|
9863
|
+
newlinesInside?: ("always" | "never")
|
|
9667
9864
|
anyOf?: {
|
|
9668
9865
|
|
|
9669
9866
|
decoratorNamePattern?: string
|
|
@@ -9682,6 +9879,8 @@ type PerfectionistSortModules = []|[{
|
|
|
9682
9879
|
|
|
9683
9880
|
order?: ("desc" | "asc")
|
|
9684
9881
|
|
|
9882
|
+
newlinesInside?: ("always" | "never")
|
|
9883
|
+
|
|
9685
9884
|
decoratorNamePattern?: string
|
|
9686
9885
|
|
|
9687
9886
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
@@ -9699,18 +9898,28 @@ type PerfectionistSortModules = []|[{
|
|
|
9699
9898
|
|
|
9700
9899
|
ignoreCase?: boolean
|
|
9701
9900
|
|
|
9901
|
+
alphabet?: string
|
|
9902
|
+
|
|
9903
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9904
|
+
|
|
9702
9905
|
locales?: (string | string[])
|
|
9703
9906
|
|
|
9704
|
-
groups?: (string | string[]
|
|
9907
|
+
groups?: (string | string[] | {
|
|
9908
|
+
|
|
9909
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9910
|
+
[k: string]: unknown | undefined
|
|
9911
|
+
})[]
|
|
9705
9912
|
|
|
9706
9913
|
order?: ("asc" | "desc")
|
|
9707
|
-
|
|
9708
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9709
9914
|
}]
|
|
9710
9915
|
// ----- perfectionist/sort-named-exports -----
|
|
9711
9916
|
type PerfectionistSortNamedExports = []|[{
|
|
9712
9917
|
|
|
9713
|
-
partitionByComment?: (string[] | boolean | string
|
|
9918
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9919
|
+
block?: (string[] | boolean | string)
|
|
9920
|
+
line?: (string[] | boolean | string)
|
|
9921
|
+
[k: string]: unknown | undefined
|
|
9922
|
+
})
|
|
9714
9923
|
|
|
9715
9924
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
9716
9925
|
|
|
@@ -9720,16 +9929,22 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
9720
9929
|
|
|
9721
9930
|
ignoreCase?: boolean
|
|
9722
9931
|
|
|
9932
|
+
alphabet?: string
|
|
9933
|
+
|
|
9934
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9935
|
+
|
|
9723
9936
|
locales?: (string | string[])
|
|
9724
9937
|
|
|
9725
9938
|
order?: ("asc" | "desc")
|
|
9726
|
-
|
|
9727
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9728
9939
|
}]
|
|
9729
9940
|
// ----- perfectionist/sort-named-imports -----
|
|
9730
9941
|
type PerfectionistSortNamedImports = []|[{
|
|
9731
9942
|
|
|
9732
|
-
partitionByComment?: (string[] | boolean | string
|
|
9943
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9944
|
+
block?: (string[] | boolean | string)
|
|
9945
|
+
line?: (string[] | boolean | string)
|
|
9946
|
+
[k: string]: unknown | undefined
|
|
9947
|
+
})
|
|
9733
9948
|
|
|
9734
9949
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
9735
9950
|
|
|
@@ -9741,18 +9956,28 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
9741
9956
|
|
|
9742
9957
|
ignoreCase?: boolean
|
|
9743
9958
|
|
|
9959
|
+
alphabet?: string
|
|
9960
|
+
|
|
9961
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9962
|
+
|
|
9744
9963
|
locales?: (string | string[])
|
|
9745
9964
|
|
|
9746
9965
|
order?: ("asc" | "desc")
|
|
9747
|
-
|
|
9748
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9749
9966
|
}]
|
|
9750
9967
|
// ----- perfectionist/sort-object-types -----
|
|
9751
|
-
type PerfectionistSortObjectTypes =
|
|
9968
|
+
type PerfectionistSortObjectTypes = {
|
|
9752
9969
|
|
|
9753
9970
|
ignorePattern?: string[]
|
|
9971
|
+
useConfigurationIf?: {
|
|
9972
|
+
allNamesMatchPattern?: string
|
|
9973
|
+
declarationMatchesPattern?: string
|
|
9974
|
+
}
|
|
9754
9975
|
|
|
9755
|
-
partitionByComment?: (string[] | boolean | string
|
|
9976
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9977
|
+
block?: (string[] | boolean | string)
|
|
9978
|
+
line?: (string[] | boolean | string)
|
|
9979
|
+
[k: string]: unknown | undefined
|
|
9980
|
+
})
|
|
9756
9981
|
customGroups?: ({
|
|
9757
9982
|
[k: string]: (string | string[]) | undefined
|
|
9758
9983
|
} | ({
|
|
@@ -9762,6 +9987,8 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
9762
9987
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9763
9988
|
|
|
9764
9989
|
order?: ("desc" | "asc")
|
|
9990
|
+
|
|
9991
|
+
newlinesInside?: ("always" | "never")
|
|
9765
9992
|
anyOf?: {
|
|
9766
9993
|
|
|
9767
9994
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
@@ -9778,6 +10005,8 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
9778
10005
|
|
|
9779
10006
|
order?: ("desc" | "asc")
|
|
9780
10007
|
|
|
10008
|
+
newlinesInside?: ("always" | "never")
|
|
10009
|
+
|
|
9781
10010
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9782
10011
|
|
|
9783
10012
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
@@ -9787,6 +10016,8 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
9787
10016
|
|
|
9788
10017
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
9789
10018
|
|
|
10019
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10020
|
+
|
|
9790
10021
|
partitionByNewLine?: boolean
|
|
9791
10022
|
|
|
9792
10023
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -9795,16 +10026,20 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
9795
10026
|
|
|
9796
10027
|
ignoreCase?: boolean
|
|
9797
10028
|
|
|
10029
|
+
alphabet?: string
|
|
10030
|
+
|
|
9798
10031
|
locales?: (string | string[])
|
|
9799
10032
|
|
|
9800
|
-
groups?: (string | string[]
|
|
10033
|
+
groups?: (string | string[] | {
|
|
10034
|
+
|
|
10035
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10036
|
+
[k: string]: unknown | undefined
|
|
10037
|
+
})[]
|
|
9801
10038
|
|
|
9802
10039
|
order?: ("asc" | "desc")
|
|
9803
|
-
|
|
9804
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9805
|
-
}]
|
|
10040
|
+
}[]
|
|
9806
10041
|
// ----- perfectionist/sort-objects -----
|
|
9807
|
-
type PerfectionistSortObjects =
|
|
10042
|
+
type PerfectionistSortObjects = {
|
|
9808
10043
|
|
|
9809
10044
|
destructuredObjects?: (boolean | {
|
|
9810
10045
|
|
|
@@ -9812,8 +10047,16 @@ type PerfectionistSortObjects = []|[{
|
|
|
9812
10047
|
})
|
|
9813
10048
|
|
|
9814
10049
|
ignorePattern?: string[]
|
|
10050
|
+
useConfigurationIf?: {
|
|
10051
|
+
allNamesMatchPattern?: string
|
|
10052
|
+
callingFunctionNamePattern?: string
|
|
10053
|
+
}
|
|
9815
10054
|
|
|
9816
|
-
partitionByComment?: (string[] | boolean | string
|
|
10055
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10056
|
+
block?: (string[] | boolean | string)
|
|
10057
|
+
line?: (string[] | boolean | string)
|
|
10058
|
+
[k: string]: unknown | undefined
|
|
10059
|
+
})
|
|
9817
10060
|
|
|
9818
10061
|
destructureOnly?: boolean
|
|
9819
10062
|
|
|
@@ -9821,6 +10064,8 @@ type PerfectionistSortObjects = []|[{
|
|
|
9821
10064
|
|
|
9822
10065
|
styledComponents?: boolean
|
|
9823
10066
|
|
|
10067
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10068
|
+
|
|
9824
10069
|
partitionByNewLine?: boolean
|
|
9825
10070
|
|
|
9826
10071
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -9833,33 +10078,82 @@ type PerfectionistSortObjects = []|[{
|
|
|
9833
10078
|
|
|
9834
10079
|
ignoreCase?: boolean
|
|
9835
10080
|
|
|
10081
|
+
alphabet?: string
|
|
10082
|
+
|
|
9836
10083
|
locales?: (string | string[])
|
|
9837
10084
|
|
|
9838
|
-
groups?: (string | string[]
|
|
10085
|
+
groups?: (string | string[] | {
|
|
10086
|
+
|
|
10087
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10088
|
+
[k: string]: unknown | undefined
|
|
10089
|
+
})[]
|
|
9839
10090
|
|
|
9840
10091
|
order?: ("asc" | "desc")
|
|
9841
|
-
|
|
9842
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9843
|
-
}]
|
|
10092
|
+
}[]
|
|
9844
10093
|
// ----- perfectionist/sort-sets -----
|
|
9845
|
-
type PerfectionistSortSets =
|
|
10094
|
+
type PerfectionistSortSets = {
|
|
9846
10095
|
|
|
9847
|
-
partitionByComment?: (string[] | boolean | string
|
|
10096
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10097
|
+
block?: (string[] | boolean | string)
|
|
10098
|
+
line?: (string[] | boolean | string)
|
|
10099
|
+
[k: string]: unknown | undefined
|
|
10100
|
+
})
|
|
9848
10101
|
|
|
9849
10102
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
9850
10103
|
|
|
10104
|
+
customGroups?: ({
|
|
10105
|
+
|
|
10106
|
+
groupName?: string
|
|
10107
|
+
|
|
10108
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10109
|
+
|
|
10110
|
+
order?: ("desc" | "asc")
|
|
10111
|
+
|
|
10112
|
+
newlinesInside?: ("always" | "never")
|
|
10113
|
+
anyOf?: {
|
|
10114
|
+
|
|
10115
|
+
selector?: ("literal" | "spread")
|
|
10116
|
+
|
|
10117
|
+
elementNamePattern?: string
|
|
10118
|
+
}[]
|
|
10119
|
+
} | {
|
|
10120
|
+
|
|
10121
|
+
groupName?: string
|
|
10122
|
+
|
|
10123
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10124
|
+
|
|
10125
|
+
order?: ("desc" | "asc")
|
|
10126
|
+
|
|
10127
|
+
newlinesInside?: ("always" | "never")
|
|
10128
|
+
|
|
10129
|
+
selector?: ("literal" | "spread")
|
|
10130
|
+
|
|
10131
|
+
elementNamePattern?: string
|
|
10132
|
+
})[]
|
|
10133
|
+
useConfigurationIf?: {
|
|
10134
|
+
allNamesMatchPattern?: string
|
|
10135
|
+
}
|
|
10136
|
+
|
|
10137
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10138
|
+
|
|
9851
10139
|
partitionByNewLine?: boolean
|
|
9852
10140
|
|
|
9853
10141
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9854
10142
|
|
|
9855
10143
|
ignoreCase?: boolean
|
|
9856
10144
|
|
|
10145
|
+
alphabet?: string
|
|
10146
|
+
|
|
9857
10147
|
locales?: (string | string[])
|
|
9858
10148
|
|
|
9859
|
-
|
|
10149
|
+
groups?: (string | string[] | {
|
|
10150
|
+
|
|
10151
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10152
|
+
[k: string]: unknown | undefined
|
|
10153
|
+
})[]
|
|
9860
10154
|
|
|
9861
|
-
|
|
9862
|
-
}]
|
|
10155
|
+
order?: ("asc" | "desc")
|
|
10156
|
+
}[]
|
|
9863
10157
|
// ----- perfectionist/sort-switch-case -----
|
|
9864
10158
|
type PerfectionistSortSwitchCase = []|[{
|
|
9865
10159
|
|
|
@@ -9867,16 +10161,22 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
9867
10161
|
|
|
9868
10162
|
ignoreCase?: boolean
|
|
9869
10163
|
|
|
10164
|
+
alphabet?: string
|
|
10165
|
+
|
|
10166
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10167
|
+
|
|
9870
10168
|
locales?: (string | string[])
|
|
9871
10169
|
|
|
9872
10170
|
order?: ("asc" | "desc")
|
|
9873
|
-
|
|
9874
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9875
10171
|
}]
|
|
9876
10172
|
// ----- perfectionist/sort-union-types -----
|
|
9877
10173
|
type PerfectionistSortUnionTypes = []|[{
|
|
9878
10174
|
|
|
9879
|
-
partitionByComment?: (string[] | boolean | string
|
|
10175
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10176
|
+
block?: (string[] | boolean | string)
|
|
10177
|
+
line?: (string[] | boolean | string)
|
|
10178
|
+
[k: string]: unknown | undefined
|
|
10179
|
+
})
|
|
9880
10180
|
|
|
9881
10181
|
partitionByNewLine?: boolean
|
|
9882
10182
|
|
|
@@ -9886,18 +10186,28 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
9886
10186
|
|
|
9887
10187
|
ignoreCase?: boolean
|
|
9888
10188
|
|
|
10189
|
+
alphabet?: string
|
|
10190
|
+
|
|
10191
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10192
|
+
|
|
9889
10193
|
locales?: (string | string[])
|
|
9890
10194
|
|
|
9891
|
-
groups?: (string | string[]
|
|
10195
|
+
groups?: (string | string[] | {
|
|
10196
|
+
|
|
10197
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10198
|
+
[k: string]: unknown | undefined
|
|
10199
|
+
})[]
|
|
9892
10200
|
|
|
9893
10201
|
order?: ("asc" | "desc")
|
|
9894
|
-
|
|
9895
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9896
10202
|
}]
|
|
9897
10203
|
// ----- perfectionist/sort-variable-declarations -----
|
|
9898
10204
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
9899
10205
|
|
|
9900
|
-
partitionByComment?: (string[] | boolean | string
|
|
10206
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10207
|
+
block?: (string[] | boolean | string)
|
|
10208
|
+
line?: (string[] | boolean | string)
|
|
10209
|
+
[k: string]: unknown | undefined
|
|
10210
|
+
})
|
|
9901
10211
|
|
|
9902
10212
|
partitionByNewLine?: boolean
|
|
9903
10213
|
|
|
@@ -9905,11 +10215,13 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
9905
10215
|
|
|
9906
10216
|
ignoreCase?: boolean
|
|
9907
10217
|
|
|
10218
|
+
alphabet?: string
|
|
10219
|
+
|
|
10220
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10221
|
+
|
|
9908
10222
|
locales?: (string | string[])
|
|
9909
10223
|
|
|
9910
10224
|
order?: ("asc" | "desc")
|
|
9911
|
-
|
|
9912
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9913
10225
|
}]
|
|
9914
10226
|
// ----- prefer-arrow-callback -----
|
|
9915
10227
|
type PreferArrowCallback = []|[{
|
|
@@ -9961,18 +10273,6 @@ type PreferReflect = []|[{
|
|
|
9961
10273
|
type PreferRegexLiterals = []|[{
|
|
9962
10274
|
disallowRedundantWrapping?: boolean
|
|
9963
10275
|
}]
|
|
9964
|
-
// ----- prettier/prettier -----
|
|
9965
|
-
type PrettierPrettier = []|[{
|
|
9966
|
-
[k: string]: unknown | undefined
|
|
9967
|
-
}]|[{
|
|
9968
|
-
[k: string]: unknown | undefined
|
|
9969
|
-
}, {
|
|
9970
|
-
usePrettierrc?: boolean
|
|
9971
|
-
fileInfoOptions?: {
|
|
9972
|
-
[k: string]: unknown | undefined
|
|
9973
|
-
}
|
|
9974
|
-
[k: string]: unknown | undefined
|
|
9975
|
-
}]
|
|
9976
10276
|
// ----- quote-props -----
|
|
9977
10277
|
type QuoteProps = ([]|[("always" | "as-needed" | "consistent" | "consistent-as-needed")] | []|[("always" | "as-needed" | "consistent" | "consistent-as-needed")]|[("always" | "as-needed" | "consistent" | "consistent-as-needed"), {
|
|
9978
10278
|
keywords?: boolean
|
|
@@ -10544,8 +10844,7 @@ type TestNoRestrictedViMethods = []|[{
|
|
|
10544
10844
|
}]
|
|
10545
10845
|
// ----- test/no-standalone-expect -----
|
|
10546
10846
|
type TestNoStandaloneExpect = []|[{
|
|
10547
|
-
|
|
10548
|
-
[k: string]: unknown | undefined
|
|
10847
|
+
additionalTestBlockFunctions?: string[]
|
|
10549
10848
|
}]
|
|
10550
10849
|
// ----- test/prefer-expect-assertions -----
|
|
10551
10850
|
type TestPreferExpectAssertions = []|[{
|
|
@@ -10637,7 +10936,9 @@ type TsConsistentTypeAssertions = []|[({
|
|
|
10637
10936
|
assertionStyle: "never"
|
|
10638
10937
|
} | {
|
|
10639
10938
|
|
|
10640
|
-
|
|
10939
|
+
arrayLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never")
|
|
10940
|
+
|
|
10941
|
+
assertionStyle?: ("as" | "angle-bracket")
|
|
10641
10942
|
|
|
10642
10943
|
objectLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never")
|
|
10643
10944
|
})]
|
|
@@ -11093,6 +11394,22 @@ type TsNoConfusingVoidExpression = []|[{
|
|
|
11093
11394
|
|
|
11094
11395
|
ignoreVoidReturningFunctions?: boolean
|
|
11095
11396
|
}]
|
|
11397
|
+
// ----- ts/no-deprecated -----
|
|
11398
|
+
type TsNoDeprecated = []|[{
|
|
11399
|
+
|
|
11400
|
+
allow?: (string | {
|
|
11401
|
+
from: "file"
|
|
11402
|
+
name: (string | [string, ...(string)[]])
|
|
11403
|
+
path?: string
|
|
11404
|
+
} | {
|
|
11405
|
+
from: "lib"
|
|
11406
|
+
name: (string | [string, ...(string)[]])
|
|
11407
|
+
} | {
|
|
11408
|
+
from: "package"
|
|
11409
|
+
name: (string | [string, ...(string)[]])
|
|
11410
|
+
package: string
|
|
11411
|
+
})[]
|
|
11412
|
+
}]
|
|
11096
11413
|
// ----- ts/no-duplicate-type-constituents -----
|
|
11097
11414
|
type TsNoDuplicateTypeConstituents = []|[{
|
|
11098
11415
|
|
|
@@ -11234,6 +11551,22 @@ type TsNoMisusedPromises = []|[{
|
|
|
11234
11551
|
variables?: boolean
|
|
11235
11552
|
})
|
|
11236
11553
|
}]
|
|
11554
|
+
// ----- ts/no-misused-spread -----
|
|
11555
|
+
type TsNoMisusedSpread = []|[{
|
|
11556
|
+
|
|
11557
|
+
allow?: (string | {
|
|
11558
|
+
from: "file"
|
|
11559
|
+
name: (string | [string, ...(string)[]])
|
|
11560
|
+
path?: string
|
|
11561
|
+
} | {
|
|
11562
|
+
from: "lib"
|
|
11563
|
+
name: (string | [string, ...(string)[]])
|
|
11564
|
+
} | {
|
|
11565
|
+
from: "package"
|
|
11566
|
+
name: (string | [string, ...(string)[]])
|
|
11567
|
+
package: string
|
|
11568
|
+
})[]
|
|
11569
|
+
}]
|
|
11237
11570
|
// ----- ts/no-namespace -----
|
|
11238
11571
|
type TsNoNamespace = []|[{
|
|
11239
11572
|
|
|
@@ -11309,7 +11642,7 @@ type TsNoShadow = []|[{
|
|
|
11309
11642
|
|
|
11310
11643
|
builtinGlobals?: boolean
|
|
11311
11644
|
|
|
11312
|
-
hoist?: ("all" | "functions" | "never")
|
|
11645
|
+
hoist?: ("all" | "functions" | "functions-and-types" | "never" | "types")
|
|
11313
11646
|
|
|
11314
11647
|
ignoreFunctionTypeParameterNameValueShadow?: boolean
|
|
11315
11648
|
|
|
@@ -11671,6 +12004,8 @@ type TsSwitchExhaustivenessCheck = []|[{
|
|
|
11671
12004
|
|
|
11672
12005
|
considerDefaultExhaustiveForUnions?: boolean
|
|
11673
12006
|
|
|
12007
|
+
defaultCaseCommentPattern?: string
|
|
12008
|
+
|
|
11674
12009
|
requireDefaultForNonUnion?: boolean
|
|
11675
12010
|
}]
|
|
11676
12011
|
// ----- ts/triple-slash-reference -----
|
|
@@ -14075,7 +14410,6 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14075
14410
|
'prefer-rest-params'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14076
14411
|
'prefer-spread'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14077
14412
|
'prefer-template'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14078
|
-
'prettier/prettier'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14079
14413
|
'quote-props'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14080
14414
|
quotes?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14081
14415
|
radix?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
@@ -14091,13 +14425,16 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14091
14425
|
'react-dom/no-unknown-property'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14092
14426
|
'react-dom/no-unsafe-iframe-sandbox'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14093
14427
|
'react-dom/no-unsafe-target-blank'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14428
|
+
'react-dom/no-void-elements-with-children'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14094
14429
|
'react-hooks-extra/ensure-custom-hooks-using-other-hooks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14430
|
+
'react-hooks-extra/ensure-use-callback-has-non-empty-deps'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14095
14431
|
'react-hooks-extra/ensure-use-memo-has-non-empty-deps'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14096
14432
|
'react-hooks-extra/no-direct-set-state-in-use-effect'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14097
14433
|
'react-hooks-extra/no-direct-set-state-in-use-layout-effect'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14098
14434
|
'react-hooks-extra/no-redundant-custom-hook'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14099
14435
|
'react-hooks-extra/no-unnecessary-use-callback'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14100
14436
|
'react-hooks-extra/no-unnecessary-use-memo'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14437
|
+
'react-hooks-extra/no-useless-custom-hooks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14101
14438
|
'react-hooks-extra/prefer-use-state-lazy-initialization'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14102
14439
|
'react-hooks/exhaustive-deps'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14103
14440
|
'react-hooks/rules-of-hooks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
@@ -14127,10 +14464,13 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14127
14464
|
'react/no-component-will-mount'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14128
14465
|
'react/no-component-will-receive-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14129
14466
|
'react/no-component-will-update'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14467
|
+
'react/no-context-provider'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14130
14468
|
'react/no-create-ref'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14131
14469
|
'react/no-default-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14132
14470
|
'react/no-direct-mutation-state'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14471
|
+
'react/no-duplicate-jsx-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14133
14472
|
'react/no-duplicate-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14473
|
+
'react/no-forward-ref'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14134
14474
|
'react/no-implicit-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14135
14475
|
'react/no-leaked-conditional-rendering'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14136
14476
|
'react/no-missing-component-display-name'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
@@ -14155,6 +14495,7 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14155
14495
|
'react/prefer-read-only-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14156
14496
|
'react/prefer-shorthand-boolean'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14157
14497
|
'react/prefer-shorthand-fragment'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14498
|
+
'react/use-jsx-vars'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14158
14499
|
'regexp/confusing-quantifier'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14159
14500
|
'regexp/control-character-escape'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14160
14501
|
'regexp/grapheme-string-literal'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
@@ -14359,7 +14700,7 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14359
14700
|
'ts/no-base-to-string'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14360
14701
|
'ts/no-confusing-non-null-assertion'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14361
14702
|
'ts/no-confusing-void-expression'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14362
|
-
'ts/no-deprecated'?: eslint.Linter.RuleEntry<
|
|
14703
|
+
'ts/no-deprecated'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14363
14704
|
'ts/no-dupe-class-members'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14364
14705
|
'ts/no-duplicate-enum-values'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14365
14706
|
'ts/no-duplicate-type-constituents'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
@@ -14383,6 +14724,7 @@ declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsCon
|
|
|
14383
14724
|
'ts/no-meaningless-void-operator'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14384
14725
|
'ts/no-misused-new'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14385
14726
|
'ts/no-misused-promises'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14727
|
+
'ts/no-misused-spread'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14386
14728
|
'ts/no-mixed-enums'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14387
14729
|
'ts/no-namespace'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14388
14730
|
'ts/no-non-null-asserted-nullish-coalescing'?: eslint.Linter.RuleEntry<[]> | undefined;
|