@lincy/eslint-config 5.3.1 → 5.4.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/README.md +0 -10
- package/dist/index.cjs +63 -13
- package/dist/index.d.cts +569 -180
- package/dist/index.d.ts +569 -180
- package/dist/index.js +62 -12
- package/package.json +43 -42
package/dist/index.d.ts
CHANGED
|
@@ -203,7 +203,7 @@ interface RuleOptions {
|
|
|
203
203
|
*/
|
|
204
204
|
'default-case'?: Linter.RuleEntry<DefaultCase>
|
|
205
205
|
/**
|
|
206
|
-
* Enforce default clauses in switch statements to be last
|
|
206
|
+
* Enforce `default` clauses in `switch` statements to be last
|
|
207
207
|
* @see https://eslint.org/docs/latest/rules/default-case-last
|
|
208
208
|
*/
|
|
209
209
|
'default-case-last'?: Linter.RuleEntry<[]>
|
|
@@ -280,7 +280,7 @@ interface RuleOptions {
|
|
|
280
280
|
*/
|
|
281
281
|
'eslint-comments/require-description'?: Linter.RuleEntry<EslintCommentsRequireDescription>
|
|
282
282
|
/**
|
|
283
|
-
* Enforce
|
|
283
|
+
* Enforce `for` loop update clause moving the counter in the right direction
|
|
284
284
|
* @see https://eslint.org/docs/latest/rules/for-direction
|
|
285
285
|
*/
|
|
286
286
|
'for-direction'?: Linter.RuleEntry<[]>
|
|
@@ -387,233 +387,233 @@ interface RuleOptions {
|
|
|
387
387
|
'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
|
|
388
388
|
/**
|
|
389
389
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
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/consistent-type-specifier-style.md
|
|
391
391
|
*/
|
|
392
392
|
'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
|
|
393
393
|
/**
|
|
394
394
|
* Ensure a default export is present, given a default import.
|
|
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/default.md
|
|
396
396
|
*/
|
|
397
397
|
'import/default'?: Linter.RuleEntry<[]>
|
|
398
398
|
/**
|
|
399
399
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
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/dynamic-import-chunkname.md
|
|
401
401
|
*/
|
|
402
402
|
'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
|
|
403
403
|
/**
|
|
404
404
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
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/export.md
|
|
406
406
|
*/
|
|
407
407
|
'import/export'?: Linter.RuleEntry<[]>
|
|
408
408
|
/**
|
|
409
409
|
* Ensure all exports appear after other statements.
|
|
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/exports-last.md
|
|
411
411
|
*/
|
|
412
412
|
'import/exports-last'?: Linter.RuleEntry<[]>
|
|
413
413
|
/**
|
|
414
414
|
* Ensure consistent use of file extension within the import path.
|
|
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/extensions.md
|
|
416
416
|
*/
|
|
417
417
|
'import/extensions'?: Linter.RuleEntry<ImportExtensions>
|
|
418
418
|
/**
|
|
419
419
|
* Ensure all imports appear before other statements.
|
|
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/first.md
|
|
421
421
|
*/
|
|
422
422
|
'import/first'?: Linter.RuleEntry<ImportFirst>
|
|
423
423
|
/**
|
|
424
424
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
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/group-exports.md
|
|
426
426
|
*/
|
|
427
427
|
'import/group-exports'?: Linter.RuleEntry<[]>
|
|
428
428
|
/**
|
|
429
429
|
* Replaced by `import-x/first`.
|
|
430
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
430
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/imports-first.md
|
|
431
431
|
* @deprecated
|
|
432
432
|
*/
|
|
433
433
|
'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
|
|
434
434
|
/**
|
|
435
435
|
* Enforce the maximum number of dependencies a module can have.
|
|
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/max-dependencies.md
|
|
437
437
|
*/
|
|
438
438
|
'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
|
|
439
439
|
/**
|
|
440
440
|
* Ensure named imports correspond to a named export in the remote file.
|
|
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/named.md
|
|
442
442
|
*/
|
|
443
443
|
'import/named'?: Linter.RuleEntry<ImportNamed>
|
|
444
444
|
/**
|
|
445
445
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
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/namespace.md
|
|
447
447
|
*/
|
|
448
448
|
'import/namespace'?: Linter.RuleEntry<ImportNamespace>
|
|
449
449
|
/**
|
|
450
450
|
* Enforce a newline after import statements.
|
|
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/newline-after-import.md
|
|
452
452
|
*/
|
|
453
453
|
'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
|
|
454
454
|
/**
|
|
455
455
|
* Forbid import of modules using absolute paths.
|
|
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-absolute-path.md
|
|
457
457
|
*/
|
|
458
458
|
'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
|
|
459
459
|
/**
|
|
460
460
|
* Forbid AMD `require` and `define` calls.
|
|
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-amd.md
|
|
462
462
|
*/
|
|
463
463
|
'import/no-amd'?: Linter.RuleEntry<[]>
|
|
464
464
|
/**
|
|
465
465
|
* Forbid anonymous values as default 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-anonymous-default-export.md
|
|
467
467
|
*/
|
|
468
468
|
'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
|
|
469
469
|
/**
|
|
470
470
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
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-commonjs.md
|
|
472
472
|
*/
|
|
473
473
|
'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
|
|
474
474
|
/**
|
|
475
475
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
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-cycle.md
|
|
477
477
|
*/
|
|
478
478
|
'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
|
|
479
479
|
/**
|
|
480
480
|
* Forbid default exports.
|
|
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-default-export.md
|
|
482
482
|
*/
|
|
483
483
|
'import/no-default-export'?: Linter.RuleEntry<[]>
|
|
484
484
|
/**
|
|
485
485
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
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-deprecated.md
|
|
487
487
|
*/
|
|
488
488
|
'import/no-deprecated'?: Linter.RuleEntry<[]>
|
|
489
489
|
/**
|
|
490
490
|
* Forbid repeated import of the same module in multiple places.
|
|
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-duplicates.md
|
|
492
492
|
*/
|
|
493
493
|
'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
|
|
494
494
|
/**
|
|
495
495
|
* Forbid `require()` calls with expressions.
|
|
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-dynamic-require.md
|
|
497
497
|
*/
|
|
498
498
|
'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
|
|
499
499
|
/**
|
|
500
500
|
* Forbid empty named import blocks.
|
|
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-empty-named-blocks.md
|
|
502
502
|
*/
|
|
503
503
|
'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
504
504
|
/**
|
|
505
505
|
* Forbid the use of extraneous packages.
|
|
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-extraneous-dependencies.md
|
|
507
507
|
*/
|
|
508
508
|
'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
|
|
509
509
|
/**
|
|
510
510
|
* Forbid import statements with CommonJS module.exports.
|
|
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-import-module-exports.md
|
|
512
512
|
*/
|
|
513
513
|
'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
|
|
514
514
|
/**
|
|
515
515
|
* Forbid importing the submodules of other modules.
|
|
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-internal-modules.md
|
|
517
517
|
*/
|
|
518
518
|
'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
|
|
519
519
|
/**
|
|
520
520
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
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-mutable-exports.md
|
|
522
522
|
*/
|
|
523
523
|
'import/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
524
524
|
/**
|
|
525
525
|
* Forbid use of exported name as identifier 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.md
|
|
527
527
|
*/
|
|
528
528
|
'import/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
529
529
|
/**
|
|
530
530
|
* Forbid use of exported name as property of default export.
|
|
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-as-default-member.md
|
|
532
532
|
*/
|
|
533
533
|
'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
534
534
|
/**
|
|
535
535
|
* Forbid named default 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-default.md
|
|
537
537
|
*/
|
|
538
538
|
'import/no-named-default'?: Linter.RuleEntry<[]>
|
|
539
539
|
/**
|
|
540
540
|
* Forbid named exports.
|
|
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-named-export.md
|
|
542
542
|
*/
|
|
543
543
|
'import/no-named-export'?: Linter.RuleEntry<[]>
|
|
544
544
|
/**
|
|
545
545
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
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-namespace.md
|
|
547
547
|
*/
|
|
548
548
|
'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
|
|
549
549
|
/**
|
|
550
550
|
* Forbid Node.js builtin modules.
|
|
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-nodejs-modules.md
|
|
552
552
|
*/
|
|
553
553
|
'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
|
|
554
554
|
/**
|
|
555
555
|
* Forbid importing packages through relative paths.
|
|
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-packages.md
|
|
557
557
|
*/
|
|
558
558
|
'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
|
|
559
559
|
/**
|
|
560
560
|
* Forbid importing modules from parent directories.
|
|
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-relative-parent-imports.md
|
|
562
562
|
*/
|
|
563
563
|
'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
|
|
564
564
|
/**
|
|
565
565
|
* Forbid importing a default export by a different name.
|
|
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-rename-default.md
|
|
567
567
|
*/
|
|
568
568
|
'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
|
|
569
569
|
/**
|
|
570
570
|
* Enforce which files can be imported in a given folder.
|
|
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-restricted-paths.md
|
|
572
572
|
*/
|
|
573
573
|
'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
|
|
574
574
|
/**
|
|
575
575
|
* Forbid a module from importing itself.
|
|
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-self-import.md
|
|
577
577
|
*/
|
|
578
578
|
'import/no-self-import'?: Linter.RuleEntry<[]>
|
|
579
579
|
/**
|
|
580
580
|
* Forbid unassigned imports.
|
|
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-unassigned-import.md
|
|
582
582
|
*/
|
|
583
583
|
'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
|
|
584
584
|
/**
|
|
585
585
|
* Ensure imports point to a file/module that can be resolved.
|
|
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-unresolved.md
|
|
587
587
|
*/
|
|
588
588
|
'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
|
|
589
589
|
/**
|
|
590
590
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
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-unused-modules.md
|
|
592
592
|
*/
|
|
593
593
|
'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
|
|
594
594
|
/**
|
|
595
595
|
* Forbid unnecessary path segments in import and require statements.
|
|
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-useless-path-segments.md
|
|
597
597
|
*/
|
|
598
598
|
'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
|
|
599
599
|
/**
|
|
600
600
|
* Forbid webpack loader syntax in imports.
|
|
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/no-webpack-loader-syntax.md
|
|
602
602
|
*/
|
|
603
603
|
'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
604
604
|
/**
|
|
605
605
|
* Enforce a convention in module import order.
|
|
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/order.md
|
|
607
607
|
*/
|
|
608
608
|
'import/order'?: Linter.RuleEntry<ImportOrder>
|
|
609
609
|
/**
|
|
610
610
|
* Prefer a default export if module exports a single name or multiple names.
|
|
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/prefer-default-export.md
|
|
612
612
|
*/
|
|
613
613
|
'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
|
|
614
614
|
/**
|
|
615
615
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
616
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
616
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/unambiguous.md
|
|
617
617
|
*/
|
|
618
618
|
'import/unambiguous'?: Linter.RuleEntry<[]>
|
|
619
619
|
/**
|
|
@@ -1769,7 +1769,7 @@ interface RuleOptions {
|
|
|
1769
1769
|
*/
|
|
1770
1770
|
'no-octal-escape'?: Linter.RuleEntry<[]>
|
|
1771
1771
|
/**
|
|
1772
|
-
* Disallow reassigning
|
|
1772
|
+
* Disallow reassigning function parameters
|
|
1773
1773
|
* @see https://eslint.org/docs/latest/rules/no-param-reassign
|
|
1774
1774
|
*/
|
|
1775
1775
|
'no-param-reassign'?: Linter.RuleEntry<NoParamReassign>
|
|
@@ -1864,7 +1864,7 @@ interface RuleOptions {
|
|
|
1864
1864
|
*/
|
|
1865
1865
|
'no-return-await'?: Linter.RuleEntry<[]>
|
|
1866
1866
|
/**
|
|
1867
|
-
* Disallow `javascript:`
|
|
1867
|
+
* Disallow `javascript:` URLs
|
|
1868
1868
|
* @see https://eslint.org/docs/latest/rules/no-script-url
|
|
1869
1869
|
*/
|
|
1870
1870
|
'no-script-url'?: Linter.RuleEntry<[]>
|
|
@@ -2509,7 +2509,7 @@ interface RuleOptions {
|
|
|
2509
2509
|
*/
|
|
2510
2510
|
'prefer-object-has-own'?: Linter.RuleEntry<[]>
|
|
2511
2511
|
/**
|
|
2512
|
-
* Disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead
|
|
2512
|
+
* Disallow using `Object.assign` with an object literal as the first argument and prefer the use of object spread instead
|
|
2513
2513
|
* @see https://eslint.org/docs/latest/rules/prefer-object-spread
|
|
2514
2514
|
*/
|
|
2515
2515
|
'prefer-object-spread'?: Linter.RuleEntry<[]>
|
|
@@ -2562,8 +2562,8 @@ interface RuleOptions {
|
|
|
2562
2562
|
*/
|
|
2563
2563
|
'radix'?: Linter.RuleEntry<Radix>
|
|
2564
2564
|
/**
|
|
2565
|
-
* disallow
|
|
2566
|
-
* @see https://eslint-react.xyz/docs/rules/dom-no-
|
|
2565
|
+
* disallow void elements (AKA self-closing elements) from having children
|
|
2566
|
+
* @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
|
|
2567
2567
|
*/
|
|
2568
2568
|
'react-dom/no-children-in-void-dom-elements'?: Linter.RuleEntry<[]>
|
|
2569
2569
|
/**
|
|
@@ -2622,10 +2622,20 @@ interface RuleOptions {
|
|
|
2622
2622
|
*/
|
|
2623
2623
|
'react-dom/no-unsafe-target-blank'?: Linter.RuleEntry<[]>
|
|
2624
2624
|
/**
|
|
2625
|
-
*
|
|
2626
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
2625
|
+
* disallow void elements (AKA self-closing elements) from having children
|
|
2626
|
+
* @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
|
|
2627
|
+
*/
|
|
2628
|
+
'react-dom/no-void-elements-with-children'?: Linter.RuleEntry<[]>
|
|
2629
|
+
/**
|
|
2630
|
+
* enforce custom Hooks to use at least one other hook inside
|
|
2631
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-useless-custom-hooks
|
|
2627
2632
|
*/
|
|
2628
2633
|
'react-hooks-extra/ensure-custom-hooks-using-other-hooks'?: Linter.RuleEntry<[]>
|
|
2634
|
+
/**
|
|
2635
|
+
* disallow unnecessary usage of 'useCallback'
|
|
2636
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-callback
|
|
2637
|
+
*/
|
|
2638
|
+
'react-hooks-extra/ensure-use-callback-has-non-empty-deps'?: Linter.RuleEntry<[]>
|
|
2629
2639
|
/**
|
|
2630
2640
|
* disallow unnecessary usage of 'useMemo'
|
|
2631
2641
|
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
|
|
@@ -2642,8 +2652,8 @@ interface RuleOptions {
|
|
|
2642
2652
|
*/
|
|
2643
2653
|
'react-hooks-extra/no-direct-set-state-in-use-layout-effect'?: Linter.RuleEntry<[]>
|
|
2644
2654
|
/**
|
|
2645
|
-
* enforce custom
|
|
2646
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-
|
|
2655
|
+
* enforce custom Hooks to use at least one other hook inside
|
|
2656
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-useless-custom-hooks
|
|
2647
2657
|
*/
|
|
2648
2658
|
'react-hooks-extra/no-redundant-custom-hook'?: Linter.RuleEntry<[]>
|
|
2649
2659
|
/**
|
|
@@ -2656,6 +2666,11 @@ interface RuleOptions {
|
|
|
2656
2666
|
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
|
|
2657
2667
|
*/
|
|
2658
2668
|
'react-hooks-extra/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>
|
|
2669
|
+
/**
|
|
2670
|
+
* enforce custom Hooks to use at least one other hook inside
|
|
2671
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-useless-custom-hooks
|
|
2672
|
+
*/
|
|
2673
|
+
'react-hooks-extra/no-useless-custom-hooks'?: Linter.RuleEntry<[]>
|
|
2659
2674
|
/**
|
|
2660
2675
|
* disallow function calls in 'useState' that aren't wrapped in an initializer function
|
|
2661
2676
|
* @see https://eslint-react.xyz/docs/rules/hooks-extra-prefer-use-state-lazy-initialization
|
|
@@ -2692,6 +2707,26 @@ interface RuleOptions {
|
|
|
2692
2707
|
*/
|
|
2693
2708
|
'react-naming-convention/use-state'?: Linter.RuleEntry<[]>
|
|
2694
2709
|
'react-refresh/only-export-components'?: Linter.RuleEntry<ReactRefreshOnlyExportComponents>
|
|
2710
|
+
/**
|
|
2711
|
+
* enforce that every 'addEventListener' in a component or custom Hook has a corresponding 'removeEventListener'.
|
|
2712
|
+
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-event-listener
|
|
2713
|
+
*/
|
|
2714
|
+
'react-web-api/no-leaked-event-listener'?: Linter.RuleEntry<[]>
|
|
2715
|
+
/**
|
|
2716
|
+
* enforce that every 'setInterval' in a component or custom Hook has a corresponding 'clearInterval'.
|
|
2717
|
+
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-interval
|
|
2718
|
+
*/
|
|
2719
|
+
'react-web-api/no-leaked-interval'?: Linter.RuleEntry<[]>
|
|
2720
|
+
/**
|
|
2721
|
+
* enforce cleanup of 'ResizeObserver' instances in components and custom Hooks.
|
|
2722
|
+
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-resize-observer
|
|
2723
|
+
*/
|
|
2724
|
+
'react-web-api/no-leaked-resize-observer'?: Linter.RuleEntry<[]>
|
|
2725
|
+
/**
|
|
2726
|
+
* enforce that every 'setTimeout' in a component or custom Hook has a corresponding 'clearTimeout'.
|
|
2727
|
+
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-timeout
|
|
2728
|
+
*/
|
|
2729
|
+
'react-web-api/no-leaked-timeout'?: Linter.RuleEntry<[]>
|
|
2695
2730
|
/**
|
|
2696
2731
|
* disallow using shorthand boolean attributes
|
|
2697
2732
|
* @see https://eslint-react.xyz/docs/rules/avoid-shorthand-boolean
|
|
@@ -2709,12 +2744,12 @@ interface RuleOptions {
|
|
|
2709
2744
|
'react/ensure-forward-ref-using-ref'?: Linter.RuleEntry<[]>
|
|
2710
2745
|
/**
|
|
2711
2746
|
* disallow duplicate props
|
|
2712
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
2747
|
+
* @see https://eslint-react.xyz/docs/rules/no-duplicate-jsx-props
|
|
2713
2748
|
*/
|
|
2714
2749
|
'react/jsx-no-duplicate-props'?: Linter.RuleEntry<[]>
|
|
2715
2750
|
/**
|
|
2716
|
-
*
|
|
2717
|
-
* @see https://eslint-react.xyz/docs/rules/jsx-
|
|
2751
|
+
* helpes `eslint/no-unused-vars` to correctly mark JSX variables as used.
|
|
2752
|
+
* @see https://eslint-react.xyz/docs/rules/use-jsx-vars
|
|
2718
2753
|
*/
|
|
2719
2754
|
'react/jsx-uses-vars'?: Linter.RuleEntry<[]>
|
|
2720
2755
|
/**
|
|
@@ -2797,6 +2832,11 @@ interface RuleOptions {
|
|
|
2797
2832
|
* @see https://eslint-react.xyz/docs/rules/no-component-will-update
|
|
2798
2833
|
*/
|
|
2799
2834
|
'react/no-component-will-update'?: Linter.RuleEntry<[]>
|
|
2835
|
+
/**
|
|
2836
|
+
* disallow the use of '<Context.Provider>'
|
|
2837
|
+
* @see https://eslint-react.xyz/docs/rules/no-context-provider
|
|
2838
|
+
*/
|
|
2839
|
+
'react/no-context-provider'?: Linter.RuleEntry<[]>
|
|
2800
2840
|
/**
|
|
2801
2841
|
* disallow using 'createRef' in function components
|
|
2802
2842
|
* @see https://eslint-react.xyz/docs/rules/no-create-ref
|
|
@@ -2812,11 +2852,21 @@ interface RuleOptions {
|
|
|
2812
2852
|
* @see https://eslint-react.xyz/docs/rules/no-direct-mutation-state
|
|
2813
2853
|
*/
|
|
2814
2854
|
'react/no-direct-mutation-state'?: Linter.RuleEntry<[]>
|
|
2855
|
+
/**
|
|
2856
|
+
* disallow duplicate props
|
|
2857
|
+
* @see https://eslint-react.xyz/docs/rules/no-duplicate-jsx-props
|
|
2858
|
+
*/
|
|
2859
|
+
'react/no-duplicate-jsx-props'?: Linter.RuleEntry<[]>
|
|
2815
2860
|
/**
|
|
2816
2861
|
* disallow duplicate keys when rendering list
|
|
2817
2862
|
* @see https://eslint-react.xyz/docs/rules/no-duplicate-key
|
|
2818
2863
|
*/
|
|
2819
2864
|
'react/no-duplicate-key'?: Linter.RuleEntry<[]>
|
|
2865
|
+
/**
|
|
2866
|
+
* disallow the use of 'forwardRef'
|
|
2867
|
+
* @see https://eslint-react.xyz/docs/rules/no-forward-ref
|
|
2868
|
+
*/
|
|
2869
|
+
'react/no-forward-ref'?: Linter.RuleEntry<[]>
|
|
2820
2870
|
/**
|
|
2821
2871
|
* disallow implicit 'key' props
|
|
2822
2872
|
* @see https://eslint-react.xyz/docs/rules/no-implicit-key
|
|
@@ -2937,6 +2987,11 @@ interface RuleOptions {
|
|
|
2937
2987
|
* @see https://eslint-react.xyz/docs/rules/prefer-shorthand-fragment
|
|
2938
2988
|
*/
|
|
2939
2989
|
'react/prefer-shorthand-fragment'?: Linter.RuleEntry<[]>
|
|
2990
|
+
/**
|
|
2991
|
+
* helpes `eslint/no-unused-vars` to correctly mark JSX variables as used.
|
|
2992
|
+
* @see https://eslint-react.xyz/docs/rules/use-jsx-vars
|
|
2993
|
+
*/
|
|
2994
|
+
'react/use-jsx-vars'?: Linter.RuleEntry<[]>
|
|
2940
2995
|
/**
|
|
2941
2996
|
* disallow confusing quantifiers
|
|
2942
2997
|
* @see https://ota-meshi.github.io/eslint-plugin-regexp/rules/confusing-quantifier.html
|
|
@@ -3358,7 +3413,7 @@ interface RuleOptions {
|
|
|
3358
3413
|
*/
|
|
3359
3414
|
'require-await'?: Linter.RuleEntry<[]>
|
|
3360
3415
|
/**
|
|
3361
|
-
* Enforce the use of `u` or `v` flag on
|
|
3416
|
+
* Enforce the use of `u` or `v` flag on regular expressions
|
|
3362
3417
|
* @see https://eslint.org/docs/latest/rules/require-unicode-regexp
|
|
3363
3418
|
*/
|
|
3364
3419
|
'require-unicode-regexp'?: Linter.RuleEntry<RequireUnicodeRegexp>
|
|
@@ -3392,7 +3447,7 @@ interface RuleOptions {
|
|
|
3392
3447
|
*/
|
|
3393
3448
|
'semi-style'?: Linter.RuleEntry<SemiStyle>
|
|
3394
3449
|
/**
|
|
3395
|
-
* Enforce sorted import declarations within modules
|
|
3450
|
+
* Enforce sorted `import` declarations within modules
|
|
3396
3451
|
* @see https://eslint.org/docs/latest/rules/sort-imports
|
|
3397
3452
|
*/
|
|
3398
3453
|
'sort-imports'?: Linter.RuleEntry<SortImports>
|
|
@@ -4118,7 +4173,7 @@ interface RuleOptions {
|
|
|
4118
4173
|
*/
|
|
4119
4174
|
'test/padding-around-expect-groups'?: Linter.RuleEntry<[]>
|
|
4120
4175
|
/**
|
|
4121
|
-
* Enforce padding around
|
|
4176
|
+
* Enforce padding around `test` blocks
|
|
4122
4177
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-test-blocks.md
|
|
4123
4178
|
*/
|
|
4124
4179
|
'test/padding-around-test-blocks'?: Linter.RuleEntry<[]>
|
|
@@ -4223,7 +4278,7 @@ interface RuleOptions {
|
|
|
4223
4278
|
*/
|
|
4224
4279
|
'test/prefer-todo'?: Linter.RuleEntry<[]>
|
|
4225
4280
|
/**
|
|
4226
|
-
*
|
|
4281
|
+
* require `vi.mocked()` over `fn as Mock`
|
|
4227
4282
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-vi-mocked.md
|
|
4228
4283
|
*/
|
|
4229
4284
|
'test/prefer-vi-mocked'?: Linter.RuleEntry<[]>
|
|
@@ -4258,7 +4313,7 @@ interface RuleOptions {
|
|
|
4258
4313
|
*/
|
|
4259
4314
|
'test/valid-expect'?: Linter.RuleEntry<TestValidExpect>
|
|
4260
4315
|
/**
|
|
4261
|
-
*
|
|
4316
|
+
* require promises that have expectations in their chain to be valid
|
|
4262
4317
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-expect-in-promise.md
|
|
4263
4318
|
*/
|
|
4264
4319
|
'test/valid-expect-in-promise'?: Linter.RuleEntry<[]>
|
|
@@ -4843,7 +4898,7 @@ interface RuleOptions {
|
|
|
4843
4898
|
*/
|
|
4844
4899
|
'ts/no-wrapper-object-types'?: Linter.RuleEntry<[]>
|
|
4845
4900
|
/**
|
|
4846
|
-
* Enforce non-null assertions over explicit type
|
|
4901
|
+
* Enforce non-null assertions over explicit type assertions
|
|
4847
4902
|
* @see https://typescript-eslint.io/rules/non-nullable-type-assertion-style
|
|
4848
4903
|
*/
|
|
4849
4904
|
'ts/non-nullable-type-assertion-style'?: Linter.RuleEntry<[]>
|
|
@@ -4928,7 +4983,7 @@ interface RuleOptions {
|
|
|
4928
4983
|
*/
|
|
4929
4984
|
'ts/prefer-readonly-parameter-types'?: Linter.RuleEntry<TsPreferReadonlyParameterTypes>
|
|
4930
4985
|
/**
|
|
4931
|
-
* Enforce using type parameter when calling `Array#reduce` instead of
|
|
4986
|
+
* Enforce using type parameter when calling `Array#reduce` instead of using a type assertion
|
|
4932
4987
|
* @see https://typescript-eslint.io/rules/prefer-reduce-type-parameter
|
|
4933
4988
|
*/
|
|
4934
4989
|
'ts/prefer-reduce-type-parameter'?: Linter.RuleEntry<[]>
|
|
@@ -9443,6 +9498,9 @@ type NodeNoExtraneousImport = []|[{
|
|
|
9443
9498
|
replace: [string, string]
|
|
9444
9499
|
})[]])
|
|
9445
9500
|
resolvePaths?: string[]
|
|
9501
|
+
resolverConfig?: {
|
|
9502
|
+
[k: string]: unknown | undefined
|
|
9503
|
+
}
|
|
9446
9504
|
}]
|
|
9447
9505
|
// ----- node/no-extraneous-require -----
|
|
9448
9506
|
type NodeNoExtraneousRequire = []|[{
|
|
@@ -9464,6 +9522,9 @@ type NodeNoExtraneousRequire = []|[{
|
|
|
9464
9522
|
replace: [string, string]
|
|
9465
9523
|
})[]])
|
|
9466
9524
|
resolvePaths?: string[]
|
|
9525
|
+
resolverConfig?: {
|
|
9526
|
+
[k: string]: unknown | undefined
|
|
9527
|
+
}
|
|
9467
9528
|
tryExtensions?: string[]
|
|
9468
9529
|
}]
|
|
9469
9530
|
// ----- node/no-hide-core-modules -----
|
|
@@ -9476,6 +9537,9 @@ type NodeNoHideCoreModules = []|[{
|
|
|
9476
9537
|
type NodeNoMissingImport = []|[{
|
|
9477
9538
|
allowModules?: string[]
|
|
9478
9539
|
resolvePaths?: string[]
|
|
9540
|
+
resolverConfig?: {
|
|
9541
|
+
[k: string]: unknown | undefined
|
|
9542
|
+
}
|
|
9479
9543
|
tryExtensions?: string[]
|
|
9480
9544
|
ignoreTypeImport?: boolean
|
|
9481
9545
|
tsconfigPath?: string
|
|
@@ -9486,6 +9550,9 @@ type NodeNoMissingRequire = []|[{
|
|
|
9486
9550
|
allowModules?: string[]
|
|
9487
9551
|
tryExtensions?: string[]
|
|
9488
9552
|
resolvePaths?: string[]
|
|
9553
|
+
resolverConfig?: {
|
|
9554
|
+
[k: string]: unknown | undefined
|
|
9555
|
+
}
|
|
9489
9556
|
typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
|
|
9490
9557
|
tsconfigPath?: string
|
|
9491
9558
|
}]
|
|
@@ -9553,6 +9620,9 @@ type NodeNoUnpublishedImport = []|[{
|
|
|
9553
9620
|
replace: [string, string]
|
|
9554
9621
|
})[]])
|
|
9555
9622
|
resolvePaths?: string[]
|
|
9623
|
+
resolverConfig?: {
|
|
9624
|
+
[k: string]: unknown | undefined
|
|
9625
|
+
}
|
|
9556
9626
|
ignoreTypeImport?: boolean
|
|
9557
9627
|
ignorePrivate?: boolean
|
|
9558
9628
|
}]
|
|
@@ -9576,6 +9646,9 @@ type NodeNoUnpublishedRequire = []|[{
|
|
|
9576
9646
|
replace: [string, string]
|
|
9577
9647
|
})[]])
|
|
9578
9648
|
resolvePaths?: string[]
|
|
9649
|
+
resolverConfig?: {
|
|
9650
|
+
[k: string]: unknown | undefined
|
|
9651
|
+
}
|
|
9579
9652
|
tryExtensions?: string[]
|
|
9580
9653
|
ignorePrivate?: boolean
|
|
9581
9654
|
}]
|
|
@@ -9593,7 +9666,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
9593
9666
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
9594
9667
|
version?: string
|
|
9595
9668
|
allowExperimental?: boolean
|
|
9596
|
-
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")[]
|
|
9669
|
+
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "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")[]
|
|
9597
9670
|
}]
|
|
9598
9671
|
// ----- node/prefer-global/buffer -----
|
|
9599
9672
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -9734,27 +9807,80 @@ type PaddingLineBetweenStatements = {
|
|
|
9734
9807
|
next: _PaddingLineBetweenStatementsStatementType
|
|
9735
9808
|
}[]
|
|
9736
9809
|
// ----- perfectionist/sort-array-includes -----
|
|
9737
|
-
type PerfectionistSortArrayIncludes =
|
|
9810
|
+
type PerfectionistSortArrayIncludes = {
|
|
9738
9811
|
|
|
9739
|
-
partitionByComment?: (string[] | boolean | string
|
|
9812
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9813
|
+
block?: (string[] | boolean | string)
|
|
9814
|
+
line?: (string[] | boolean | string)
|
|
9815
|
+
[k: string]: unknown | undefined
|
|
9816
|
+
})
|
|
9740
9817
|
|
|
9741
9818
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
9742
9819
|
|
|
9820
|
+
customGroups?: ({
|
|
9821
|
+
|
|
9822
|
+
groupName?: string
|
|
9823
|
+
|
|
9824
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9825
|
+
|
|
9826
|
+
order?: ("desc" | "asc")
|
|
9827
|
+
|
|
9828
|
+
newlinesInside?: ("always" | "never")
|
|
9829
|
+
anyOf?: {
|
|
9830
|
+
|
|
9831
|
+
selector?: ("literal" | "spread")
|
|
9832
|
+
|
|
9833
|
+
elementNamePattern?: string
|
|
9834
|
+
}[]
|
|
9835
|
+
} | {
|
|
9836
|
+
|
|
9837
|
+
groupName?: string
|
|
9838
|
+
|
|
9839
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9840
|
+
|
|
9841
|
+
order?: ("desc" | "asc")
|
|
9842
|
+
|
|
9843
|
+
newlinesInside?: ("always" | "never")
|
|
9844
|
+
|
|
9845
|
+
selector?: ("literal" | "spread")
|
|
9846
|
+
|
|
9847
|
+
elementNamePattern?: string
|
|
9848
|
+
})[]
|
|
9849
|
+
useConfigurationIf?: {
|
|
9850
|
+
allNamesMatchPattern?: string
|
|
9851
|
+
}
|
|
9852
|
+
|
|
9853
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9854
|
+
|
|
9743
9855
|
partitionByNewLine?: boolean
|
|
9744
9856
|
|
|
9745
9857
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9746
9858
|
|
|
9747
9859
|
ignoreCase?: boolean
|
|
9748
9860
|
|
|
9861
|
+
alphabet?: string
|
|
9862
|
+
|
|
9749
9863
|
locales?: (string | string[])
|
|
9750
9864
|
|
|
9751
|
-
|
|
9865
|
+
groups?: (string | string[] | {
|
|
9866
|
+
|
|
9867
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9868
|
+
[k: string]: unknown | undefined
|
|
9869
|
+
})[]
|
|
9752
9870
|
|
|
9753
|
-
|
|
9754
|
-
}]
|
|
9871
|
+
order?: ("asc" | "desc")
|
|
9872
|
+
}[]
|
|
9755
9873
|
// ----- perfectionist/sort-classes -----
|
|
9756
9874
|
type PerfectionistSortClasses = []|[{
|
|
9757
9875
|
|
|
9876
|
+
ignoreCallbackDependenciesPatterns?: string[]
|
|
9877
|
+
|
|
9878
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9879
|
+
block?: (string[] | boolean | string)
|
|
9880
|
+
line?: (string[] | boolean | string)
|
|
9881
|
+
[k: string]: unknown | undefined
|
|
9882
|
+
})
|
|
9883
|
+
|
|
9758
9884
|
customGroups?: ({
|
|
9759
9885
|
|
|
9760
9886
|
groupName?: string
|
|
@@ -9762,14 +9888,16 @@ type PerfectionistSortClasses = []|[{
|
|
|
9762
9888
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9763
9889
|
|
|
9764
9890
|
order?: ("desc" | "asc")
|
|
9891
|
+
|
|
9892
|
+
newlinesInside?: ("always" | "never")
|
|
9765
9893
|
anyOf?: {
|
|
9766
9894
|
|
|
9767
|
-
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
9768
|
-
|
|
9769
9895
|
elementValuePattern?: string
|
|
9770
9896
|
|
|
9771
9897
|
decoratorNamePattern?: string
|
|
9772
9898
|
|
|
9899
|
+
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
9900
|
+
|
|
9773
9901
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
9774
9902
|
|
|
9775
9903
|
elementNamePattern?: string
|
|
@@ -9782,21 +9910,19 @@ type PerfectionistSortClasses = []|[{
|
|
|
9782
9910
|
|
|
9783
9911
|
order?: ("desc" | "asc")
|
|
9784
9912
|
|
|
9785
|
-
|
|
9913
|
+
newlinesInside?: ("always" | "never")
|
|
9786
9914
|
|
|
9787
9915
|
elementValuePattern?: string
|
|
9788
9916
|
|
|
9789
9917
|
decoratorNamePattern?: string
|
|
9790
9918
|
|
|
9919
|
+
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
9920
|
+
|
|
9791
9921
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
9792
9922
|
|
|
9793
9923
|
elementNamePattern?: string
|
|
9794
9924
|
})[]
|
|
9795
9925
|
|
|
9796
|
-
ignoreCallbackDependenciesPatterns?: string[]
|
|
9797
|
-
|
|
9798
|
-
partitionByComment?: (string[] | boolean | string)
|
|
9799
|
-
|
|
9800
9926
|
partitionByNewLine?: boolean
|
|
9801
9927
|
|
|
9802
9928
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -9805,18 +9931,28 @@ type PerfectionistSortClasses = []|[{
|
|
|
9805
9931
|
|
|
9806
9932
|
ignoreCase?: boolean
|
|
9807
9933
|
|
|
9934
|
+
alphabet?: string
|
|
9935
|
+
|
|
9936
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9937
|
+
|
|
9808
9938
|
locales?: (string | string[])
|
|
9809
9939
|
|
|
9810
|
-
groups?: (string | string[]
|
|
9940
|
+
groups?: (string | string[] | {
|
|
9941
|
+
|
|
9942
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9943
|
+
[k: string]: unknown | undefined
|
|
9944
|
+
})[]
|
|
9811
9945
|
|
|
9812
9946
|
order?: ("asc" | "desc")
|
|
9813
|
-
|
|
9814
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9815
9947
|
}]
|
|
9816
9948
|
// ----- perfectionist/sort-decorators -----
|
|
9817
9949
|
type PerfectionistSortDecorators = []|[{
|
|
9818
9950
|
|
|
9819
|
-
partitionByComment?: (string[] | boolean | string
|
|
9951
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9952
|
+
block?: (string[] | boolean | string)
|
|
9953
|
+
line?: (string[] | boolean | string)
|
|
9954
|
+
[k: string]: unknown | undefined
|
|
9955
|
+
})
|
|
9820
9956
|
|
|
9821
9957
|
sortOnParameters?: boolean
|
|
9822
9958
|
|
|
@@ -9836,18 +9972,28 @@ type PerfectionistSortDecorators = []|[{
|
|
|
9836
9972
|
|
|
9837
9973
|
ignoreCase?: boolean
|
|
9838
9974
|
|
|
9975
|
+
alphabet?: string
|
|
9976
|
+
|
|
9977
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9978
|
+
|
|
9839
9979
|
locales?: (string | string[])
|
|
9840
9980
|
|
|
9841
|
-
groups?: (string | string[]
|
|
9981
|
+
groups?: (string | string[] | {
|
|
9982
|
+
|
|
9983
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9984
|
+
[k: string]: unknown | undefined
|
|
9985
|
+
})[]
|
|
9842
9986
|
|
|
9843
9987
|
order?: ("asc" | "desc")
|
|
9844
|
-
|
|
9845
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9846
9988
|
}]
|
|
9847
9989
|
// ----- perfectionist/sort-enums -----
|
|
9848
9990
|
type PerfectionistSortEnums = []|[{
|
|
9849
9991
|
|
|
9850
|
-
partitionByComment?: (string[] | boolean | string
|
|
9992
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9993
|
+
block?: (string[] | boolean | string)
|
|
9994
|
+
line?: (string[] | boolean | string)
|
|
9995
|
+
[k: string]: unknown | undefined
|
|
9996
|
+
})
|
|
9851
9997
|
|
|
9852
9998
|
forceNumericSort?: boolean
|
|
9853
9999
|
|
|
@@ -9859,16 +10005,22 @@ type PerfectionistSortEnums = []|[{
|
|
|
9859
10005
|
|
|
9860
10006
|
ignoreCase?: boolean
|
|
9861
10007
|
|
|
10008
|
+
alphabet?: string
|
|
10009
|
+
|
|
10010
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10011
|
+
|
|
9862
10012
|
locales?: (string | string[])
|
|
9863
10013
|
|
|
9864
10014
|
order?: ("asc" | "desc")
|
|
9865
|
-
|
|
9866
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9867
10015
|
}]
|
|
9868
10016
|
// ----- perfectionist/sort-exports -----
|
|
9869
10017
|
type PerfectionistSortExports = []|[{
|
|
9870
10018
|
|
|
9871
|
-
partitionByComment?: (string[] | boolean | string
|
|
10019
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10020
|
+
block?: (string[] | boolean | string)
|
|
10021
|
+
line?: (string[] | boolean | string)
|
|
10022
|
+
[k: string]: unknown | undefined
|
|
10023
|
+
})
|
|
9872
10024
|
|
|
9873
10025
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
9874
10026
|
|
|
@@ -9878,11 +10030,13 @@ type PerfectionistSortExports = []|[{
|
|
|
9878
10030
|
|
|
9879
10031
|
ignoreCase?: boolean
|
|
9880
10032
|
|
|
10033
|
+
alphabet?: string
|
|
10034
|
+
|
|
10035
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10036
|
+
|
|
9881
10037
|
locales?: (string | string[])
|
|
9882
10038
|
|
|
9883
10039
|
order?: ("asc" | "desc")
|
|
9884
|
-
|
|
9885
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9886
10040
|
}]
|
|
9887
10041
|
// ----- perfectionist/sort-heritage-clauses -----
|
|
9888
10042
|
type PerfectionistSortHeritageClauses = []|[{
|
|
@@ -9895,13 +10049,19 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
9895
10049
|
|
|
9896
10050
|
ignoreCase?: boolean
|
|
9897
10051
|
|
|
10052
|
+
alphabet?: string
|
|
10053
|
+
|
|
10054
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10055
|
+
|
|
9898
10056
|
locales?: (string | string[])
|
|
9899
10057
|
|
|
9900
|
-
groups?: (string | string[]
|
|
10058
|
+
groups?: (string | string[] | {
|
|
10059
|
+
|
|
10060
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10061
|
+
[k: string]: unknown | undefined
|
|
10062
|
+
})[]
|
|
9901
10063
|
|
|
9902
10064
|
order?: ("asc" | "desc")
|
|
9903
|
-
|
|
9904
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9905
10065
|
}]
|
|
9906
10066
|
// ----- perfectionist/sort-imports -----
|
|
9907
10067
|
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
@@ -9918,7 +10078,11 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
9918
10078
|
}
|
|
9919
10079
|
}
|
|
9920
10080
|
|
|
9921
|
-
partitionByComment?: (string[] | boolean | string
|
|
10081
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10082
|
+
block?: (string[] | boolean | string)
|
|
10083
|
+
line?: (string[] | boolean | string)
|
|
10084
|
+
[k: string]: unknown | undefined
|
|
10085
|
+
})
|
|
9922
10086
|
|
|
9923
10087
|
internalPattern?: string[]
|
|
9924
10088
|
|
|
@@ -9938,13 +10102,19 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
9938
10102
|
|
|
9939
10103
|
ignoreCase?: boolean
|
|
9940
10104
|
|
|
10105
|
+
alphabet?: string
|
|
10106
|
+
|
|
10107
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10108
|
+
|
|
9941
10109
|
locales?: (string | string[])
|
|
9942
10110
|
|
|
9943
|
-
groups?: (string | string[]
|
|
10111
|
+
groups?: (string | string[] | {
|
|
10112
|
+
|
|
10113
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10114
|
+
[k: string]: unknown | undefined
|
|
10115
|
+
})[]
|
|
9944
10116
|
|
|
9945
10117
|
order?: ("asc" | "desc")
|
|
9946
|
-
|
|
9947
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9948
10118
|
})
|
|
9949
10119
|
type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
|
|
9950
10120
|
[k: string]: unknown | undefined
|
|
@@ -9954,13 +10124,58 @@ interface _PerfectionistSortImports_IsLineLength {
|
|
|
9954
10124
|
[k: string]: unknown | undefined
|
|
9955
10125
|
}
|
|
9956
10126
|
// ----- perfectionist/sort-interfaces -----
|
|
9957
|
-
type PerfectionistSortInterfaces =
|
|
10127
|
+
type PerfectionistSortInterfaces = {
|
|
9958
10128
|
|
|
9959
10129
|
ignorePattern?: string[]
|
|
10130
|
+
useConfigurationIf?: {
|
|
10131
|
+
allNamesMatchPattern?: string
|
|
10132
|
+
declarationMatchesPattern?: string
|
|
10133
|
+
}
|
|
9960
10134
|
|
|
9961
|
-
partitionByComment?: (string[] | boolean | string
|
|
10135
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10136
|
+
block?: (string[] | boolean | string)
|
|
10137
|
+
line?: (string[] | boolean | string)
|
|
10138
|
+
[k: string]: unknown | undefined
|
|
10139
|
+
})
|
|
10140
|
+
customGroups?: ({
|
|
10141
|
+
[k: string]: (string | string[]) | undefined
|
|
10142
|
+
} | ({
|
|
10143
|
+
|
|
10144
|
+
groupName?: string
|
|
10145
|
+
|
|
10146
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10147
|
+
|
|
10148
|
+
order?: ("desc" | "asc")
|
|
10149
|
+
|
|
10150
|
+
newlinesInside?: ("always" | "never")
|
|
10151
|
+
anyOf?: {
|
|
10152
|
+
|
|
10153
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
10154
|
+
|
|
10155
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
10156
|
+
|
|
10157
|
+
elementNamePattern?: string
|
|
10158
|
+
}[]
|
|
10159
|
+
} | {
|
|
10160
|
+
|
|
10161
|
+
groupName?: string
|
|
10162
|
+
|
|
10163
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10164
|
+
|
|
10165
|
+
order?: ("desc" | "asc")
|
|
10166
|
+
|
|
10167
|
+
newlinesInside?: ("always" | "never")
|
|
10168
|
+
|
|
10169
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
10170
|
+
|
|
10171
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
10172
|
+
|
|
10173
|
+
elementNamePattern?: string
|
|
10174
|
+
})[])
|
|
10175
|
+
|
|
10176
|
+
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
9962
10177
|
|
|
9963
|
-
|
|
10178
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9964
10179
|
|
|
9965
10180
|
partitionByNewLine?: boolean
|
|
9966
10181
|
|
|
@@ -9968,24 +10183,28 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
9968
10183
|
|
|
9969
10184
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9970
10185
|
|
|
9971
|
-
customGroups?: {
|
|
9972
|
-
[k: string]: (string | string[]) | undefined
|
|
9973
|
-
}
|
|
9974
|
-
|
|
9975
10186
|
ignoreCase?: boolean
|
|
9976
10187
|
|
|
10188
|
+
alphabet?: string
|
|
10189
|
+
|
|
9977
10190
|
locales?: (string | string[])
|
|
9978
10191
|
|
|
9979
|
-
groups?: (string | string[]
|
|
10192
|
+
groups?: (string | string[] | {
|
|
10193
|
+
|
|
10194
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10195
|
+
[k: string]: unknown | undefined
|
|
10196
|
+
})[]
|
|
9980
10197
|
|
|
9981
10198
|
order?: ("asc" | "desc")
|
|
9982
|
-
|
|
9983
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9984
|
-
}]
|
|
10199
|
+
}[]
|
|
9985
10200
|
// ----- perfectionist/sort-intersection-types -----
|
|
9986
10201
|
type PerfectionistSortIntersectionTypes = []|[{
|
|
9987
10202
|
|
|
9988
|
-
partitionByComment?: (string[] | boolean | string
|
|
10203
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10204
|
+
block?: (string[] | boolean | string)
|
|
10205
|
+
line?: (string[] | boolean | string)
|
|
10206
|
+
[k: string]: unknown | undefined
|
|
10207
|
+
})
|
|
9989
10208
|
|
|
9990
10209
|
partitionByNewLine?: boolean
|
|
9991
10210
|
|
|
@@ -9995,13 +10214,19 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
9995
10214
|
|
|
9996
10215
|
ignoreCase?: boolean
|
|
9997
10216
|
|
|
10217
|
+
alphabet?: string
|
|
10218
|
+
|
|
10219
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10220
|
+
|
|
9998
10221
|
locales?: (string | string[])
|
|
9999
10222
|
|
|
10000
|
-
groups?: (string | string[]
|
|
10223
|
+
groups?: (string | string[] | {
|
|
10224
|
+
|
|
10225
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10226
|
+
[k: string]: unknown | undefined
|
|
10227
|
+
})[]
|
|
10001
10228
|
|
|
10002
10229
|
order?: ("asc" | "desc")
|
|
10003
|
-
|
|
10004
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10005
10230
|
}]
|
|
10006
10231
|
// ----- perfectionist/sort-jsx-props -----
|
|
10007
10232
|
type PerfectionistSortJsxProps = []|[{
|
|
@@ -10016,18 +10241,28 @@ type PerfectionistSortJsxProps = []|[{
|
|
|
10016
10241
|
|
|
10017
10242
|
ignoreCase?: boolean
|
|
10018
10243
|
|
|
10244
|
+
alphabet?: string
|
|
10245
|
+
|
|
10246
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10247
|
+
|
|
10019
10248
|
locales?: (string | string[])
|
|
10020
10249
|
|
|
10021
|
-
groups?: (string | string[]
|
|
10250
|
+
groups?: (string | string[] | {
|
|
10251
|
+
|
|
10252
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10253
|
+
[k: string]: unknown | undefined
|
|
10254
|
+
})[]
|
|
10022
10255
|
|
|
10023
10256
|
order?: ("asc" | "desc")
|
|
10024
|
-
|
|
10025
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10026
10257
|
}]
|
|
10027
10258
|
// ----- perfectionist/sort-maps -----
|
|
10028
10259
|
type PerfectionistSortMaps = []|[{
|
|
10029
10260
|
|
|
10030
|
-
partitionByComment?: (string[] | boolean | string
|
|
10261
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10262
|
+
block?: (string[] | boolean | string)
|
|
10263
|
+
line?: (string[] | boolean | string)
|
|
10264
|
+
[k: string]: unknown | undefined
|
|
10265
|
+
})
|
|
10031
10266
|
|
|
10032
10267
|
partitionByNewLine?: boolean
|
|
10033
10268
|
|
|
@@ -10035,15 +10270,23 @@ type PerfectionistSortMaps = []|[{
|
|
|
10035
10270
|
|
|
10036
10271
|
ignoreCase?: boolean
|
|
10037
10272
|
|
|
10273
|
+
alphabet?: string
|
|
10274
|
+
|
|
10275
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10276
|
+
|
|
10038
10277
|
locales?: (string | string[])
|
|
10039
10278
|
|
|
10040
10279
|
order?: ("asc" | "desc")
|
|
10041
|
-
|
|
10042
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10043
10280
|
}]
|
|
10044
10281
|
// ----- perfectionist/sort-modules -----
|
|
10045
10282
|
type PerfectionistSortModules = []|[{
|
|
10046
10283
|
|
|
10284
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10285
|
+
block?: (string[] | boolean | string)
|
|
10286
|
+
line?: (string[] | boolean | string)
|
|
10287
|
+
[k: string]: unknown | undefined
|
|
10288
|
+
})
|
|
10289
|
+
|
|
10047
10290
|
customGroups?: ({
|
|
10048
10291
|
|
|
10049
10292
|
groupName?: string
|
|
@@ -10051,14 +10294,14 @@ type PerfectionistSortModules = []|[{
|
|
|
10051
10294
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10052
10295
|
|
|
10053
10296
|
order?: ("desc" | "asc")
|
|
10297
|
+
|
|
10298
|
+
newlinesInside?: ("always" | "never")
|
|
10054
10299
|
anyOf?: {
|
|
10055
10300
|
|
|
10056
|
-
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
10057
|
-
|
|
10058
|
-
elementValuePattern?: string
|
|
10059
|
-
|
|
10060
10301
|
decoratorNamePattern?: string
|
|
10061
10302
|
|
|
10303
|
+
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
10304
|
+
|
|
10062
10305
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
10063
10306
|
|
|
10064
10307
|
elementNamePattern?: string
|
|
@@ -10071,19 +10314,17 @@ type PerfectionistSortModules = []|[{
|
|
|
10071
10314
|
|
|
10072
10315
|
order?: ("desc" | "asc")
|
|
10073
10316
|
|
|
10074
|
-
|
|
10075
|
-
|
|
10076
|
-
elementValuePattern?: string
|
|
10317
|
+
newlinesInside?: ("always" | "never")
|
|
10077
10318
|
|
|
10078
10319
|
decoratorNamePattern?: string
|
|
10079
10320
|
|
|
10321
|
+
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
10322
|
+
|
|
10080
10323
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
10081
10324
|
|
|
10082
10325
|
elementNamePattern?: string
|
|
10083
10326
|
})[]
|
|
10084
10327
|
|
|
10085
|
-
partitionByComment?: (string[] | boolean | string)
|
|
10086
|
-
|
|
10087
10328
|
partitionByNewLine?: boolean
|
|
10088
10329
|
|
|
10089
10330
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -10092,18 +10333,28 @@ type PerfectionistSortModules = []|[{
|
|
|
10092
10333
|
|
|
10093
10334
|
ignoreCase?: boolean
|
|
10094
10335
|
|
|
10336
|
+
alphabet?: string
|
|
10337
|
+
|
|
10338
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10339
|
+
|
|
10095
10340
|
locales?: (string | string[])
|
|
10096
10341
|
|
|
10097
|
-
groups?: (string | string[]
|
|
10342
|
+
groups?: (string | string[] | {
|
|
10343
|
+
|
|
10344
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10345
|
+
[k: string]: unknown | undefined
|
|
10346
|
+
})[]
|
|
10098
10347
|
|
|
10099
10348
|
order?: ("asc" | "desc")
|
|
10100
|
-
|
|
10101
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10102
10349
|
}]
|
|
10103
10350
|
// ----- perfectionist/sort-named-exports -----
|
|
10104
10351
|
type PerfectionistSortNamedExports = []|[{
|
|
10105
10352
|
|
|
10106
|
-
partitionByComment?: (string[] | boolean | string
|
|
10353
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10354
|
+
block?: (string[] | boolean | string)
|
|
10355
|
+
line?: (string[] | boolean | string)
|
|
10356
|
+
[k: string]: unknown | undefined
|
|
10357
|
+
})
|
|
10107
10358
|
|
|
10108
10359
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10109
10360
|
|
|
@@ -10113,16 +10364,22 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
10113
10364
|
|
|
10114
10365
|
ignoreCase?: boolean
|
|
10115
10366
|
|
|
10367
|
+
alphabet?: string
|
|
10368
|
+
|
|
10369
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10370
|
+
|
|
10116
10371
|
locales?: (string | string[])
|
|
10117
10372
|
|
|
10118
10373
|
order?: ("asc" | "desc")
|
|
10119
|
-
|
|
10120
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10121
10374
|
}]
|
|
10122
10375
|
// ----- perfectionist/sort-named-imports -----
|
|
10123
10376
|
type PerfectionistSortNamedImports = []|[{
|
|
10124
10377
|
|
|
10125
|
-
partitionByComment?: (string[] | boolean | string
|
|
10378
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10379
|
+
block?: (string[] | boolean | string)
|
|
10380
|
+
line?: (string[] | boolean | string)
|
|
10381
|
+
[k: string]: unknown | undefined
|
|
10382
|
+
})
|
|
10126
10383
|
|
|
10127
10384
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10128
10385
|
|
|
@@ -10134,41 +10391,90 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
10134
10391
|
|
|
10135
10392
|
ignoreCase?: boolean
|
|
10136
10393
|
|
|
10394
|
+
alphabet?: string
|
|
10395
|
+
|
|
10396
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10397
|
+
|
|
10137
10398
|
locales?: (string | string[])
|
|
10138
10399
|
|
|
10139
10400
|
order?: ("asc" | "desc")
|
|
10140
|
-
|
|
10141
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10142
10401
|
}]
|
|
10143
10402
|
// ----- perfectionist/sort-object-types -----
|
|
10144
|
-
type PerfectionistSortObjectTypes =
|
|
10403
|
+
type PerfectionistSortObjectTypes = {
|
|
10145
10404
|
|
|
10146
|
-
|
|
10405
|
+
ignorePattern?: string[]
|
|
10406
|
+
useConfigurationIf?: {
|
|
10407
|
+
allNamesMatchPattern?: string
|
|
10408
|
+
declarationMatchesPattern?: string
|
|
10409
|
+
}
|
|
10410
|
+
|
|
10411
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10412
|
+
block?: (string[] | boolean | string)
|
|
10413
|
+
line?: (string[] | boolean | string)
|
|
10414
|
+
[k: string]: unknown | undefined
|
|
10415
|
+
})
|
|
10416
|
+
customGroups?: ({
|
|
10417
|
+
[k: string]: (string | string[]) | undefined
|
|
10418
|
+
} | ({
|
|
10419
|
+
|
|
10420
|
+
groupName?: string
|
|
10421
|
+
|
|
10422
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10423
|
+
|
|
10424
|
+
order?: ("desc" | "asc")
|
|
10425
|
+
|
|
10426
|
+
newlinesInside?: ("always" | "never")
|
|
10427
|
+
anyOf?: {
|
|
10428
|
+
|
|
10429
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
10430
|
+
|
|
10431
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
10432
|
+
|
|
10433
|
+
elementNamePattern?: string
|
|
10434
|
+
}[]
|
|
10435
|
+
} | {
|
|
10436
|
+
|
|
10437
|
+
groupName?: string
|
|
10438
|
+
|
|
10439
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10440
|
+
|
|
10441
|
+
order?: ("desc" | "asc")
|
|
10442
|
+
|
|
10443
|
+
newlinesInside?: ("always" | "never")
|
|
10444
|
+
|
|
10445
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
10446
|
+
|
|
10447
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
10448
|
+
|
|
10449
|
+
elementNamePattern?: string
|
|
10450
|
+
})[])
|
|
10147
10451
|
|
|
10148
10452
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
10149
10453
|
|
|
10454
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10455
|
+
|
|
10150
10456
|
partitionByNewLine?: boolean
|
|
10151
10457
|
|
|
10152
10458
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10153
10459
|
|
|
10154
10460
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10155
10461
|
|
|
10156
|
-
customGroups?: {
|
|
10157
|
-
[k: string]: (string | string[]) | undefined
|
|
10158
|
-
}
|
|
10159
|
-
|
|
10160
10462
|
ignoreCase?: boolean
|
|
10161
10463
|
|
|
10464
|
+
alphabet?: string
|
|
10465
|
+
|
|
10162
10466
|
locales?: (string | string[])
|
|
10163
10467
|
|
|
10164
|
-
groups?: (string | string[]
|
|
10468
|
+
groups?: (string | string[] | {
|
|
10469
|
+
|
|
10470
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10471
|
+
[k: string]: unknown | undefined
|
|
10472
|
+
})[]
|
|
10165
10473
|
|
|
10166
10474
|
order?: ("asc" | "desc")
|
|
10167
|
-
|
|
10168
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10169
|
-
}]
|
|
10475
|
+
}[]
|
|
10170
10476
|
// ----- perfectionist/sort-objects -----
|
|
10171
|
-
type PerfectionistSortObjects =
|
|
10477
|
+
type PerfectionistSortObjects = {
|
|
10172
10478
|
|
|
10173
10479
|
destructuredObjects?: (boolean | {
|
|
10174
10480
|
|
|
@@ -10176,8 +10482,16 @@ type PerfectionistSortObjects = []|[{
|
|
|
10176
10482
|
})
|
|
10177
10483
|
|
|
10178
10484
|
ignorePattern?: string[]
|
|
10485
|
+
useConfigurationIf?: {
|
|
10486
|
+
allNamesMatchPattern?: string
|
|
10487
|
+
callingFunctionNamePattern?: string
|
|
10488
|
+
}
|
|
10179
10489
|
|
|
10180
|
-
partitionByComment?: (string[] | boolean | string
|
|
10490
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10491
|
+
block?: (string[] | boolean | string)
|
|
10492
|
+
line?: (string[] | boolean | string)
|
|
10493
|
+
[k: string]: unknown | undefined
|
|
10494
|
+
})
|
|
10181
10495
|
|
|
10182
10496
|
destructureOnly?: boolean
|
|
10183
10497
|
|
|
@@ -10185,6 +10499,8 @@ type PerfectionistSortObjects = []|[{
|
|
|
10185
10499
|
|
|
10186
10500
|
styledComponents?: boolean
|
|
10187
10501
|
|
|
10502
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10503
|
+
|
|
10188
10504
|
partitionByNewLine?: boolean
|
|
10189
10505
|
|
|
10190
10506
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -10197,33 +10513,82 @@ type PerfectionistSortObjects = []|[{
|
|
|
10197
10513
|
|
|
10198
10514
|
ignoreCase?: boolean
|
|
10199
10515
|
|
|
10516
|
+
alphabet?: string
|
|
10517
|
+
|
|
10200
10518
|
locales?: (string | string[])
|
|
10201
10519
|
|
|
10202
|
-
groups?: (string | string[]
|
|
10520
|
+
groups?: (string | string[] | {
|
|
10521
|
+
|
|
10522
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10523
|
+
[k: string]: unknown | undefined
|
|
10524
|
+
})[]
|
|
10203
10525
|
|
|
10204
10526
|
order?: ("asc" | "desc")
|
|
10205
|
-
|
|
10206
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10207
|
-
}]
|
|
10527
|
+
}[]
|
|
10208
10528
|
// ----- perfectionist/sort-sets -----
|
|
10209
|
-
type PerfectionistSortSets =
|
|
10529
|
+
type PerfectionistSortSets = {
|
|
10210
10530
|
|
|
10211
|
-
partitionByComment?: (string[] | boolean | string
|
|
10531
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10532
|
+
block?: (string[] | boolean | string)
|
|
10533
|
+
line?: (string[] | boolean | string)
|
|
10534
|
+
[k: string]: unknown | undefined
|
|
10535
|
+
})
|
|
10212
10536
|
|
|
10213
10537
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
10214
10538
|
|
|
10539
|
+
customGroups?: ({
|
|
10540
|
+
|
|
10541
|
+
groupName?: string
|
|
10542
|
+
|
|
10543
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10544
|
+
|
|
10545
|
+
order?: ("desc" | "asc")
|
|
10546
|
+
|
|
10547
|
+
newlinesInside?: ("always" | "never")
|
|
10548
|
+
anyOf?: {
|
|
10549
|
+
|
|
10550
|
+
selector?: ("literal" | "spread")
|
|
10551
|
+
|
|
10552
|
+
elementNamePattern?: string
|
|
10553
|
+
}[]
|
|
10554
|
+
} | {
|
|
10555
|
+
|
|
10556
|
+
groupName?: string
|
|
10557
|
+
|
|
10558
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10559
|
+
|
|
10560
|
+
order?: ("desc" | "asc")
|
|
10561
|
+
|
|
10562
|
+
newlinesInside?: ("always" | "never")
|
|
10563
|
+
|
|
10564
|
+
selector?: ("literal" | "spread")
|
|
10565
|
+
|
|
10566
|
+
elementNamePattern?: string
|
|
10567
|
+
})[]
|
|
10568
|
+
useConfigurationIf?: {
|
|
10569
|
+
allNamesMatchPattern?: string
|
|
10570
|
+
}
|
|
10571
|
+
|
|
10572
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10573
|
+
|
|
10215
10574
|
partitionByNewLine?: boolean
|
|
10216
10575
|
|
|
10217
10576
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10218
10577
|
|
|
10219
10578
|
ignoreCase?: boolean
|
|
10220
10579
|
|
|
10580
|
+
alphabet?: string
|
|
10581
|
+
|
|
10221
10582
|
locales?: (string | string[])
|
|
10222
10583
|
|
|
10223
|
-
|
|
10584
|
+
groups?: (string | string[] | {
|
|
10585
|
+
|
|
10586
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10587
|
+
[k: string]: unknown | undefined
|
|
10588
|
+
})[]
|
|
10224
10589
|
|
|
10225
|
-
|
|
10226
|
-
}]
|
|
10590
|
+
order?: ("asc" | "desc")
|
|
10591
|
+
}[]
|
|
10227
10592
|
// ----- perfectionist/sort-switch-case -----
|
|
10228
10593
|
type PerfectionistSortSwitchCase = []|[{
|
|
10229
10594
|
|
|
@@ -10231,16 +10596,22 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
10231
10596
|
|
|
10232
10597
|
ignoreCase?: boolean
|
|
10233
10598
|
|
|
10599
|
+
alphabet?: string
|
|
10600
|
+
|
|
10601
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10602
|
+
|
|
10234
10603
|
locales?: (string | string[])
|
|
10235
10604
|
|
|
10236
10605
|
order?: ("asc" | "desc")
|
|
10237
|
-
|
|
10238
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10239
10606
|
}]
|
|
10240
10607
|
// ----- perfectionist/sort-union-types -----
|
|
10241
10608
|
type PerfectionistSortUnionTypes = []|[{
|
|
10242
10609
|
|
|
10243
|
-
partitionByComment?: (string[] | boolean | string
|
|
10610
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10611
|
+
block?: (string[] | boolean | string)
|
|
10612
|
+
line?: (string[] | boolean | string)
|
|
10613
|
+
[k: string]: unknown | undefined
|
|
10614
|
+
})
|
|
10244
10615
|
|
|
10245
10616
|
partitionByNewLine?: boolean
|
|
10246
10617
|
|
|
@@ -10250,18 +10621,28 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
10250
10621
|
|
|
10251
10622
|
ignoreCase?: boolean
|
|
10252
10623
|
|
|
10624
|
+
alphabet?: string
|
|
10625
|
+
|
|
10626
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10627
|
+
|
|
10253
10628
|
locales?: (string | string[])
|
|
10254
10629
|
|
|
10255
|
-
groups?: (string | string[]
|
|
10630
|
+
groups?: (string | string[] | {
|
|
10631
|
+
|
|
10632
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10633
|
+
[k: string]: unknown | undefined
|
|
10634
|
+
})[]
|
|
10256
10635
|
|
|
10257
10636
|
order?: ("asc" | "desc")
|
|
10258
|
-
|
|
10259
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10260
10637
|
}]
|
|
10261
10638
|
// ----- perfectionist/sort-variable-declarations -----
|
|
10262
10639
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
10263
10640
|
|
|
10264
|
-
partitionByComment?: (string[] | boolean | string
|
|
10641
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10642
|
+
block?: (string[] | boolean | string)
|
|
10643
|
+
line?: (string[] | boolean | string)
|
|
10644
|
+
[k: string]: unknown | undefined
|
|
10645
|
+
})
|
|
10265
10646
|
|
|
10266
10647
|
partitionByNewLine?: boolean
|
|
10267
10648
|
|
|
@@ -10269,11 +10650,13 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
10269
10650
|
|
|
10270
10651
|
ignoreCase?: boolean
|
|
10271
10652
|
|
|
10653
|
+
alphabet?: string
|
|
10654
|
+
|
|
10655
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10656
|
+
|
|
10272
10657
|
locales?: (string | string[])
|
|
10273
10658
|
|
|
10274
10659
|
order?: ("asc" | "desc")
|
|
10275
|
-
|
|
10276
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10277
10660
|
}]
|
|
10278
10661
|
// ----- prefer-arrow-callback -----
|
|
10279
10662
|
type PreferArrowCallback = []|[{
|
|
@@ -10848,6 +11231,7 @@ type StyleIndent = []|[("tab" | number)]|[("tab" | number), {
|
|
|
10848
11231
|
ImportDeclaration?: (number | ("first" | "off"))
|
|
10849
11232
|
flatTernaryExpressions?: boolean
|
|
10850
11233
|
offsetTernaryExpressions?: boolean
|
|
11234
|
+
offsetTernaryExpressionsOffsetCallExpressions?: boolean
|
|
10851
11235
|
ignoredNodes?: string[]
|
|
10852
11236
|
ignoreComments?: boolean
|
|
10853
11237
|
tabLength?: number
|
|
@@ -10991,6 +11375,7 @@ type StyleKeySpacing = []|[({
|
|
|
10991
11375
|
mode?: ("strict" | "minimum")
|
|
10992
11376
|
beforeColon?: boolean
|
|
10993
11377
|
afterColon?: boolean
|
|
11378
|
+
ignoredNodes?: ("ObjectExpression" | "ObjectPattern" | "ImportDeclaration" | "ExportNamedDeclaration" | "ExportAllDeclaration" | "TSTypeLiteral" | "TSInterfaceBody" | "ClassBody")[]
|
|
10994
11379
|
} | {
|
|
10995
11380
|
singleLine?: {
|
|
10996
11381
|
mode?: ("strict" | "minimum")
|
|
@@ -11506,6 +11891,7 @@ type StyleNoExtraParens = ([]|["functions"] | []|["all"]|["all", {
|
|
|
11506
11891
|
enforceForNewInMemberExpressions?: boolean
|
|
11507
11892
|
enforceForFunctionPrototypeMethods?: boolean
|
|
11508
11893
|
allowParensAfterCommentPattern?: string
|
|
11894
|
+
nestedConditionalExpressions?: boolean
|
|
11509
11895
|
}])
|
|
11510
11896
|
// ----- style/no-mixed-operators -----
|
|
11511
11897
|
type StyleNoMixedOperators = []|[{
|
|
@@ -11603,14 +11989,14 @@ type StyleOperatorLinebreak = []|[(("after" | "before" | "none") | null)]|[(("af
|
|
|
11603
11989
|
}
|
|
11604
11990
|
}]
|
|
11605
11991
|
// ----- style/padded-blocks -----
|
|
11606
|
-
type StylePaddedBlocks = []|[(("always" | "never") | {
|
|
11607
|
-
blocks?: ("always" | "never")
|
|
11608
|
-
switches?: ("always" | "never")
|
|
11609
|
-
classes?: ("always" | "never")
|
|
11610
|
-
})]|[(("always" | "never") | {
|
|
11611
|
-
blocks?: ("always" | "never")
|
|
11612
|
-
switches?: ("always" | "never")
|
|
11613
|
-
classes?: ("always" | "never")
|
|
11992
|
+
type StylePaddedBlocks = []|[(("always" | "never" | "start" | "end") | {
|
|
11993
|
+
blocks?: ("always" | "never" | "start" | "end")
|
|
11994
|
+
switches?: ("always" | "never" | "start" | "end")
|
|
11995
|
+
classes?: ("always" | "never" | "start" | "end")
|
|
11996
|
+
})]|[(("always" | "never" | "start" | "end") | {
|
|
11997
|
+
blocks?: ("always" | "never" | "start" | "end")
|
|
11998
|
+
switches?: ("always" | "never" | "start" | "end")
|
|
11999
|
+
classes?: ("always" | "never" | "start" | "end")
|
|
11614
12000
|
}), {
|
|
11615
12001
|
allowSingleLineBlocks?: boolean
|
|
11616
12002
|
}]
|
|
@@ -11792,8 +12178,7 @@ type TestNoRestrictedViMethods = []|[{
|
|
|
11792
12178
|
}]
|
|
11793
12179
|
// ----- test/no-standalone-expect -----
|
|
11794
12180
|
type TestNoStandaloneExpect = []|[{
|
|
11795
|
-
|
|
11796
|
-
[k: string]: unknown | undefined
|
|
12181
|
+
additionalTestBlockFunctions?: string[]
|
|
11797
12182
|
}]
|
|
11798
12183
|
// ----- test/prefer-expect-assertions -----
|
|
11799
12184
|
type TestPreferExpectAssertions = []|[{
|
|
@@ -12009,7 +12394,7 @@ type TsConsistentTypeAssertions = []|[({
|
|
|
12009
12394
|
assertionStyle: "never"
|
|
12010
12395
|
} | {
|
|
12011
12396
|
|
|
12012
|
-
assertionStyle
|
|
12397
|
+
assertionStyle?: ("as" | "angle-bracket")
|
|
12013
12398
|
|
|
12014
12399
|
objectLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never")
|
|
12015
12400
|
})]
|
|
@@ -13043,6 +13428,8 @@ type TsSwitchExhaustivenessCheck = []|[{
|
|
|
13043
13428
|
|
|
13044
13429
|
considerDefaultExhaustiveForUnions?: boolean
|
|
13045
13430
|
|
|
13431
|
+
defaultCaseCommentPattern?: string
|
|
13432
|
+
|
|
13046
13433
|
requireDefaultForNonUnion?: boolean
|
|
13047
13434
|
}]
|
|
13048
13435
|
// ----- ts/triple-slash-reference -----
|
|
@@ -13592,6 +13979,7 @@ type VueKeySpacing = []|[({
|
|
|
13592
13979
|
mode?: ("strict" | "minimum")
|
|
13593
13980
|
beforeColon?: boolean
|
|
13594
13981
|
afterColon?: boolean
|
|
13982
|
+
ignoredNodes?: ("ObjectExpression" | "ObjectPattern" | "ImportDeclaration" | "ExportNamedDeclaration" | "ExportAllDeclaration" | "TSTypeLiteral" | "TSInterfaceBody" | "ClassBody")[]
|
|
13595
13983
|
} | {
|
|
13596
13984
|
singleLine?: {
|
|
13597
13985
|
mode?: ("strict" | "minimum")
|
|
@@ -14118,6 +14506,7 @@ type VueNoExtraParens = ([]|["functions"] | []|["all"]|["all", {
|
|
|
14118
14506
|
enforceForNewInMemberExpressions?: boolean
|
|
14119
14507
|
enforceForFunctionPrototypeMethods?: boolean
|
|
14120
14508
|
allowParensAfterCommentPattern?: string
|
|
14509
|
+
nestedConditionalExpressions?: boolean
|
|
14121
14510
|
}])
|
|
14122
14511
|
// ----- vue/no-irregular-whitespace -----
|
|
14123
14512
|
type VueNoIrregularWhitespace = []|[{
|