@daopk/eslint-config 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +663 -261
- package/dist/index.js +27 -3
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -338,233 +338,233 @@ interface RuleOptions {
|
|
|
338
338
|
'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
|
|
339
339
|
/**
|
|
340
340
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
341
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
341
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/consistent-type-specifier-style.md
|
|
342
342
|
*/
|
|
343
343
|
'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
|
|
344
344
|
/**
|
|
345
345
|
* Ensure a default export is present, given a default import.
|
|
346
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
346
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/default.md
|
|
347
347
|
*/
|
|
348
348
|
'import/default'?: Linter.RuleEntry<[]>
|
|
349
349
|
/**
|
|
350
350
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
351
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
351
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/dynamic-import-chunkname.md
|
|
352
352
|
*/
|
|
353
353
|
'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
|
|
354
354
|
/**
|
|
355
355
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
356
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
356
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/export.md
|
|
357
357
|
*/
|
|
358
358
|
'import/export'?: Linter.RuleEntry<[]>
|
|
359
359
|
/**
|
|
360
360
|
* Ensure all exports appear after other statements.
|
|
361
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
361
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/exports-last.md
|
|
362
362
|
*/
|
|
363
363
|
'import/exports-last'?: Linter.RuleEntry<[]>
|
|
364
364
|
/**
|
|
365
365
|
* Ensure consistent use of file extension within the import path.
|
|
366
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
366
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/extensions.md
|
|
367
367
|
*/
|
|
368
368
|
'import/extensions'?: Linter.RuleEntry<ImportExtensions>
|
|
369
369
|
/**
|
|
370
370
|
* Ensure all imports appear before other statements.
|
|
371
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
371
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/first.md
|
|
372
372
|
*/
|
|
373
373
|
'import/first'?: Linter.RuleEntry<ImportFirst>
|
|
374
374
|
/**
|
|
375
375
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
376
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
376
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/group-exports.md
|
|
377
377
|
*/
|
|
378
378
|
'import/group-exports'?: Linter.RuleEntry<[]>
|
|
379
379
|
/**
|
|
380
380
|
* Replaced by `import-x/first`.
|
|
381
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
381
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/imports-first.md
|
|
382
382
|
* @deprecated
|
|
383
383
|
*/
|
|
384
384
|
'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
|
|
385
385
|
/**
|
|
386
386
|
* Enforce the maximum number of dependencies a module can have.
|
|
387
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
387
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/max-dependencies.md
|
|
388
388
|
*/
|
|
389
389
|
'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
|
|
390
390
|
/**
|
|
391
391
|
* Ensure named imports correspond to a named export in the remote file.
|
|
392
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
392
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/named.md
|
|
393
393
|
*/
|
|
394
394
|
'import/named'?: Linter.RuleEntry<ImportNamed>
|
|
395
395
|
/**
|
|
396
396
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
397
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
397
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/namespace.md
|
|
398
398
|
*/
|
|
399
399
|
'import/namespace'?: Linter.RuleEntry<ImportNamespace>
|
|
400
400
|
/**
|
|
401
401
|
* Enforce a newline after import statements.
|
|
402
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
402
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/newline-after-import.md
|
|
403
403
|
*/
|
|
404
404
|
'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
|
|
405
405
|
/**
|
|
406
406
|
* Forbid import of modules using absolute paths.
|
|
407
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
407
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-absolute-path.md
|
|
408
408
|
*/
|
|
409
409
|
'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
|
|
410
410
|
/**
|
|
411
411
|
* Forbid AMD `require` and `define` calls.
|
|
412
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
412
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-amd.md
|
|
413
413
|
*/
|
|
414
414
|
'import/no-amd'?: Linter.RuleEntry<[]>
|
|
415
415
|
/**
|
|
416
416
|
* Forbid anonymous values as default exports.
|
|
417
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
417
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-anonymous-default-export.md
|
|
418
418
|
*/
|
|
419
419
|
'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
|
|
420
420
|
/**
|
|
421
421
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
422
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
422
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-commonjs.md
|
|
423
423
|
*/
|
|
424
424
|
'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
|
|
425
425
|
/**
|
|
426
426
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
427
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
427
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-cycle.md
|
|
428
428
|
*/
|
|
429
429
|
'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
|
|
430
430
|
/**
|
|
431
431
|
* Forbid default exports.
|
|
432
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
432
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-default-export.md
|
|
433
433
|
*/
|
|
434
434
|
'import/no-default-export'?: Linter.RuleEntry<[]>
|
|
435
435
|
/**
|
|
436
436
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
437
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
437
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-deprecated.md
|
|
438
438
|
*/
|
|
439
439
|
'import/no-deprecated'?: Linter.RuleEntry<[]>
|
|
440
440
|
/**
|
|
441
441
|
* Forbid repeated import of the same module in multiple places.
|
|
442
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
442
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-duplicates.md
|
|
443
443
|
*/
|
|
444
444
|
'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
|
|
445
445
|
/**
|
|
446
446
|
* Forbid `require()` calls with expressions.
|
|
447
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
447
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-dynamic-require.md
|
|
448
448
|
*/
|
|
449
449
|
'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
|
|
450
450
|
/**
|
|
451
451
|
* Forbid empty named import blocks.
|
|
452
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
452
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-empty-named-blocks.md
|
|
453
453
|
*/
|
|
454
454
|
'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
455
455
|
/**
|
|
456
456
|
* Forbid the use of extraneous packages.
|
|
457
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
457
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-extraneous-dependencies.md
|
|
458
458
|
*/
|
|
459
459
|
'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
|
|
460
460
|
/**
|
|
461
461
|
* Forbid import statements with CommonJS module.exports.
|
|
462
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
462
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-import-module-exports.md
|
|
463
463
|
*/
|
|
464
464
|
'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
|
|
465
465
|
/**
|
|
466
466
|
* Forbid importing the submodules of other modules.
|
|
467
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
467
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-internal-modules.md
|
|
468
468
|
*/
|
|
469
469
|
'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
|
|
470
470
|
/**
|
|
471
471
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
472
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
472
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-mutable-exports.md
|
|
473
473
|
*/
|
|
474
474
|
'import/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
475
475
|
/**
|
|
476
476
|
* Forbid use of exported name as identifier of default export.
|
|
477
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
477
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-as-default.md
|
|
478
478
|
*/
|
|
479
479
|
'import/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
480
480
|
/**
|
|
481
481
|
* Forbid use of exported name as property of default export.
|
|
482
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
482
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-as-default-member.md
|
|
483
483
|
*/
|
|
484
484
|
'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
485
485
|
/**
|
|
486
486
|
* Forbid named default exports.
|
|
487
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
487
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-default.md
|
|
488
488
|
*/
|
|
489
489
|
'import/no-named-default'?: Linter.RuleEntry<[]>
|
|
490
490
|
/**
|
|
491
491
|
* Forbid named exports.
|
|
492
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
492
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-export.md
|
|
493
493
|
*/
|
|
494
494
|
'import/no-named-export'?: Linter.RuleEntry<[]>
|
|
495
495
|
/**
|
|
496
496
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
497
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
497
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-namespace.md
|
|
498
498
|
*/
|
|
499
499
|
'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
|
|
500
500
|
/**
|
|
501
501
|
* Forbid Node.js builtin modules.
|
|
502
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
502
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-nodejs-modules.md
|
|
503
503
|
*/
|
|
504
504
|
'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
|
|
505
505
|
/**
|
|
506
506
|
* Forbid importing packages through relative paths.
|
|
507
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
507
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-relative-packages.md
|
|
508
508
|
*/
|
|
509
509
|
'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
|
|
510
510
|
/**
|
|
511
511
|
* Forbid importing modules from parent directories.
|
|
512
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
512
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-relative-parent-imports.md
|
|
513
513
|
*/
|
|
514
514
|
'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
|
|
515
515
|
/**
|
|
516
516
|
* Forbid importing a default export by a different name.
|
|
517
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
517
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-rename-default.md
|
|
518
518
|
*/
|
|
519
519
|
'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
|
|
520
520
|
/**
|
|
521
521
|
* Enforce which files can be imported in a given folder.
|
|
522
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
522
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-restricted-paths.md
|
|
523
523
|
*/
|
|
524
524
|
'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
|
|
525
525
|
/**
|
|
526
526
|
* Forbid a module from importing itself.
|
|
527
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
527
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-self-import.md
|
|
528
528
|
*/
|
|
529
529
|
'import/no-self-import'?: Linter.RuleEntry<[]>
|
|
530
530
|
/**
|
|
531
531
|
* Forbid unassigned imports.
|
|
532
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
532
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-unassigned-import.md
|
|
533
533
|
*/
|
|
534
534
|
'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
|
|
535
535
|
/**
|
|
536
536
|
* Ensure imports point to a file/module that can be resolved.
|
|
537
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
537
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-unresolved.md
|
|
538
538
|
*/
|
|
539
539
|
'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
|
|
540
540
|
/**
|
|
541
541
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
542
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
542
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-unused-modules.md
|
|
543
543
|
*/
|
|
544
544
|
'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
|
|
545
545
|
/**
|
|
546
546
|
* Forbid unnecessary path segments in import and require statements.
|
|
547
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
547
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-useless-path-segments.md
|
|
548
548
|
*/
|
|
549
549
|
'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
|
|
550
550
|
/**
|
|
551
551
|
* Forbid webpack loader syntax in imports.
|
|
552
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
552
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-webpack-loader-syntax.md
|
|
553
553
|
*/
|
|
554
554
|
'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
555
555
|
/**
|
|
556
556
|
* Enforce a convention in module import order.
|
|
557
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
557
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/order.md
|
|
558
558
|
*/
|
|
559
559
|
'import/order'?: Linter.RuleEntry<ImportOrder>
|
|
560
560
|
/**
|
|
561
561
|
* Prefer a default export if module exports a single name or multiple names.
|
|
562
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
562
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/prefer-default-export.md
|
|
563
563
|
*/
|
|
564
564
|
'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
|
|
565
565
|
/**
|
|
566
566
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
567
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
567
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/unambiguous.md
|
|
568
568
|
*/
|
|
569
569
|
'import/unambiguous'?: Linter.RuleEntry<[]>
|
|
570
570
|
/**
|
|
@@ -2961,6 +2961,11 @@ interface RuleOptions {
|
|
|
2961
2961
|
* @see https://typescript-eslint.io/rules/no-unnecessary-type-constraint
|
|
2962
2962
|
*/
|
|
2963
2963
|
'typescript/no-unnecessary-type-constraint'?: Linter.RuleEntry<[]>
|
|
2964
|
+
/**
|
|
2965
|
+
* Disallow conversion idioms when they do not change the type or value of the expression
|
|
2966
|
+
* @see https://typescript-eslint.io/rules/no-unnecessary-type-conversion
|
|
2967
|
+
*/
|
|
2968
|
+
'typescript/no-unnecessary-type-conversion'?: Linter.RuleEntry<[]>
|
|
2964
2969
|
/**
|
|
2965
2970
|
* Disallow type parameters that aren't used multiple times
|
|
2966
2971
|
* @see https://typescript-eslint.io/rules/no-unnecessary-type-parameters
|
|
@@ -3547,7 +3552,7 @@ type IdMatch = []|[string]|[string, {
|
|
|
3547
3552
|
// ----- implicit-arrow-linebreak -----
|
|
3548
3553
|
type ImplicitArrowLinebreak = []|[("beside" | "below")]
|
|
3549
3554
|
// ----- import/consistent-type-specifier-style -----
|
|
3550
|
-
type ImportConsistentTypeSpecifierStyle = []|[("prefer-
|
|
3555
|
+
type ImportConsistentTypeSpecifierStyle = []|[("prefer-top-level" | "prefer-inline")]
|
|
3551
3556
|
// ----- import/dynamic-import-chunkname -----
|
|
3552
3557
|
type ImportDynamicImportChunkname = []|[{
|
|
3553
3558
|
importFunctions?: string[]
|
|
@@ -3767,6 +3772,17 @@ type ImportOrder = []|[{
|
|
|
3767
3772
|
position?: ("after" | "before")
|
|
3768
3773
|
}[]
|
|
3769
3774
|
"newlines-between"?: ("ignore" | "always" | "always-and-inside-groups" | "never")
|
|
3775
|
+
"newlines-between-types"?: ("ignore" | "always" | "always-and-inside-groups" | "never")
|
|
3776
|
+
consolidateIslands?: ("inside-groups" | "never")
|
|
3777
|
+
sortTypesGroup?: boolean
|
|
3778
|
+
named?: (boolean | {
|
|
3779
|
+
enabled?: boolean
|
|
3780
|
+
import?: boolean
|
|
3781
|
+
export?: boolean
|
|
3782
|
+
require?: boolean
|
|
3783
|
+
cjsExports?: boolean
|
|
3784
|
+
types?: ("mixed" | "types-first" | "types-last")
|
|
3785
|
+
})
|
|
3770
3786
|
alphabetize?: {
|
|
3771
3787
|
caseInsensitive?: boolean
|
|
3772
3788
|
order?: ("ignore" | "asc" | "desc")
|
|
@@ -4962,7 +4978,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
4962
4978
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
4963
4979
|
version?: string
|
|
4964
4980
|
allowExperimental?: boolean
|
|
4965
|
-
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")[]
|
|
4981
|
+
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" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename")[]
|
|
4966
4982
|
}]
|
|
4967
4983
|
// ----- node/prefer-global/buffer -----
|
|
4968
4984
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -5105,8 +5121,6 @@ type PaddingLineBetweenStatements = {
|
|
|
5105
5121
|
// ----- perfectionist/sort-array-includes -----
|
|
5106
5122
|
type PerfectionistSortArrayIncludes = {
|
|
5107
5123
|
|
|
5108
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5109
|
-
|
|
5110
5124
|
fallbackSort?: {
|
|
5111
5125
|
|
|
5112
5126
|
order?: ("asc" | "desc")
|
|
@@ -5115,6 +5129,8 @@ type PerfectionistSortArrayIncludes = {
|
|
|
5115
5129
|
[k: string]: unknown | undefined
|
|
5116
5130
|
}
|
|
5117
5131
|
|
|
5132
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5133
|
+
|
|
5118
5134
|
ignoreCase?: boolean
|
|
5119
5135
|
|
|
5120
5136
|
alphabet?: string
|
|
@@ -5129,13 +5145,21 @@ type PerfectionistSortArrayIncludes = {
|
|
|
5129
5145
|
|
|
5130
5146
|
customGroups?: ({
|
|
5131
5147
|
|
|
5132
|
-
|
|
5148
|
+
newlinesInside?: ("always" | "never")
|
|
5133
5149
|
|
|
5134
|
-
|
|
5150
|
+
fallbackSort?: {
|
|
5151
|
+
|
|
5152
|
+
order?: ("asc" | "desc")
|
|
5153
|
+
|
|
5154
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5155
|
+
[k: string]: unknown | undefined
|
|
5156
|
+
}
|
|
5135
5157
|
|
|
5136
|
-
|
|
5158
|
+
groupName?: string
|
|
5137
5159
|
|
|
5138
|
-
|
|
5160
|
+
order?: ("asc" | "desc")
|
|
5161
|
+
|
|
5162
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5139
5163
|
anyOf?: {
|
|
5140
5164
|
|
|
5141
5165
|
selector?: ("literal" | "spread")
|
|
@@ -5150,13 +5174,21 @@ type PerfectionistSortArrayIncludes = {
|
|
|
5150
5174
|
}[]
|
|
5151
5175
|
} | {
|
|
5152
5176
|
|
|
5153
|
-
|
|
5177
|
+
newlinesInside?: ("always" | "never")
|
|
5178
|
+
|
|
5179
|
+
fallbackSort?: {
|
|
5180
|
+
|
|
5181
|
+
order?: ("asc" | "desc")
|
|
5182
|
+
|
|
5183
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5184
|
+
[k: string]: unknown | undefined
|
|
5185
|
+
}
|
|
5154
5186
|
|
|
5155
|
-
|
|
5187
|
+
groupName?: string
|
|
5156
5188
|
|
|
5157
|
-
order?: ("
|
|
5189
|
+
order?: ("asc" | "desc")
|
|
5158
5190
|
|
|
5159
|
-
|
|
5191
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5160
5192
|
|
|
5161
5193
|
selector?: ("literal" | "spread")
|
|
5162
5194
|
|
|
@@ -5214,8 +5246,6 @@ type PerfectionistSortArrayIncludes = {
|
|
|
5214
5246
|
// ----- perfectionist/sort-classes -----
|
|
5215
5247
|
type PerfectionistSortClasses = []|[{
|
|
5216
5248
|
|
|
5217
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5218
|
-
|
|
5219
5249
|
fallbackSort?: {
|
|
5220
5250
|
|
|
5221
5251
|
order?: ("asc" | "desc")
|
|
@@ -5224,6 +5254,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
5224
5254
|
[k: string]: unknown | undefined
|
|
5225
5255
|
}
|
|
5226
5256
|
|
|
5257
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5258
|
+
|
|
5227
5259
|
ignoreCase?: boolean
|
|
5228
5260
|
|
|
5229
5261
|
alphabet?: string
|
|
@@ -5236,13 +5268,21 @@ type PerfectionistSortClasses = []|[{
|
|
|
5236
5268
|
|
|
5237
5269
|
customGroups?: ({
|
|
5238
5270
|
|
|
5239
|
-
|
|
5271
|
+
newlinesInside?: ("always" | "never")
|
|
5240
5272
|
|
|
5241
|
-
|
|
5273
|
+
fallbackSort?: {
|
|
5274
|
+
|
|
5275
|
+
order?: ("asc" | "desc")
|
|
5276
|
+
|
|
5277
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5278
|
+
[k: string]: unknown | undefined
|
|
5279
|
+
}
|
|
5242
5280
|
|
|
5243
|
-
|
|
5281
|
+
groupName?: string
|
|
5244
5282
|
|
|
5245
|
-
|
|
5283
|
+
order?: ("asc" | "desc")
|
|
5284
|
+
|
|
5285
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5246
5286
|
anyOf?: {
|
|
5247
5287
|
|
|
5248
5288
|
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
@@ -5275,13 +5315,21 @@ type PerfectionistSortClasses = []|[{
|
|
|
5275
5315
|
}[]
|
|
5276
5316
|
} | {
|
|
5277
5317
|
|
|
5278
|
-
|
|
5318
|
+
newlinesInside?: ("always" | "never")
|
|
5279
5319
|
|
|
5280
|
-
|
|
5320
|
+
fallbackSort?: {
|
|
5321
|
+
|
|
5322
|
+
order?: ("asc" | "desc")
|
|
5323
|
+
|
|
5324
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5325
|
+
[k: string]: unknown | undefined
|
|
5326
|
+
}
|
|
5281
5327
|
|
|
5282
|
-
|
|
5328
|
+
groupName?: string
|
|
5283
5329
|
|
|
5284
|
-
|
|
5330
|
+
order?: ("asc" | "desc")
|
|
5331
|
+
|
|
5332
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5285
5333
|
|
|
5286
5334
|
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
5287
5335
|
|
|
@@ -5355,8 +5403,6 @@ type PerfectionistSortClasses = []|[{
|
|
|
5355
5403
|
// ----- perfectionist/sort-decorators -----
|
|
5356
5404
|
type PerfectionistSortDecorators = []|[{
|
|
5357
5405
|
|
|
5358
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5359
|
-
|
|
5360
5406
|
fallbackSort?: {
|
|
5361
5407
|
|
|
5362
5408
|
order?: ("asc" | "desc")
|
|
@@ -5365,6 +5411,8 @@ type PerfectionistSortDecorators = []|[{
|
|
|
5365
5411
|
[k: string]: unknown | undefined
|
|
5366
5412
|
}
|
|
5367
5413
|
|
|
5414
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5415
|
+
|
|
5368
5416
|
ignoreCase?: boolean
|
|
5369
5417
|
|
|
5370
5418
|
alphabet?: string
|
|
@@ -5420,8 +5468,6 @@ type PerfectionistSortDecorators = []|[{
|
|
|
5420
5468
|
// ----- perfectionist/sort-enums -----
|
|
5421
5469
|
type PerfectionistSortEnums = []|[{
|
|
5422
5470
|
|
|
5423
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5424
|
-
|
|
5425
5471
|
fallbackSort?: {
|
|
5426
5472
|
|
|
5427
5473
|
order?: ("asc" | "desc")
|
|
@@ -5430,6 +5476,8 @@ type PerfectionistSortEnums = []|[{
|
|
|
5430
5476
|
[k: string]: unknown | undefined
|
|
5431
5477
|
}
|
|
5432
5478
|
|
|
5479
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5480
|
+
|
|
5433
5481
|
ignoreCase?: boolean
|
|
5434
5482
|
|
|
5435
5483
|
alphabet?: string
|
|
@@ -5445,13 +5493,21 @@ type PerfectionistSortEnums = []|[{
|
|
|
5445
5493
|
[k: string]: (string | string[]) | undefined
|
|
5446
5494
|
} | ({
|
|
5447
5495
|
|
|
5448
|
-
|
|
5496
|
+
newlinesInside?: ("always" | "never")
|
|
5497
|
+
|
|
5498
|
+
fallbackSort?: {
|
|
5499
|
+
|
|
5500
|
+
order?: ("asc" | "desc")
|
|
5501
|
+
|
|
5502
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5503
|
+
[k: string]: unknown | undefined
|
|
5504
|
+
}
|
|
5449
5505
|
|
|
5450
|
-
|
|
5506
|
+
groupName?: string
|
|
5451
5507
|
|
|
5452
|
-
order?: ("
|
|
5508
|
+
order?: ("asc" | "desc")
|
|
5453
5509
|
|
|
5454
|
-
|
|
5510
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5455
5511
|
anyOf?: {
|
|
5456
5512
|
|
|
5457
5513
|
elementValuePattern?: (({
|
|
@@ -5472,13 +5528,21 @@ type PerfectionistSortEnums = []|[{
|
|
|
5472
5528
|
}[]
|
|
5473
5529
|
} | {
|
|
5474
5530
|
|
|
5475
|
-
|
|
5531
|
+
newlinesInside?: ("always" | "never")
|
|
5532
|
+
|
|
5533
|
+
fallbackSort?: {
|
|
5534
|
+
|
|
5535
|
+
order?: ("asc" | "desc")
|
|
5536
|
+
|
|
5537
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5538
|
+
[k: string]: unknown | undefined
|
|
5539
|
+
}
|
|
5476
5540
|
|
|
5477
|
-
|
|
5541
|
+
groupName?: string
|
|
5478
5542
|
|
|
5479
|
-
order?: ("
|
|
5543
|
+
order?: ("asc" | "desc")
|
|
5480
5544
|
|
|
5481
|
-
|
|
5545
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5482
5546
|
|
|
5483
5547
|
elementValuePattern?: (({
|
|
5484
5548
|
pattern?: string
|
|
@@ -5532,9 +5596,7 @@ type PerfectionistSortEnums = []|[{
|
|
|
5532
5596
|
})[]
|
|
5533
5597
|
}]
|
|
5534
5598
|
// ----- perfectionist/sort-exports -----
|
|
5535
|
-
type PerfectionistSortExports =
|
|
5536
|
-
|
|
5537
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5599
|
+
type PerfectionistSortExports = {
|
|
5538
5600
|
|
|
5539
5601
|
fallbackSort?: {
|
|
5540
5602
|
|
|
@@ -5544,6 +5606,8 @@ type PerfectionistSortExports = []|[{
|
|
|
5544
5606
|
[k: string]: unknown | undefined
|
|
5545
5607
|
}
|
|
5546
5608
|
|
|
5609
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5610
|
+
|
|
5547
5611
|
ignoreCase?: boolean
|
|
5548
5612
|
|
|
5549
5613
|
alphabet?: string
|
|
@@ -5556,6 +5620,68 @@ type PerfectionistSortExports = []|[{
|
|
|
5556
5620
|
|
|
5557
5621
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
5558
5622
|
|
|
5623
|
+
customGroups?: ({
|
|
5624
|
+
|
|
5625
|
+
newlinesInside?: ("always" | "never")
|
|
5626
|
+
|
|
5627
|
+
fallbackSort?: {
|
|
5628
|
+
|
|
5629
|
+
order?: ("asc" | "desc")
|
|
5630
|
+
|
|
5631
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5632
|
+
[k: string]: unknown | undefined
|
|
5633
|
+
}
|
|
5634
|
+
|
|
5635
|
+
groupName?: string
|
|
5636
|
+
|
|
5637
|
+
order?: ("asc" | "desc")
|
|
5638
|
+
|
|
5639
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5640
|
+
anyOf?: {
|
|
5641
|
+
|
|
5642
|
+
modifiers?: ("value" | "type")[]
|
|
5643
|
+
|
|
5644
|
+
selector?: "export"
|
|
5645
|
+
|
|
5646
|
+
elementNamePattern?: (({
|
|
5647
|
+
pattern?: string
|
|
5648
|
+
flags?: string
|
|
5649
|
+
} | string)[] | ({
|
|
5650
|
+
pattern?: string
|
|
5651
|
+
flags?: string
|
|
5652
|
+
} | string))
|
|
5653
|
+
}[]
|
|
5654
|
+
} | {
|
|
5655
|
+
|
|
5656
|
+
newlinesInside?: ("always" | "never")
|
|
5657
|
+
|
|
5658
|
+
fallbackSort?: {
|
|
5659
|
+
|
|
5660
|
+
order?: ("asc" | "desc")
|
|
5661
|
+
|
|
5662
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5663
|
+
[k: string]: unknown | undefined
|
|
5664
|
+
}
|
|
5665
|
+
|
|
5666
|
+
groupName?: string
|
|
5667
|
+
|
|
5668
|
+
order?: ("asc" | "desc")
|
|
5669
|
+
|
|
5670
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5671
|
+
|
|
5672
|
+
modifiers?: ("value" | "type")[]
|
|
5673
|
+
|
|
5674
|
+
selector?: "export"
|
|
5675
|
+
|
|
5676
|
+
elementNamePattern?: (({
|
|
5677
|
+
pattern?: string
|
|
5678
|
+
flags?: string
|
|
5679
|
+
} | string)[] | ({
|
|
5680
|
+
pattern?: string
|
|
5681
|
+
flags?: string
|
|
5682
|
+
} | string))
|
|
5683
|
+
})[]
|
|
5684
|
+
|
|
5559
5685
|
partitionByComment?: (boolean | (({
|
|
5560
5686
|
pattern?: string
|
|
5561
5687
|
flags?: string
|
|
@@ -5580,44 +5706,16 @@ type PerfectionistSortExports = []|[{
|
|
|
5580
5706
|
})
|
|
5581
5707
|
|
|
5582
5708
|
partitionByNewLine?: boolean
|
|
5583
|
-
}]
|
|
5584
|
-
// ----- perfectionist/sort-heritage-clauses -----
|
|
5585
|
-
type PerfectionistSortHeritageClauses = []|[{
|
|
5586
|
-
|
|
5587
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5588
|
-
|
|
5589
|
-
fallbackSort?: {
|
|
5590
|
-
|
|
5591
|
-
order?: ("asc" | "desc")
|
|
5592
|
-
|
|
5593
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5594
|
-
[k: string]: unknown | undefined
|
|
5595
|
-
}
|
|
5596
5709
|
|
|
5597
|
-
|
|
5598
|
-
|
|
5599
|
-
alphabet?: string
|
|
5600
|
-
|
|
5601
|
-
locales?: (string | string[])
|
|
5602
|
-
|
|
5603
|
-
order?: ("asc" | "desc")
|
|
5604
|
-
|
|
5605
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5606
|
-
|
|
5607
|
-
customGroups?: {
|
|
5608
|
-
[k: string]: (string | string[]) | undefined
|
|
5609
|
-
}
|
|
5710
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
5610
5711
|
|
|
5611
5712
|
groups?: (string | string[] | {
|
|
5612
5713
|
|
|
5613
5714
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
5614
5715
|
})[]
|
|
5615
|
-
}]
|
|
5616
|
-
// ----- perfectionist/sort-
|
|
5617
|
-
type
|
|
5618
|
-
type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
|
|
5619
|
-
|
|
5620
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5716
|
+
}[]
|
|
5717
|
+
// ----- perfectionist/sort-heritage-clauses -----
|
|
5718
|
+
type PerfectionistSortHeritageClauses = []|[{
|
|
5621
5719
|
|
|
5622
5720
|
fallbackSort?: {
|
|
5623
5721
|
|
|
@@ -5627,6 +5725,8 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
5627
5725
|
[k: string]: unknown | undefined
|
|
5628
5726
|
}
|
|
5629
5727
|
|
|
5728
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5729
|
+
|
|
5630
5730
|
ignoreCase?: boolean
|
|
5631
5731
|
|
|
5632
5732
|
alphabet?: string
|
|
@@ -5638,76 +5738,17 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
5638
5738
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5639
5739
|
|
|
5640
5740
|
customGroups?: {
|
|
5641
|
-
|
|
5642
|
-
value?: {
|
|
5643
|
-
[k: string]: unknown | undefined
|
|
5644
|
-
}
|
|
5645
|
-
|
|
5646
|
-
type?: {
|
|
5647
|
-
[k: string]: unknown | undefined
|
|
5648
|
-
}
|
|
5741
|
+
[k: string]: (string | string[]) | undefined
|
|
5649
5742
|
}
|
|
5650
5743
|
|
|
5651
|
-
maxLineLength?: number
|
|
5652
|
-
|
|
5653
|
-
sortSideEffects?: boolean
|
|
5654
|
-
|
|
5655
|
-
environment?: ("node" | "bun")
|
|
5656
|
-
|
|
5657
|
-
tsconfigRootDir?: string
|
|
5658
|
-
|
|
5659
|
-
partitionByComment?: (boolean | (({
|
|
5660
|
-
pattern?: string
|
|
5661
|
-
flags?: string
|
|
5662
|
-
} | string)[] | ({
|
|
5663
|
-
pattern?: string
|
|
5664
|
-
flags?: string
|
|
5665
|
-
} | string)) | {
|
|
5666
|
-
block?: (boolean | (({
|
|
5667
|
-
pattern?: string
|
|
5668
|
-
flags?: string
|
|
5669
|
-
} | string)[] | ({
|
|
5670
|
-
pattern?: string
|
|
5671
|
-
flags?: string
|
|
5672
|
-
} | string)))
|
|
5673
|
-
line?: (boolean | (({
|
|
5674
|
-
pattern?: string
|
|
5675
|
-
flags?: string
|
|
5676
|
-
} | string)[] | ({
|
|
5677
|
-
pattern?: string
|
|
5678
|
-
flags?: string
|
|
5679
|
-
} | string)))
|
|
5680
|
-
})
|
|
5681
|
-
|
|
5682
|
-
partitionByNewLine?: boolean
|
|
5683
|
-
|
|
5684
|
-
newlinesBetween?: ("ignore" | "always" | "never")
|
|
5685
|
-
|
|
5686
|
-
internalPattern?: (({
|
|
5687
|
-
pattern?: string
|
|
5688
|
-
flags?: string
|
|
5689
|
-
} | string)[] | ({
|
|
5690
|
-
pattern?: string
|
|
5691
|
-
flags?: string
|
|
5692
|
-
} | string))
|
|
5693
|
-
|
|
5694
5744
|
groups?: (string | string[] | {
|
|
5695
5745
|
|
|
5696
5746
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
5697
5747
|
})[]
|
|
5698
|
-
}
|
|
5699
|
-
type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
|
|
5700
|
-
[k: string]: unknown | undefined
|
|
5701
|
-
} | _PerfectionistSortImports_IsLineLength)
|
|
5702
|
-
interface _PerfectionistSortImports_IsLineLength {
|
|
5703
|
-
type: "line-length"
|
|
5704
|
-
[k: string]: unknown | undefined
|
|
5705
|
-
}
|
|
5748
|
+
}]
|
|
5706
5749
|
// ----- perfectionist/sort-interfaces -----
|
|
5707
5750
|
type PerfectionistSortInterfaces = {
|
|
5708
5751
|
|
|
5709
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5710
|
-
|
|
5711
5752
|
fallbackSort?: {
|
|
5712
5753
|
|
|
5713
5754
|
order?: ("asc" | "desc")
|
|
@@ -5716,6 +5757,8 @@ type PerfectionistSortInterfaces = {
|
|
|
5716
5757
|
[k: string]: unknown | undefined
|
|
5717
5758
|
}
|
|
5718
5759
|
|
|
5760
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5761
|
+
|
|
5719
5762
|
ignoreCase?: boolean
|
|
5720
5763
|
|
|
5721
5764
|
alphabet?: string
|
|
@@ -5729,19 +5772,36 @@ type PerfectionistSortInterfaces = {
|
|
|
5729
5772
|
[k: string]: (string | string[]) | undefined
|
|
5730
5773
|
} | ({
|
|
5731
5774
|
|
|
5732
|
-
|
|
5775
|
+
newlinesInside?: ("always" | "never")
|
|
5733
5776
|
|
|
5734
|
-
|
|
5777
|
+
fallbackSort?: {
|
|
5778
|
+
|
|
5779
|
+
order?: ("asc" | "desc")
|
|
5780
|
+
|
|
5781
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5782
|
+
sortBy?: ("name" | "value")
|
|
5783
|
+
[k: string]: unknown | undefined
|
|
5784
|
+
}
|
|
5785
|
+
|
|
5786
|
+
groupName?: string
|
|
5735
5787
|
|
|
5736
|
-
order?: ("
|
|
5788
|
+
order?: ("asc" | "desc")
|
|
5737
5789
|
|
|
5738
|
-
|
|
5790
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5739
5791
|
anyOf?: {
|
|
5740
5792
|
|
|
5741
5793
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
5742
5794
|
|
|
5743
5795
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
5744
5796
|
|
|
5797
|
+
elementValuePattern?: (({
|
|
5798
|
+
pattern?: string
|
|
5799
|
+
flags?: string
|
|
5800
|
+
} | string)[] | ({
|
|
5801
|
+
pattern?: string
|
|
5802
|
+
flags?: string
|
|
5803
|
+
} | string))
|
|
5804
|
+
|
|
5745
5805
|
elementNamePattern?: (({
|
|
5746
5806
|
pattern?: string
|
|
5747
5807
|
flags?: string
|
|
@@ -5749,21 +5809,39 @@ type PerfectionistSortInterfaces = {
|
|
|
5749
5809
|
pattern?: string
|
|
5750
5810
|
flags?: string
|
|
5751
5811
|
} | string))
|
|
5812
|
+
sortBy?: ("name" | "value")
|
|
5752
5813
|
}[]
|
|
5753
5814
|
} | {
|
|
5754
5815
|
|
|
5755
|
-
|
|
5816
|
+
newlinesInside?: ("always" | "never")
|
|
5756
5817
|
|
|
5757
|
-
|
|
5818
|
+
fallbackSort?: {
|
|
5819
|
+
|
|
5820
|
+
order?: ("asc" | "desc")
|
|
5821
|
+
|
|
5822
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5823
|
+
sortBy?: ("name" | "value")
|
|
5824
|
+
[k: string]: unknown | undefined
|
|
5825
|
+
}
|
|
5758
5826
|
|
|
5759
|
-
|
|
5827
|
+
groupName?: string
|
|
5760
5828
|
|
|
5761
|
-
|
|
5829
|
+
order?: ("asc" | "desc")
|
|
5830
|
+
|
|
5831
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5762
5832
|
|
|
5763
5833
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
5764
5834
|
|
|
5765
5835
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
5766
5836
|
|
|
5837
|
+
elementValuePattern?: (({
|
|
5838
|
+
pattern?: string
|
|
5839
|
+
flags?: string
|
|
5840
|
+
} | string)[] | ({
|
|
5841
|
+
pattern?: string
|
|
5842
|
+
flags?: string
|
|
5843
|
+
} | string))
|
|
5844
|
+
|
|
5767
5845
|
elementNamePattern?: (({
|
|
5768
5846
|
pattern?: string
|
|
5769
5847
|
flags?: string
|
|
@@ -5771,7 +5849,10 @@ type PerfectionistSortInterfaces = {
|
|
|
5771
5849
|
pattern?: string
|
|
5772
5850
|
flags?: string
|
|
5773
5851
|
} | string))
|
|
5852
|
+
sortBy?: ("name" | "value")
|
|
5774
5853
|
})[])
|
|
5854
|
+
|
|
5855
|
+
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
5775
5856
|
useConfigurationIf?: {
|
|
5776
5857
|
|
|
5777
5858
|
allNamesMatchPattern?: (({
|
|
@@ -5791,8 +5872,6 @@ type PerfectionistSortInterfaces = {
|
|
|
5791
5872
|
} | string))
|
|
5792
5873
|
}
|
|
5793
5874
|
|
|
5794
|
-
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
5795
|
-
|
|
5796
5875
|
partitionByComment?: (boolean | (({
|
|
5797
5876
|
pattern?: string
|
|
5798
5877
|
flags?: string
|
|
@@ -5827,6 +5906,7 @@ type PerfectionistSortInterfaces = {
|
|
|
5827
5906
|
pattern?: string
|
|
5828
5907
|
flags?: string
|
|
5829
5908
|
} | string))
|
|
5909
|
+
sortBy?: ("name" | "value")
|
|
5830
5910
|
|
|
5831
5911
|
groups?: (string | string[] | {
|
|
5832
5912
|
|
|
@@ -5836,8 +5916,6 @@ type PerfectionistSortInterfaces = {
|
|
|
5836
5916
|
// ----- perfectionist/sort-intersection-types -----
|
|
5837
5917
|
type PerfectionistSortIntersectionTypes = []|[{
|
|
5838
5918
|
|
|
5839
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5840
|
-
|
|
5841
5919
|
fallbackSort?: {
|
|
5842
5920
|
|
|
5843
5921
|
order?: ("asc" | "desc")
|
|
@@ -5846,6 +5924,8 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
5846
5924
|
[k: string]: unknown | undefined
|
|
5847
5925
|
}
|
|
5848
5926
|
|
|
5927
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5928
|
+
|
|
5849
5929
|
ignoreCase?: boolean
|
|
5850
5930
|
|
|
5851
5931
|
alphabet?: string
|
|
@@ -5891,8 +5971,6 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
5891
5971
|
// ----- perfectionist/sort-jsx-props -----
|
|
5892
5972
|
type PerfectionistSortJsxProps = {
|
|
5893
5973
|
|
|
5894
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5895
|
-
|
|
5896
5974
|
fallbackSort?: {
|
|
5897
5975
|
|
|
5898
5976
|
order?: ("asc" | "desc")
|
|
@@ -5901,6 +5979,8 @@ type PerfectionistSortJsxProps = {
|
|
|
5901
5979
|
[k: string]: unknown | undefined
|
|
5902
5980
|
}
|
|
5903
5981
|
|
|
5982
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5983
|
+
|
|
5904
5984
|
ignoreCase?: boolean
|
|
5905
5985
|
|
|
5906
5986
|
alphabet?: string
|
|
@@ -5910,6 +5990,85 @@ type PerfectionistSortJsxProps = {
|
|
|
5910
5990
|
order?: ("asc" | "desc")
|
|
5911
5991
|
|
|
5912
5992
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5993
|
+
customGroups?: ({
|
|
5994
|
+
[k: string]: (string | string[]) | undefined
|
|
5995
|
+
} | ({
|
|
5996
|
+
|
|
5997
|
+
newlinesInside?: ("always" | "never")
|
|
5998
|
+
|
|
5999
|
+
fallbackSort?: {
|
|
6000
|
+
|
|
6001
|
+
order?: ("asc" | "desc")
|
|
6002
|
+
|
|
6003
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6004
|
+
[k: string]: unknown | undefined
|
|
6005
|
+
}
|
|
6006
|
+
|
|
6007
|
+
groupName?: string
|
|
6008
|
+
|
|
6009
|
+
order?: ("asc" | "desc")
|
|
6010
|
+
|
|
6011
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6012
|
+
anyOf?: {
|
|
6013
|
+
|
|
6014
|
+
modifiers?: ("shorthand" | "multiline")[]
|
|
6015
|
+
|
|
6016
|
+
selector?: ("multiline" | "prop" | "shorthand")
|
|
6017
|
+
|
|
6018
|
+
elementValuePattern?: (({
|
|
6019
|
+
pattern?: string
|
|
6020
|
+
flags?: string
|
|
6021
|
+
} | string)[] | ({
|
|
6022
|
+
pattern?: string
|
|
6023
|
+
flags?: string
|
|
6024
|
+
} | string))
|
|
6025
|
+
|
|
6026
|
+
elementNamePattern?: (({
|
|
6027
|
+
pattern?: string
|
|
6028
|
+
flags?: string
|
|
6029
|
+
} | string)[] | ({
|
|
6030
|
+
pattern?: string
|
|
6031
|
+
flags?: string
|
|
6032
|
+
} | string))
|
|
6033
|
+
}[]
|
|
6034
|
+
} | {
|
|
6035
|
+
|
|
6036
|
+
newlinesInside?: ("always" | "never")
|
|
6037
|
+
|
|
6038
|
+
fallbackSort?: {
|
|
6039
|
+
|
|
6040
|
+
order?: ("asc" | "desc")
|
|
6041
|
+
|
|
6042
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6043
|
+
[k: string]: unknown | undefined
|
|
6044
|
+
}
|
|
6045
|
+
|
|
6046
|
+
groupName?: string
|
|
6047
|
+
|
|
6048
|
+
order?: ("asc" | "desc")
|
|
6049
|
+
|
|
6050
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6051
|
+
|
|
6052
|
+
modifiers?: ("shorthand" | "multiline")[]
|
|
6053
|
+
|
|
6054
|
+
selector?: ("multiline" | "prop" | "shorthand")
|
|
6055
|
+
|
|
6056
|
+
elementValuePattern?: (({
|
|
6057
|
+
pattern?: string
|
|
6058
|
+
flags?: string
|
|
6059
|
+
} | string)[] | ({
|
|
6060
|
+
pattern?: string
|
|
6061
|
+
flags?: string
|
|
6062
|
+
} | string))
|
|
6063
|
+
|
|
6064
|
+
elementNamePattern?: (({
|
|
6065
|
+
pattern?: string
|
|
6066
|
+
flags?: string
|
|
6067
|
+
} | string)[] | ({
|
|
6068
|
+
pattern?: string
|
|
6069
|
+
flags?: string
|
|
6070
|
+
} | string))
|
|
6071
|
+
})[])
|
|
5913
6072
|
useConfigurationIf?: {
|
|
5914
6073
|
|
|
5915
6074
|
allNamesMatchPattern?: (({
|
|
@@ -5933,10 +6092,6 @@ type PerfectionistSortJsxProps = {
|
|
|
5933
6092
|
|
|
5934
6093
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
5935
6094
|
|
|
5936
|
-
customGroups?: {
|
|
5937
|
-
[k: string]: (string | string[]) | undefined
|
|
5938
|
-
}
|
|
5939
|
-
|
|
5940
6095
|
ignorePattern?: (({
|
|
5941
6096
|
pattern?: string
|
|
5942
6097
|
flags?: string
|
|
@@ -5953,8 +6108,6 @@ type PerfectionistSortJsxProps = {
|
|
|
5953
6108
|
// ----- perfectionist/sort-maps -----
|
|
5954
6109
|
type PerfectionistSortMaps = {
|
|
5955
6110
|
|
|
5956
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5957
|
-
|
|
5958
6111
|
fallbackSort?: {
|
|
5959
6112
|
|
|
5960
6113
|
order?: ("asc" | "desc")
|
|
@@ -5963,6 +6116,8 @@ type PerfectionistSortMaps = {
|
|
|
5963
6116
|
[k: string]: unknown | undefined
|
|
5964
6117
|
}
|
|
5965
6118
|
|
|
6119
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6120
|
+
|
|
5966
6121
|
ignoreCase?: boolean
|
|
5967
6122
|
|
|
5968
6123
|
alphabet?: string
|
|
@@ -5975,13 +6130,21 @@ type PerfectionistSortMaps = {
|
|
|
5975
6130
|
|
|
5976
6131
|
customGroups?: ({
|
|
5977
6132
|
|
|
5978
|
-
|
|
6133
|
+
newlinesInside?: ("always" | "never")
|
|
6134
|
+
|
|
6135
|
+
fallbackSort?: {
|
|
6136
|
+
|
|
6137
|
+
order?: ("asc" | "desc")
|
|
6138
|
+
|
|
6139
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6140
|
+
[k: string]: unknown | undefined
|
|
6141
|
+
}
|
|
5979
6142
|
|
|
5980
|
-
|
|
6143
|
+
groupName?: string
|
|
5981
6144
|
|
|
5982
|
-
order?: ("
|
|
6145
|
+
order?: ("asc" | "desc")
|
|
5983
6146
|
|
|
5984
|
-
|
|
6147
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5985
6148
|
anyOf?: {
|
|
5986
6149
|
|
|
5987
6150
|
elementNamePattern?: (({
|
|
@@ -5994,13 +6157,21 @@ type PerfectionistSortMaps = {
|
|
|
5994
6157
|
}[]
|
|
5995
6158
|
} | {
|
|
5996
6159
|
|
|
5997
|
-
|
|
6160
|
+
newlinesInside?: ("always" | "never")
|
|
6161
|
+
|
|
6162
|
+
fallbackSort?: {
|
|
6163
|
+
|
|
6164
|
+
order?: ("asc" | "desc")
|
|
6165
|
+
|
|
6166
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6167
|
+
[k: string]: unknown | undefined
|
|
6168
|
+
}
|
|
5998
6169
|
|
|
5999
|
-
|
|
6170
|
+
groupName?: string
|
|
6000
6171
|
|
|
6001
|
-
order?: ("
|
|
6172
|
+
order?: ("asc" | "desc")
|
|
6002
6173
|
|
|
6003
|
-
|
|
6174
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6004
6175
|
|
|
6005
6176
|
elementNamePattern?: (({
|
|
6006
6177
|
pattern?: string
|
|
@@ -6056,8 +6227,6 @@ type PerfectionistSortMaps = {
|
|
|
6056
6227
|
// ----- perfectionist/sort-modules -----
|
|
6057
6228
|
type PerfectionistSortModules = []|[{
|
|
6058
6229
|
|
|
6059
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6060
|
-
|
|
6061
6230
|
fallbackSort?: {
|
|
6062
6231
|
|
|
6063
6232
|
order?: ("asc" | "desc")
|
|
@@ -6066,6 +6235,8 @@ type PerfectionistSortModules = []|[{
|
|
|
6066
6235
|
[k: string]: unknown | undefined
|
|
6067
6236
|
}
|
|
6068
6237
|
|
|
6238
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6239
|
+
|
|
6069
6240
|
ignoreCase?: boolean
|
|
6070
6241
|
|
|
6071
6242
|
alphabet?: string
|
|
@@ -6078,13 +6249,21 @@ type PerfectionistSortModules = []|[{
|
|
|
6078
6249
|
|
|
6079
6250
|
customGroups?: ({
|
|
6080
6251
|
|
|
6081
|
-
|
|
6252
|
+
newlinesInside?: ("always" | "never")
|
|
6253
|
+
|
|
6254
|
+
fallbackSort?: {
|
|
6255
|
+
|
|
6256
|
+
order?: ("asc" | "desc")
|
|
6257
|
+
|
|
6258
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6259
|
+
[k: string]: unknown | undefined
|
|
6260
|
+
}
|
|
6082
6261
|
|
|
6083
|
-
|
|
6262
|
+
groupName?: string
|
|
6084
6263
|
|
|
6085
|
-
order?: ("
|
|
6264
|
+
order?: ("asc" | "desc")
|
|
6086
6265
|
|
|
6087
|
-
|
|
6266
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6088
6267
|
anyOf?: {
|
|
6089
6268
|
|
|
6090
6269
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
@@ -6109,13 +6288,21 @@ type PerfectionistSortModules = []|[{
|
|
|
6109
6288
|
}[]
|
|
6110
6289
|
} | {
|
|
6111
6290
|
|
|
6112
|
-
|
|
6291
|
+
newlinesInside?: ("always" | "never")
|
|
6292
|
+
|
|
6293
|
+
fallbackSort?: {
|
|
6294
|
+
|
|
6295
|
+
order?: ("asc" | "desc")
|
|
6296
|
+
|
|
6297
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6298
|
+
[k: string]: unknown | undefined
|
|
6299
|
+
}
|
|
6113
6300
|
|
|
6114
|
-
|
|
6301
|
+
groupName?: string
|
|
6115
6302
|
|
|
6116
|
-
order?: ("
|
|
6303
|
+
order?: ("asc" | "desc")
|
|
6117
6304
|
|
|
6118
|
-
|
|
6305
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6119
6306
|
|
|
6120
6307
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
6121
6308
|
|
|
@@ -6171,9 +6358,7 @@ type PerfectionistSortModules = []|[{
|
|
|
6171
6358
|
})[]
|
|
6172
6359
|
}]
|
|
6173
6360
|
// ----- perfectionist/sort-named-exports -----
|
|
6174
|
-
type PerfectionistSortNamedExports =
|
|
6175
|
-
|
|
6176
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6361
|
+
type PerfectionistSortNamedExports = {
|
|
6177
6362
|
|
|
6178
6363
|
fallbackSort?: {
|
|
6179
6364
|
|
|
@@ -6183,6 +6368,8 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
6183
6368
|
[k: string]: unknown | undefined
|
|
6184
6369
|
}
|
|
6185
6370
|
|
|
6371
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6372
|
+
|
|
6186
6373
|
ignoreCase?: boolean
|
|
6187
6374
|
|
|
6188
6375
|
alphabet?: string
|
|
@@ -6197,6 +6384,68 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
6197
6384
|
|
|
6198
6385
|
ignoreAlias?: boolean
|
|
6199
6386
|
|
|
6387
|
+
customGroups?: ({
|
|
6388
|
+
|
|
6389
|
+
newlinesInside?: ("always" | "never")
|
|
6390
|
+
|
|
6391
|
+
fallbackSort?: {
|
|
6392
|
+
|
|
6393
|
+
order?: ("asc" | "desc")
|
|
6394
|
+
|
|
6395
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6396
|
+
[k: string]: unknown | undefined
|
|
6397
|
+
}
|
|
6398
|
+
|
|
6399
|
+
groupName?: string
|
|
6400
|
+
|
|
6401
|
+
order?: ("asc" | "desc")
|
|
6402
|
+
|
|
6403
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6404
|
+
anyOf?: {
|
|
6405
|
+
|
|
6406
|
+
modifiers?: ("value" | "type")[]
|
|
6407
|
+
|
|
6408
|
+
selector?: "export"
|
|
6409
|
+
|
|
6410
|
+
elementNamePattern?: (({
|
|
6411
|
+
pattern?: string
|
|
6412
|
+
flags?: string
|
|
6413
|
+
} | string)[] | ({
|
|
6414
|
+
pattern?: string
|
|
6415
|
+
flags?: string
|
|
6416
|
+
} | string))
|
|
6417
|
+
}[]
|
|
6418
|
+
} | {
|
|
6419
|
+
|
|
6420
|
+
newlinesInside?: ("always" | "never")
|
|
6421
|
+
|
|
6422
|
+
fallbackSort?: {
|
|
6423
|
+
|
|
6424
|
+
order?: ("asc" | "desc")
|
|
6425
|
+
|
|
6426
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6427
|
+
[k: string]: unknown | undefined
|
|
6428
|
+
}
|
|
6429
|
+
|
|
6430
|
+
groupName?: string
|
|
6431
|
+
|
|
6432
|
+
order?: ("asc" | "desc")
|
|
6433
|
+
|
|
6434
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6435
|
+
|
|
6436
|
+
modifiers?: ("value" | "type")[]
|
|
6437
|
+
|
|
6438
|
+
selector?: "export"
|
|
6439
|
+
|
|
6440
|
+
elementNamePattern?: (({
|
|
6441
|
+
pattern?: string
|
|
6442
|
+
flags?: string
|
|
6443
|
+
} | string)[] | ({
|
|
6444
|
+
pattern?: string
|
|
6445
|
+
flags?: string
|
|
6446
|
+
} | string))
|
|
6447
|
+
})[]
|
|
6448
|
+
|
|
6200
6449
|
partitionByComment?: (boolean | (({
|
|
6201
6450
|
pattern?: string
|
|
6202
6451
|
flags?: string
|
|
@@ -6221,11 +6470,16 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
6221
6470
|
})
|
|
6222
6471
|
|
|
6223
6472
|
partitionByNewLine?: boolean
|
|
6224
|
-
}]
|
|
6225
|
-
// ----- perfectionist/sort-named-imports -----
|
|
6226
|
-
type PerfectionistSortNamedImports = []|[{
|
|
6227
6473
|
|
|
6228
|
-
|
|
6474
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
6475
|
+
|
|
6476
|
+
groups?: (string | string[] | {
|
|
6477
|
+
|
|
6478
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
6479
|
+
})[]
|
|
6480
|
+
}[]
|
|
6481
|
+
// ----- perfectionist/sort-named-imports -----
|
|
6482
|
+
type PerfectionistSortNamedImports = {
|
|
6229
6483
|
|
|
6230
6484
|
fallbackSort?: {
|
|
6231
6485
|
|
|
@@ -6235,6 +6489,8 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
6235
6489
|
[k: string]: unknown | undefined
|
|
6236
6490
|
}
|
|
6237
6491
|
|
|
6492
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6493
|
+
|
|
6238
6494
|
ignoreCase?: boolean
|
|
6239
6495
|
|
|
6240
6496
|
alphabet?: string
|
|
@@ -6249,6 +6505,68 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
6249
6505
|
|
|
6250
6506
|
ignoreAlias?: boolean
|
|
6251
6507
|
|
|
6508
|
+
customGroups?: ({
|
|
6509
|
+
|
|
6510
|
+
newlinesInside?: ("always" | "never")
|
|
6511
|
+
|
|
6512
|
+
fallbackSort?: {
|
|
6513
|
+
|
|
6514
|
+
order?: ("asc" | "desc")
|
|
6515
|
+
|
|
6516
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6517
|
+
[k: string]: unknown | undefined
|
|
6518
|
+
}
|
|
6519
|
+
|
|
6520
|
+
groupName?: string
|
|
6521
|
+
|
|
6522
|
+
order?: ("asc" | "desc")
|
|
6523
|
+
|
|
6524
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6525
|
+
anyOf?: {
|
|
6526
|
+
|
|
6527
|
+
modifiers?: ("value" | "type")[]
|
|
6528
|
+
|
|
6529
|
+
selector?: "import"
|
|
6530
|
+
|
|
6531
|
+
elementNamePattern?: (({
|
|
6532
|
+
pattern?: string
|
|
6533
|
+
flags?: string
|
|
6534
|
+
} | string)[] | ({
|
|
6535
|
+
pattern?: string
|
|
6536
|
+
flags?: string
|
|
6537
|
+
} | string))
|
|
6538
|
+
}[]
|
|
6539
|
+
} | {
|
|
6540
|
+
|
|
6541
|
+
newlinesInside?: ("always" | "never")
|
|
6542
|
+
|
|
6543
|
+
fallbackSort?: {
|
|
6544
|
+
|
|
6545
|
+
order?: ("asc" | "desc")
|
|
6546
|
+
|
|
6547
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6548
|
+
[k: string]: unknown | undefined
|
|
6549
|
+
}
|
|
6550
|
+
|
|
6551
|
+
groupName?: string
|
|
6552
|
+
|
|
6553
|
+
order?: ("asc" | "desc")
|
|
6554
|
+
|
|
6555
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6556
|
+
|
|
6557
|
+
modifiers?: ("value" | "type")[]
|
|
6558
|
+
|
|
6559
|
+
selector?: "import"
|
|
6560
|
+
|
|
6561
|
+
elementNamePattern?: (({
|
|
6562
|
+
pattern?: string
|
|
6563
|
+
flags?: string
|
|
6564
|
+
} | string)[] | ({
|
|
6565
|
+
pattern?: string
|
|
6566
|
+
flags?: string
|
|
6567
|
+
} | string))
|
|
6568
|
+
})[]
|
|
6569
|
+
|
|
6252
6570
|
partitionByComment?: (boolean | (({
|
|
6253
6571
|
pattern?: string
|
|
6254
6572
|
flags?: string
|
|
@@ -6273,12 +6591,17 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
6273
6591
|
})
|
|
6274
6592
|
|
|
6275
6593
|
partitionByNewLine?: boolean
|
|
6276
|
-
|
|
6594
|
+
|
|
6595
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
6596
|
+
|
|
6597
|
+
groups?: (string | string[] | {
|
|
6598
|
+
|
|
6599
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
6600
|
+
})[]
|
|
6601
|
+
}[]
|
|
6277
6602
|
// ----- perfectionist/sort-object-types -----
|
|
6278
6603
|
type PerfectionistSortObjectTypes = {
|
|
6279
6604
|
|
|
6280
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6281
|
-
|
|
6282
6605
|
fallbackSort?: {
|
|
6283
6606
|
|
|
6284
6607
|
order?: ("asc" | "desc")
|
|
@@ -6287,6 +6610,8 @@ type PerfectionistSortObjectTypes = {
|
|
|
6287
6610
|
[k: string]: unknown | undefined
|
|
6288
6611
|
}
|
|
6289
6612
|
|
|
6613
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6614
|
+
|
|
6290
6615
|
ignoreCase?: boolean
|
|
6291
6616
|
|
|
6292
6617
|
alphabet?: string
|
|
@@ -6300,19 +6625,36 @@ type PerfectionistSortObjectTypes = {
|
|
|
6300
6625
|
[k: string]: (string | string[]) | undefined
|
|
6301
6626
|
} | ({
|
|
6302
6627
|
|
|
6303
|
-
|
|
6628
|
+
newlinesInside?: ("always" | "never")
|
|
6629
|
+
|
|
6630
|
+
fallbackSort?: {
|
|
6631
|
+
|
|
6632
|
+
order?: ("asc" | "desc")
|
|
6633
|
+
|
|
6634
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6635
|
+
sortBy?: ("name" | "value")
|
|
6636
|
+
[k: string]: unknown | undefined
|
|
6637
|
+
}
|
|
6304
6638
|
|
|
6305
|
-
|
|
6639
|
+
groupName?: string
|
|
6306
6640
|
|
|
6307
|
-
order?: ("
|
|
6641
|
+
order?: ("asc" | "desc")
|
|
6308
6642
|
|
|
6309
|
-
|
|
6643
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6310
6644
|
anyOf?: {
|
|
6311
6645
|
|
|
6312
6646
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
6313
6647
|
|
|
6314
6648
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
6315
6649
|
|
|
6650
|
+
elementValuePattern?: (({
|
|
6651
|
+
pattern?: string
|
|
6652
|
+
flags?: string
|
|
6653
|
+
} | string)[] | ({
|
|
6654
|
+
pattern?: string
|
|
6655
|
+
flags?: string
|
|
6656
|
+
} | string))
|
|
6657
|
+
|
|
6316
6658
|
elementNamePattern?: (({
|
|
6317
6659
|
pattern?: string
|
|
6318
6660
|
flags?: string
|
|
@@ -6320,21 +6662,39 @@ type PerfectionistSortObjectTypes = {
|
|
|
6320
6662
|
pattern?: string
|
|
6321
6663
|
flags?: string
|
|
6322
6664
|
} | string))
|
|
6665
|
+
sortBy?: ("name" | "value")
|
|
6323
6666
|
}[]
|
|
6324
6667
|
} | {
|
|
6325
6668
|
|
|
6326
|
-
|
|
6669
|
+
newlinesInside?: ("always" | "never")
|
|
6670
|
+
|
|
6671
|
+
fallbackSort?: {
|
|
6672
|
+
|
|
6673
|
+
order?: ("asc" | "desc")
|
|
6674
|
+
|
|
6675
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6676
|
+
sortBy?: ("name" | "value")
|
|
6677
|
+
[k: string]: unknown | undefined
|
|
6678
|
+
}
|
|
6327
6679
|
|
|
6328
|
-
|
|
6680
|
+
groupName?: string
|
|
6329
6681
|
|
|
6330
|
-
order?: ("
|
|
6682
|
+
order?: ("asc" | "desc")
|
|
6331
6683
|
|
|
6332
|
-
|
|
6684
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6333
6685
|
|
|
6334
6686
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
6335
6687
|
|
|
6336
6688
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
6337
6689
|
|
|
6690
|
+
elementValuePattern?: (({
|
|
6691
|
+
pattern?: string
|
|
6692
|
+
flags?: string
|
|
6693
|
+
} | string)[] | ({
|
|
6694
|
+
pattern?: string
|
|
6695
|
+
flags?: string
|
|
6696
|
+
} | string))
|
|
6697
|
+
|
|
6338
6698
|
elementNamePattern?: (({
|
|
6339
6699
|
pattern?: string
|
|
6340
6700
|
flags?: string
|
|
@@ -6342,7 +6702,10 @@ type PerfectionistSortObjectTypes = {
|
|
|
6342
6702
|
pattern?: string
|
|
6343
6703
|
flags?: string
|
|
6344
6704
|
} | string))
|
|
6705
|
+
sortBy?: ("name" | "value")
|
|
6345
6706
|
})[])
|
|
6707
|
+
|
|
6708
|
+
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
6346
6709
|
useConfigurationIf?: {
|
|
6347
6710
|
|
|
6348
6711
|
allNamesMatchPattern?: (({
|
|
@@ -6362,8 +6725,6 @@ type PerfectionistSortObjectTypes = {
|
|
|
6362
6725
|
} | string))
|
|
6363
6726
|
}
|
|
6364
6727
|
|
|
6365
|
-
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
6366
|
-
|
|
6367
6728
|
partitionByComment?: (boolean | (({
|
|
6368
6729
|
pattern?: string
|
|
6369
6730
|
flags?: string
|
|
@@ -6398,6 +6759,7 @@ type PerfectionistSortObjectTypes = {
|
|
|
6398
6759
|
pattern?: string
|
|
6399
6760
|
flags?: string
|
|
6400
6761
|
} | string))
|
|
6762
|
+
sortBy?: ("name" | "value")
|
|
6401
6763
|
|
|
6402
6764
|
groups?: (string | string[] | {
|
|
6403
6765
|
|
|
@@ -6407,8 +6769,6 @@ type PerfectionistSortObjectTypes = {
|
|
|
6407
6769
|
// ----- perfectionist/sort-objects -----
|
|
6408
6770
|
type PerfectionistSortObjects = {
|
|
6409
6771
|
|
|
6410
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6411
|
-
|
|
6412
6772
|
fallbackSort?: {
|
|
6413
6773
|
|
|
6414
6774
|
order?: ("asc" | "desc")
|
|
@@ -6417,6 +6777,8 @@ type PerfectionistSortObjects = {
|
|
|
6417
6777
|
[k: string]: unknown | undefined
|
|
6418
6778
|
}
|
|
6419
6779
|
|
|
6780
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6781
|
+
|
|
6420
6782
|
ignoreCase?: boolean
|
|
6421
6783
|
|
|
6422
6784
|
alphabet?: string
|
|
@@ -6435,13 +6797,21 @@ type PerfectionistSortObjects = {
|
|
|
6435
6797
|
[k: string]: (string | string[]) | undefined
|
|
6436
6798
|
} | ({
|
|
6437
6799
|
|
|
6438
|
-
|
|
6800
|
+
newlinesInside?: ("always" | "never")
|
|
6439
6801
|
|
|
6440
|
-
|
|
6802
|
+
fallbackSort?: {
|
|
6803
|
+
|
|
6804
|
+
order?: ("asc" | "desc")
|
|
6805
|
+
|
|
6806
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6807
|
+
[k: string]: unknown | undefined
|
|
6808
|
+
}
|
|
6441
6809
|
|
|
6442
|
-
|
|
6810
|
+
groupName?: string
|
|
6443
6811
|
|
|
6444
|
-
|
|
6812
|
+
order?: ("asc" | "desc")
|
|
6813
|
+
|
|
6814
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6445
6815
|
anyOf?: {
|
|
6446
6816
|
|
|
6447
6817
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
@@ -6466,13 +6836,21 @@ type PerfectionistSortObjects = {
|
|
|
6466
6836
|
}[]
|
|
6467
6837
|
} | {
|
|
6468
6838
|
|
|
6469
|
-
|
|
6839
|
+
newlinesInside?: ("always" | "never")
|
|
6840
|
+
|
|
6841
|
+
fallbackSort?: {
|
|
6842
|
+
|
|
6843
|
+
order?: ("asc" | "desc")
|
|
6844
|
+
|
|
6845
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6846
|
+
[k: string]: unknown | undefined
|
|
6847
|
+
}
|
|
6470
6848
|
|
|
6471
|
-
|
|
6849
|
+
groupName?: string
|
|
6472
6850
|
|
|
6473
|
-
order?: ("
|
|
6851
|
+
order?: ("asc" | "desc")
|
|
6474
6852
|
|
|
6475
|
-
|
|
6853
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6476
6854
|
|
|
6477
6855
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
6478
6856
|
|
|
@@ -6562,8 +6940,6 @@ type PerfectionistSortObjects = {
|
|
|
6562
6940
|
// ----- perfectionist/sort-sets -----
|
|
6563
6941
|
type PerfectionistSortSets = {
|
|
6564
6942
|
|
|
6565
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6566
|
-
|
|
6567
6943
|
fallbackSort?: {
|
|
6568
6944
|
|
|
6569
6945
|
order?: ("asc" | "desc")
|
|
@@ -6572,6 +6948,8 @@ type PerfectionistSortSets = {
|
|
|
6572
6948
|
[k: string]: unknown | undefined
|
|
6573
6949
|
}
|
|
6574
6950
|
|
|
6951
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6952
|
+
|
|
6575
6953
|
ignoreCase?: boolean
|
|
6576
6954
|
|
|
6577
6955
|
alphabet?: string
|
|
@@ -6586,13 +6964,21 @@ type PerfectionistSortSets = {
|
|
|
6586
6964
|
|
|
6587
6965
|
customGroups?: ({
|
|
6588
6966
|
|
|
6589
|
-
|
|
6967
|
+
newlinesInside?: ("always" | "never")
|
|
6968
|
+
|
|
6969
|
+
fallbackSort?: {
|
|
6970
|
+
|
|
6971
|
+
order?: ("asc" | "desc")
|
|
6972
|
+
|
|
6973
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6974
|
+
[k: string]: unknown | undefined
|
|
6975
|
+
}
|
|
6590
6976
|
|
|
6591
|
-
|
|
6977
|
+
groupName?: string
|
|
6592
6978
|
|
|
6593
|
-
order?: ("
|
|
6979
|
+
order?: ("asc" | "desc")
|
|
6594
6980
|
|
|
6595
|
-
|
|
6981
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6596
6982
|
anyOf?: {
|
|
6597
6983
|
|
|
6598
6984
|
selector?: ("literal" | "spread")
|
|
@@ -6607,13 +6993,21 @@ type PerfectionistSortSets = {
|
|
|
6607
6993
|
}[]
|
|
6608
6994
|
} | {
|
|
6609
6995
|
|
|
6610
|
-
|
|
6996
|
+
newlinesInside?: ("always" | "never")
|
|
6997
|
+
|
|
6998
|
+
fallbackSort?: {
|
|
6999
|
+
|
|
7000
|
+
order?: ("asc" | "desc")
|
|
7001
|
+
|
|
7002
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
7003
|
+
[k: string]: unknown | undefined
|
|
7004
|
+
}
|
|
6611
7005
|
|
|
6612
|
-
|
|
7006
|
+
groupName?: string
|
|
6613
7007
|
|
|
6614
|
-
order?: ("
|
|
7008
|
+
order?: ("asc" | "desc")
|
|
6615
7009
|
|
|
6616
|
-
|
|
7010
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6617
7011
|
|
|
6618
7012
|
selector?: ("literal" | "spread")
|
|
6619
7013
|
|
|
@@ -6671,8 +7065,6 @@ type PerfectionistSortSets = {
|
|
|
6671
7065
|
// ----- perfectionist/sort-switch-case -----
|
|
6672
7066
|
type PerfectionistSortSwitchCase = []|[{
|
|
6673
7067
|
|
|
6674
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6675
|
-
|
|
6676
7068
|
fallbackSort?: {
|
|
6677
7069
|
|
|
6678
7070
|
order?: ("asc" | "desc")
|
|
@@ -6681,6 +7073,8 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
6681
7073
|
[k: string]: unknown | undefined
|
|
6682
7074
|
}
|
|
6683
7075
|
|
|
7076
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
7077
|
+
|
|
6684
7078
|
ignoreCase?: boolean
|
|
6685
7079
|
|
|
6686
7080
|
alphabet?: string
|
|
@@ -6694,8 +7088,6 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
6694
7088
|
// ----- perfectionist/sort-union-types -----
|
|
6695
7089
|
type PerfectionistSortUnionTypes = []|[{
|
|
6696
7090
|
|
|
6697
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6698
|
-
|
|
6699
7091
|
fallbackSort?: {
|
|
6700
7092
|
|
|
6701
7093
|
order?: ("asc" | "desc")
|
|
@@ -6704,6 +7096,8 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
6704
7096
|
[k: string]: unknown | undefined
|
|
6705
7097
|
}
|
|
6706
7098
|
|
|
7099
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
7100
|
+
|
|
6707
7101
|
ignoreCase?: boolean
|
|
6708
7102
|
|
|
6709
7103
|
alphabet?: string
|
|
@@ -6749,8 +7143,6 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
6749
7143
|
// ----- perfectionist/sort-variable-declarations -----
|
|
6750
7144
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
6751
7145
|
|
|
6752
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6753
|
-
|
|
6754
7146
|
fallbackSort?: {
|
|
6755
7147
|
|
|
6756
7148
|
order?: ("asc" | "desc")
|
|
@@ -6759,6 +7151,8 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
6759
7151
|
[k: string]: unknown | undefined
|
|
6760
7152
|
}
|
|
6761
7153
|
|
|
7154
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
7155
|
+
|
|
6762
7156
|
ignoreCase?: boolean
|
|
6763
7157
|
|
|
6764
7158
|
alphabet?: string
|
|
@@ -8913,6 +9307,8 @@ type TypescriptNoUnnecessaryCondition = []|[{
|
|
|
8913
9307
|
// ----- typescript/no-unnecessary-type-assertion -----
|
|
8914
9308
|
type TypescriptNoUnnecessaryTypeAssertion = []|[{
|
|
8915
9309
|
|
|
9310
|
+
checkLiteralConstAssertions?: boolean
|
|
9311
|
+
|
|
8916
9312
|
typesToIgnore?: string[]
|
|
8917
9313
|
}]
|
|
8918
9314
|
// ----- typescript/no-unused-expressions -----
|
|
@@ -8984,6 +9380,8 @@ type TypescriptOnlyThrowError = []|[{
|
|
|
8984
9380
|
package: string
|
|
8985
9381
|
})[]
|
|
8986
9382
|
|
|
9383
|
+
allowRethrowing?: boolean
|
|
9384
|
+
|
|
8987
9385
|
allowThrowingAny?: boolean
|
|
8988
9386
|
|
|
8989
9387
|
allowThrowingUnknown?: boolean
|
|
@@ -9041,6 +9439,8 @@ type TypescriptPreferNullishCoalescing = []|[{
|
|
|
9041
9439
|
|
|
9042
9440
|
ignoreConditionalTests?: boolean
|
|
9043
9441
|
|
|
9442
|
+
ignoreIfStatements?: boolean
|
|
9443
|
+
|
|
9044
9444
|
ignoreMixedLogicalExpressions?: boolean
|
|
9045
9445
|
|
|
9046
9446
|
ignorePrimitives?: ({
|
|
@@ -9348,6 +9748,8 @@ type LinterConfig = Omit<Linter.Config, 'plugins'> & {
|
|
|
9348
9748
|
plugins?: Record<string, any>;
|
|
9349
9749
|
};
|
|
9350
9750
|
|
|
9751
|
+
declare function presetNestjs(options?: Options): LinterConfig[];
|
|
9752
|
+
|
|
9351
9753
|
declare function daopk(options?: Options, ...userConfigs: Linter.Config[]): LinterConfig[];
|
|
9352
9754
|
|
|
9353
|
-
export { daopk as default };
|
|
9755
|
+
export { daopk as default, presetNestjs };
|