@daopk/eslint-config 0.0.5 → 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 +684 -275
- package/dist/index.js +195 -129
- package/package.json +13 -13
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import { StylisticCustomizeOptions } from '@stylistic/eslint-plugin';
|
|
2
1
|
import { Linter } from 'eslint';
|
|
2
|
+
import { StylisticCustomizeOptions } from '@stylistic/eslint-plugin';
|
|
3
|
+
|
|
4
|
+
type StylisticOptions = Omit<StylisticCustomizeOptions, 'flat' | 'pluginName'>;
|
|
3
5
|
|
|
4
6
|
/* eslint-disable */
|
|
5
7
|
/* prettier-ignore */
|
|
@@ -336,233 +338,233 @@ interface RuleOptions {
|
|
|
336
338
|
'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
|
|
337
339
|
/**
|
|
338
340
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
339
|
-
* @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
|
|
340
342
|
*/
|
|
341
343
|
'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
|
|
342
344
|
/**
|
|
343
345
|
* Ensure a default export is present, given a default import.
|
|
344
|
-
* @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
|
|
345
347
|
*/
|
|
346
348
|
'import/default'?: Linter.RuleEntry<[]>
|
|
347
349
|
/**
|
|
348
350
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
349
|
-
* @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
|
|
350
352
|
*/
|
|
351
353
|
'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
|
|
352
354
|
/**
|
|
353
355
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
354
|
-
* @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
|
|
355
357
|
*/
|
|
356
358
|
'import/export'?: Linter.RuleEntry<[]>
|
|
357
359
|
/**
|
|
358
360
|
* Ensure all exports appear after other statements.
|
|
359
|
-
* @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
|
|
360
362
|
*/
|
|
361
363
|
'import/exports-last'?: Linter.RuleEntry<[]>
|
|
362
364
|
/**
|
|
363
365
|
* Ensure consistent use of file extension within the import path.
|
|
364
|
-
* @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
|
|
365
367
|
*/
|
|
366
368
|
'import/extensions'?: Linter.RuleEntry<ImportExtensions>
|
|
367
369
|
/**
|
|
368
370
|
* Ensure all imports appear before other statements.
|
|
369
|
-
* @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
|
|
370
372
|
*/
|
|
371
373
|
'import/first'?: Linter.RuleEntry<ImportFirst>
|
|
372
374
|
/**
|
|
373
375
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
374
|
-
* @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
|
|
375
377
|
*/
|
|
376
378
|
'import/group-exports'?: Linter.RuleEntry<[]>
|
|
377
379
|
/**
|
|
378
380
|
* Replaced by `import-x/first`.
|
|
379
|
-
* @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
|
|
380
382
|
* @deprecated
|
|
381
383
|
*/
|
|
382
384
|
'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
|
|
383
385
|
/**
|
|
384
386
|
* Enforce the maximum number of dependencies a module can have.
|
|
385
|
-
* @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
|
|
386
388
|
*/
|
|
387
389
|
'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
|
|
388
390
|
/**
|
|
389
391
|
* Ensure named imports correspond to a named export in the remote file.
|
|
390
|
-
* @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
|
|
391
393
|
*/
|
|
392
394
|
'import/named'?: Linter.RuleEntry<ImportNamed>
|
|
393
395
|
/**
|
|
394
396
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
395
|
-
* @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
|
|
396
398
|
*/
|
|
397
399
|
'import/namespace'?: Linter.RuleEntry<ImportNamespace>
|
|
398
400
|
/**
|
|
399
401
|
* Enforce a newline after import statements.
|
|
400
|
-
* @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
|
|
401
403
|
*/
|
|
402
404
|
'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
|
|
403
405
|
/**
|
|
404
406
|
* Forbid import of modules using absolute paths.
|
|
405
|
-
* @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
|
|
406
408
|
*/
|
|
407
409
|
'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
|
|
408
410
|
/**
|
|
409
411
|
* Forbid AMD `require` and `define` calls.
|
|
410
|
-
* @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
|
|
411
413
|
*/
|
|
412
414
|
'import/no-amd'?: Linter.RuleEntry<[]>
|
|
413
415
|
/**
|
|
414
416
|
* Forbid anonymous values as default exports.
|
|
415
|
-
* @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
|
|
416
418
|
*/
|
|
417
419
|
'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
|
|
418
420
|
/**
|
|
419
421
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
420
|
-
* @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
|
|
421
423
|
*/
|
|
422
424
|
'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
|
|
423
425
|
/**
|
|
424
426
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
425
|
-
* @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
|
|
426
428
|
*/
|
|
427
429
|
'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
|
|
428
430
|
/**
|
|
429
431
|
* Forbid default exports.
|
|
430
|
-
* @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
|
|
431
433
|
*/
|
|
432
434
|
'import/no-default-export'?: Linter.RuleEntry<[]>
|
|
433
435
|
/**
|
|
434
436
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
435
|
-
* @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
|
|
436
438
|
*/
|
|
437
439
|
'import/no-deprecated'?: Linter.RuleEntry<[]>
|
|
438
440
|
/**
|
|
439
441
|
* Forbid repeated import of the same module in multiple places.
|
|
440
|
-
* @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
|
|
441
443
|
*/
|
|
442
444
|
'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
|
|
443
445
|
/**
|
|
444
446
|
* Forbid `require()` calls with expressions.
|
|
445
|
-
* @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
|
|
446
448
|
*/
|
|
447
449
|
'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
|
|
448
450
|
/**
|
|
449
451
|
* Forbid empty named import blocks.
|
|
450
|
-
* @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
|
|
451
453
|
*/
|
|
452
454
|
'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
453
455
|
/**
|
|
454
456
|
* Forbid the use of extraneous packages.
|
|
455
|
-
* @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
|
|
456
458
|
*/
|
|
457
459
|
'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
|
|
458
460
|
/**
|
|
459
461
|
* Forbid import statements with CommonJS module.exports.
|
|
460
|
-
* @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
|
|
461
463
|
*/
|
|
462
464
|
'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
|
|
463
465
|
/**
|
|
464
466
|
* Forbid importing the submodules of other modules.
|
|
465
|
-
* @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
|
|
466
468
|
*/
|
|
467
469
|
'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
|
|
468
470
|
/**
|
|
469
471
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
470
|
-
* @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
|
|
471
473
|
*/
|
|
472
474
|
'import/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
473
475
|
/**
|
|
474
476
|
* Forbid use of exported name as identifier of default export.
|
|
475
|
-
* @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
|
|
476
478
|
*/
|
|
477
479
|
'import/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
478
480
|
/**
|
|
479
481
|
* Forbid use of exported name as property of default export.
|
|
480
|
-
* @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
|
|
481
483
|
*/
|
|
482
484
|
'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
483
485
|
/**
|
|
484
486
|
* Forbid named default exports.
|
|
485
|
-
* @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
|
|
486
488
|
*/
|
|
487
489
|
'import/no-named-default'?: Linter.RuleEntry<[]>
|
|
488
490
|
/**
|
|
489
491
|
* Forbid named exports.
|
|
490
|
-
* @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
|
|
491
493
|
*/
|
|
492
494
|
'import/no-named-export'?: Linter.RuleEntry<[]>
|
|
493
495
|
/**
|
|
494
496
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
495
|
-
* @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
|
|
496
498
|
*/
|
|
497
499
|
'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
|
|
498
500
|
/**
|
|
499
501
|
* Forbid Node.js builtin modules.
|
|
500
|
-
* @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
|
|
501
503
|
*/
|
|
502
504
|
'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
|
|
503
505
|
/**
|
|
504
506
|
* Forbid importing packages through relative paths.
|
|
505
|
-
* @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
|
|
506
508
|
*/
|
|
507
509
|
'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
|
|
508
510
|
/**
|
|
509
511
|
* Forbid importing modules from parent directories.
|
|
510
|
-
* @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
|
|
511
513
|
*/
|
|
512
514
|
'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
|
|
513
515
|
/**
|
|
514
516
|
* Forbid importing a default export by a different name.
|
|
515
|
-
* @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
|
|
516
518
|
*/
|
|
517
519
|
'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
|
|
518
520
|
/**
|
|
519
521
|
* Enforce which files can be imported in a given folder.
|
|
520
|
-
* @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
|
|
521
523
|
*/
|
|
522
524
|
'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
|
|
523
525
|
/**
|
|
524
526
|
* Forbid a module from importing itself.
|
|
525
|
-
* @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
|
|
526
528
|
*/
|
|
527
529
|
'import/no-self-import'?: Linter.RuleEntry<[]>
|
|
528
530
|
/**
|
|
529
531
|
* Forbid unassigned imports.
|
|
530
|
-
* @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
|
|
531
533
|
*/
|
|
532
534
|
'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
|
|
533
535
|
/**
|
|
534
536
|
* Ensure imports point to a file/module that can be resolved.
|
|
535
|
-
* @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
|
|
536
538
|
*/
|
|
537
539
|
'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
|
|
538
540
|
/**
|
|
539
541
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
540
|
-
* @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
|
|
541
543
|
*/
|
|
542
544
|
'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
|
|
543
545
|
/**
|
|
544
546
|
* Forbid unnecessary path segments in import and require statements.
|
|
545
|
-
* @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
|
|
546
548
|
*/
|
|
547
549
|
'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
|
|
548
550
|
/**
|
|
549
551
|
* Forbid webpack loader syntax in imports.
|
|
550
|
-
* @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
|
|
551
553
|
*/
|
|
552
554
|
'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
553
555
|
/**
|
|
554
556
|
* Enforce a convention in module import order.
|
|
555
|
-
* @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
|
|
556
558
|
*/
|
|
557
559
|
'import/order'?: Linter.RuleEntry<ImportOrder>
|
|
558
560
|
/**
|
|
559
561
|
* Prefer a default export if module exports a single name or multiple names.
|
|
560
|
-
* @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
|
|
561
563
|
*/
|
|
562
564
|
'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
|
|
563
565
|
/**
|
|
564
566
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
565
|
-
* @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
|
|
566
568
|
*/
|
|
567
569
|
'import/unambiguous'?: Linter.RuleEntry<[]>
|
|
568
570
|
/**
|
|
@@ -1313,7 +1315,7 @@ interface RuleOptions {
|
|
|
1313
1315
|
* Disallow identifiers from shadowing restricted names
|
|
1314
1316
|
* @see https://eslint.org/docs/latest/rules/no-shadow-restricted-names
|
|
1315
1317
|
*/
|
|
1316
|
-
'no-shadow-restricted-names'?: Linter.RuleEntry<
|
|
1318
|
+
'no-shadow-restricted-names'?: Linter.RuleEntry<NoShadowRestrictedNames>
|
|
1317
1319
|
/**
|
|
1318
1320
|
* Disallow spacing between function identifiers and their applications (deprecated)
|
|
1319
1321
|
* @see https://eslint.org/docs/latest/rules/no-spaced-func
|
|
@@ -2959,6 +2961,11 @@ interface RuleOptions {
|
|
|
2959
2961
|
* @see https://typescript-eslint.io/rules/no-unnecessary-type-constraint
|
|
2960
2962
|
*/
|
|
2961
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<[]>
|
|
2962
2969
|
/**
|
|
2963
2970
|
* Disallow type parameters that aren't used multiple times
|
|
2964
2971
|
* @see https://typescript-eslint.io/rules/no-unnecessary-type-parameters
|
|
@@ -3409,6 +3416,8 @@ type CapitalizedComments = []|[("always" | "never")]|[("always" | "never"), ({
|
|
|
3409
3416
|
type ClassMethodsUseThis = []|[{
|
|
3410
3417
|
exceptMethods?: string[]
|
|
3411
3418
|
enforceForClassFields?: boolean
|
|
3419
|
+
ignoreOverrideMethods?: boolean
|
|
3420
|
+
ignoreClassesWithImplements?: ("all" | "public-fields")
|
|
3412
3421
|
}]
|
|
3413
3422
|
// ----- comma-dangle -----
|
|
3414
3423
|
type CommaDangle = []|[(_CommaDangleValue | {
|
|
@@ -3543,7 +3552,7 @@ type IdMatch = []|[string]|[string, {
|
|
|
3543
3552
|
// ----- implicit-arrow-linebreak -----
|
|
3544
3553
|
type ImplicitArrowLinebreak = []|[("beside" | "below")]
|
|
3545
3554
|
// ----- import/consistent-type-specifier-style -----
|
|
3546
|
-
type ImportConsistentTypeSpecifierStyle = []|[("prefer-
|
|
3555
|
+
type ImportConsistentTypeSpecifierStyle = []|[("prefer-top-level" | "prefer-inline")]
|
|
3547
3556
|
// ----- import/dynamic-import-chunkname -----
|
|
3548
3557
|
type ImportDynamicImportChunkname = []|[{
|
|
3549
3558
|
importFunctions?: string[]
|
|
@@ -3763,6 +3772,17 @@ type ImportOrder = []|[{
|
|
|
3763
3772
|
position?: ("after" | "before")
|
|
3764
3773
|
}[]
|
|
3765
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
|
+
})
|
|
3766
3786
|
alphabetize?: {
|
|
3767
3787
|
caseInsensitive?: boolean
|
|
3768
3788
|
order?: ("ignore" | "asc" | "desc")
|
|
@@ -4401,7 +4421,7 @@ type NoEmpty = []|[{
|
|
|
4401
4421
|
}]
|
|
4402
4422
|
// ----- no-empty-function -----
|
|
4403
4423
|
type NoEmptyFunction = []|[{
|
|
4404
|
-
allow?: ("functions" | "arrowFunctions" | "generatorFunctions" | "methods" | "generatorMethods" | "getters" | "setters" | "constructors" | "asyncFunctions" | "asyncMethods")[]
|
|
4424
|
+
allow?: ("functions" | "arrowFunctions" | "generatorFunctions" | "methods" | "generatorMethods" | "getters" | "setters" | "constructors" | "asyncFunctions" | "asyncMethods" | "privateConstructors" | "protectedConstructors" | "decoratedFunctions" | "overrideMethods")[]
|
|
4405
4425
|
}]
|
|
4406
4426
|
// ----- no-empty-pattern -----
|
|
4407
4427
|
type NoEmptyPattern = []|[{
|
|
@@ -4603,13 +4623,9 @@ type NoRestrictedModules = ((string | {
|
|
|
4603
4623
|
}[])
|
|
4604
4624
|
// ----- no-restricted-properties -----
|
|
4605
4625
|
type NoRestrictedProperties = ({
|
|
4606
|
-
|
|
4607
|
-
property?: string
|
|
4608
|
-
message?: string
|
|
4626
|
+
[k: string]: unknown | undefined
|
|
4609
4627
|
} | {
|
|
4610
|
-
|
|
4611
|
-
property: string
|
|
4612
|
-
message?: string
|
|
4628
|
+
[k: string]: unknown | undefined
|
|
4613
4629
|
})[]
|
|
4614
4630
|
// ----- no-restricted-syntax -----
|
|
4615
4631
|
type NoRestrictedSyntax = (string | {
|
|
@@ -4633,6 +4649,10 @@ type NoShadow = []|[{
|
|
|
4633
4649
|
allow?: string[]
|
|
4634
4650
|
ignoreOnInitialization?: boolean
|
|
4635
4651
|
}]
|
|
4652
|
+
// ----- no-shadow-restricted-names -----
|
|
4653
|
+
type NoShadowRestrictedNames = []|[{
|
|
4654
|
+
reportGlobalThis?: boolean
|
|
4655
|
+
}]
|
|
4636
4656
|
// ----- no-sync -----
|
|
4637
4657
|
type NoSync = []|[{
|
|
4638
4658
|
allowAtRootLevel?: boolean
|
|
@@ -4684,6 +4704,7 @@ type NoUnusedExpressions = []|[{
|
|
|
4684
4704
|
allowTernary?: boolean
|
|
4685
4705
|
allowTaggedTemplates?: boolean
|
|
4686
4706
|
enforceForJSX?: boolean
|
|
4707
|
+
ignoreDirectives?: boolean
|
|
4687
4708
|
}]
|
|
4688
4709
|
// ----- no-unused-vars -----
|
|
4689
4710
|
type NoUnusedVars = []|[(("all" | "local") | {
|
|
@@ -4957,7 +4978,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
4957
4978
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
4958
4979
|
version?: string
|
|
4959
4980
|
allowExperimental?: boolean
|
|
4960
|
-
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")[]
|
|
4961
4982
|
}]
|
|
4962
4983
|
// ----- node/prefer-global/buffer -----
|
|
4963
4984
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -5100,8 +5121,6 @@ type PaddingLineBetweenStatements = {
|
|
|
5100
5121
|
// ----- perfectionist/sort-array-includes -----
|
|
5101
5122
|
type PerfectionistSortArrayIncludes = {
|
|
5102
5123
|
|
|
5103
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5104
|
-
|
|
5105
5124
|
fallbackSort?: {
|
|
5106
5125
|
|
|
5107
5126
|
order?: ("asc" | "desc")
|
|
@@ -5110,6 +5129,8 @@ type PerfectionistSortArrayIncludes = {
|
|
|
5110
5129
|
[k: string]: unknown | undefined
|
|
5111
5130
|
}
|
|
5112
5131
|
|
|
5132
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5133
|
+
|
|
5113
5134
|
ignoreCase?: boolean
|
|
5114
5135
|
|
|
5115
5136
|
alphabet?: string
|
|
@@ -5124,13 +5145,21 @@ type PerfectionistSortArrayIncludes = {
|
|
|
5124
5145
|
|
|
5125
5146
|
customGroups?: ({
|
|
5126
5147
|
|
|
5127
|
-
|
|
5148
|
+
newlinesInside?: ("always" | "never")
|
|
5149
|
+
|
|
5150
|
+
fallbackSort?: {
|
|
5151
|
+
|
|
5152
|
+
order?: ("asc" | "desc")
|
|
5153
|
+
|
|
5154
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5155
|
+
[k: string]: unknown | undefined
|
|
5156
|
+
}
|
|
5128
5157
|
|
|
5129
|
-
|
|
5158
|
+
groupName?: string
|
|
5130
5159
|
|
|
5131
|
-
order?: ("
|
|
5160
|
+
order?: ("asc" | "desc")
|
|
5132
5161
|
|
|
5133
|
-
|
|
5162
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5134
5163
|
anyOf?: {
|
|
5135
5164
|
|
|
5136
5165
|
selector?: ("literal" | "spread")
|
|
@@ -5145,13 +5174,21 @@ type PerfectionistSortArrayIncludes = {
|
|
|
5145
5174
|
}[]
|
|
5146
5175
|
} | {
|
|
5147
5176
|
|
|
5148
|
-
|
|
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
|
+
}
|
|
5149
5186
|
|
|
5150
|
-
|
|
5187
|
+
groupName?: string
|
|
5151
5188
|
|
|
5152
|
-
order?: ("
|
|
5189
|
+
order?: ("asc" | "desc")
|
|
5153
5190
|
|
|
5154
|
-
|
|
5191
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5155
5192
|
|
|
5156
5193
|
selector?: ("literal" | "spread")
|
|
5157
5194
|
|
|
@@ -5209,8 +5246,6 @@ type PerfectionistSortArrayIncludes = {
|
|
|
5209
5246
|
// ----- perfectionist/sort-classes -----
|
|
5210
5247
|
type PerfectionistSortClasses = []|[{
|
|
5211
5248
|
|
|
5212
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5213
|
-
|
|
5214
5249
|
fallbackSort?: {
|
|
5215
5250
|
|
|
5216
5251
|
order?: ("asc" | "desc")
|
|
@@ -5219,6 +5254,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
5219
5254
|
[k: string]: unknown | undefined
|
|
5220
5255
|
}
|
|
5221
5256
|
|
|
5257
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5258
|
+
|
|
5222
5259
|
ignoreCase?: boolean
|
|
5223
5260
|
|
|
5224
5261
|
alphabet?: string
|
|
@@ -5231,13 +5268,21 @@ type PerfectionistSortClasses = []|[{
|
|
|
5231
5268
|
|
|
5232
5269
|
customGroups?: ({
|
|
5233
5270
|
|
|
5234
|
-
|
|
5271
|
+
newlinesInside?: ("always" | "never")
|
|
5272
|
+
|
|
5273
|
+
fallbackSort?: {
|
|
5274
|
+
|
|
5275
|
+
order?: ("asc" | "desc")
|
|
5276
|
+
|
|
5277
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5278
|
+
[k: string]: unknown | undefined
|
|
5279
|
+
}
|
|
5235
5280
|
|
|
5236
|
-
|
|
5281
|
+
groupName?: string
|
|
5237
5282
|
|
|
5238
|
-
order?: ("
|
|
5283
|
+
order?: ("asc" | "desc")
|
|
5239
5284
|
|
|
5240
|
-
|
|
5285
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5241
5286
|
anyOf?: {
|
|
5242
5287
|
|
|
5243
5288
|
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
@@ -5270,13 +5315,21 @@ type PerfectionistSortClasses = []|[{
|
|
|
5270
5315
|
}[]
|
|
5271
5316
|
} | {
|
|
5272
5317
|
|
|
5273
|
-
|
|
5318
|
+
newlinesInside?: ("always" | "never")
|
|
5274
5319
|
|
|
5275
|
-
|
|
5320
|
+
fallbackSort?: {
|
|
5321
|
+
|
|
5322
|
+
order?: ("asc" | "desc")
|
|
5323
|
+
|
|
5324
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5325
|
+
[k: string]: unknown | undefined
|
|
5326
|
+
}
|
|
5276
5327
|
|
|
5277
|
-
|
|
5328
|
+
groupName?: string
|
|
5278
5329
|
|
|
5279
|
-
|
|
5330
|
+
order?: ("asc" | "desc")
|
|
5331
|
+
|
|
5332
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5280
5333
|
|
|
5281
5334
|
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
5282
5335
|
|
|
@@ -5350,8 +5403,6 @@ type PerfectionistSortClasses = []|[{
|
|
|
5350
5403
|
// ----- perfectionist/sort-decorators -----
|
|
5351
5404
|
type PerfectionistSortDecorators = []|[{
|
|
5352
5405
|
|
|
5353
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5354
|
-
|
|
5355
5406
|
fallbackSort?: {
|
|
5356
5407
|
|
|
5357
5408
|
order?: ("asc" | "desc")
|
|
@@ -5360,6 +5411,8 @@ type PerfectionistSortDecorators = []|[{
|
|
|
5360
5411
|
[k: string]: unknown | undefined
|
|
5361
5412
|
}
|
|
5362
5413
|
|
|
5414
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5415
|
+
|
|
5363
5416
|
ignoreCase?: boolean
|
|
5364
5417
|
|
|
5365
5418
|
alphabet?: string
|
|
@@ -5415,8 +5468,6 @@ type PerfectionistSortDecorators = []|[{
|
|
|
5415
5468
|
// ----- perfectionist/sort-enums -----
|
|
5416
5469
|
type PerfectionistSortEnums = []|[{
|
|
5417
5470
|
|
|
5418
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5419
|
-
|
|
5420
5471
|
fallbackSort?: {
|
|
5421
5472
|
|
|
5422
5473
|
order?: ("asc" | "desc")
|
|
@@ -5425,6 +5476,8 @@ type PerfectionistSortEnums = []|[{
|
|
|
5425
5476
|
[k: string]: unknown | undefined
|
|
5426
5477
|
}
|
|
5427
5478
|
|
|
5479
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5480
|
+
|
|
5428
5481
|
ignoreCase?: boolean
|
|
5429
5482
|
|
|
5430
5483
|
alphabet?: string
|
|
@@ -5440,13 +5493,21 @@ type PerfectionistSortEnums = []|[{
|
|
|
5440
5493
|
[k: string]: (string | string[]) | undefined
|
|
5441
5494
|
} | ({
|
|
5442
5495
|
|
|
5443
|
-
|
|
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
|
+
}
|
|
5444
5505
|
|
|
5445
|
-
|
|
5506
|
+
groupName?: string
|
|
5446
5507
|
|
|
5447
|
-
order?: ("
|
|
5508
|
+
order?: ("asc" | "desc")
|
|
5448
5509
|
|
|
5449
|
-
|
|
5510
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5450
5511
|
anyOf?: {
|
|
5451
5512
|
|
|
5452
5513
|
elementValuePattern?: (({
|
|
@@ -5467,13 +5528,21 @@ type PerfectionistSortEnums = []|[{
|
|
|
5467
5528
|
}[]
|
|
5468
5529
|
} | {
|
|
5469
5530
|
|
|
5470
|
-
|
|
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
|
+
}
|
|
5471
5540
|
|
|
5472
|
-
|
|
5541
|
+
groupName?: string
|
|
5473
5542
|
|
|
5474
|
-
order?: ("
|
|
5543
|
+
order?: ("asc" | "desc")
|
|
5475
5544
|
|
|
5476
|
-
|
|
5545
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5477
5546
|
|
|
5478
5547
|
elementValuePattern?: (({
|
|
5479
5548
|
pattern?: string
|
|
@@ -5527,9 +5596,7 @@ type PerfectionistSortEnums = []|[{
|
|
|
5527
5596
|
})[]
|
|
5528
5597
|
}]
|
|
5529
5598
|
// ----- perfectionist/sort-exports -----
|
|
5530
|
-
type PerfectionistSortExports =
|
|
5531
|
-
|
|
5532
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5599
|
+
type PerfectionistSortExports = {
|
|
5533
5600
|
|
|
5534
5601
|
fallbackSort?: {
|
|
5535
5602
|
|
|
@@ -5539,6 +5606,8 @@ type PerfectionistSortExports = []|[{
|
|
|
5539
5606
|
[k: string]: unknown | undefined
|
|
5540
5607
|
}
|
|
5541
5608
|
|
|
5609
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5610
|
+
|
|
5542
5611
|
ignoreCase?: boolean
|
|
5543
5612
|
|
|
5544
5613
|
alphabet?: string
|
|
@@ -5551,6 +5620,68 @@ type PerfectionistSortExports = []|[{
|
|
|
5551
5620
|
|
|
5552
5621
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
5553
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
|
+
|
|
5554
5685
|
partitionByComment?: (boolean | (({
|
|
5555
5686
|
pattern?: string
|
|
5556
5687
|
flags?: string
|
|
@@ -5575,44 +5706,16 @@ type PerfectionistSortExports = []|[{
|
|
|
5575
5706
|
})
|
|
5576
5707
|
|
|
5577
5708
|
partitionByNewLine?: boolean
|
|
5578
|
-
}]
|
|
5579
|
-
// ----- perfectionist/sort-heritage-clauses -----
|
|
5580
|
-
type PerfectionistSortHeritageClauses = []|[{
|
|
5581
|
-
|
|
5582
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5583
|
-
|
|
5584
|
-
fallbackSort?: {
|
|
5585
|
-
|
|
5586
|
-
order?: ("asc" | "desc")
|
|
5587
|
-
|
|
5588
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5589
|
-
[k: string]: unknown | undefined
|
|
5590
|
-
}
|
|
5591
|
-
|
|
5592
|
-
ignoreCase?: boolean
|
|
5593
|
-
|
|
5594
|
-
alphabet?: string
|
|
5595
5709
|
|
|
5596
|
-
|
|
5597
|
-
|
|
5598
|
-
order?: ("asc" | "desc")
|
|
5599
|
-
|
|
5600
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5601
|
-
|
|
5602
|
-
customGroups?: {
|
|
5603
|
-
[k: string]: (string | string[]) | undefined
|
|
5604
|
-
}
|
|
5710
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
5605
5711
|
|
|
5606
5712
|
groups?: (string | string[] | {
|
|
5607
5713
|
|
|
5608
5714
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
5609
5715
|
})[]
|
|
5610
|
-
}]
|
|
5611
|
-
// ----- perfectionist/sort-
|
|
5612
|
-
type
|
|
5613
|
-
type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
|
|
5614
|
-
|
|
5615
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5716
|
+
}[]
|
|
5717
|
+
// ----- perfectionist/sort-heritage-clauses -----
|
|
5718
|
+
type PerfectionistSortHeritageClauses = []|[{
|
|
5616
5719
|
|
|
5617
5720
|
fallbackSort?: {
|
|
5618
5721
|
|
|
@@ -5622,6 +5725,8 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
5622
5725
|
[k: string]: unknown | undefined
|
|
5623
5726
|
}
|
|
5624
5727
|
|
|
5728
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5729
|
+
|
|
5625
5730
|
ignoreCase?: boolean
|
|
5626
5731
|
|
|
5627
5732
|
alphabet?: string
|
|
@@ -5633,76 +5738,17 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
5633
5738
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5634
5739
|
|
|
5635
5740
|
customGroups?: {
|
|
5636
|
-
|
|
5637
|
-
value?: {
|
|
5638
|
-
[k: string]: unknown | undefined
|
|
5639
|
-
}
|
|
5640
|
-
|
|
5641
|
-
type?: {
|
|
5642
|
-
[k: string]: unknown | undefined
|
|
5643
|
-
}
|
|
5741
|
+
[k: string]: (string | string[]) | undefined
|
|
5644
5742
|
}
|
|
5645
5743
|
|
|
5646
|
-
maxLineLength?: number
|
|
5647
|
-
|
|
5648
|
-
sortSideEffects?: boolean
|
|
5649
|
-
|
|
5650
|
-
environment?: ("node" | "bun")
|
|
5651
|
-
|
|
5652
|
-
tsconfigRootDir?: string
|
|
5653
|
-
|
|
5654
|
-
partitionByComment?: (boolean | (({
|
|
5655
|
-
pattern?: string
|
|
5656
|
-
flags?: string
|
|
5657
|
-
} | string)[] | ({
|
|
5658
|
-
pattern?: string
|
|
5659
|
-
flags?: string
|
|
5660
|
-
} | string)) | {
|
|
5661
|
-
block?: (boolean | (({
|
|
5662
|
-
pattern?: string
|
|
5663
|
-
flags?: string
|
|
5664
|
-
} | string)[] | ({
|
|
5665
|
-
pattern?: string
|
|
5666
|
-
flags?: string
|
|
5667
|
-
} | string)))
|
|
5668
|
-
line?: (boolean | (({
|
|
5669
|
-
pattern?: string
|
|
5670
|
-
flags?: string
|
|
5671
|
-
} | string)[] | ({
|
|
5672
|
-
pattern?: string
|
|
5673
|
-
flags?: string
|
|
5674
|
-
} | string)))
|
|
5675
|
-
})
|
|
5676
|
-
|
|
5677
|
-
partitionByNewLine?: boolean
|
|
5678
|
-
|
|
5679
|
-
newlinesBetween?: ("ignore" | "always" | "never")
|
|
5680
|
-
|
|
5681
|
-
internalPattern?: (({
|
|
5682
|
-
pattern?: string
|
|
5683
|
-
flags?: string
|
|
5684
|
-
} | string)[] | ({
|
|
5685
|
-
pattern?: string
|
|
5686
|
-
flags?: string
|
|
5687
|
-
} | string))
|
|
5688
|
-
|
|
5689
5744
|
groups?: (string | string[] | {
|
|
5690
5745
|
|
|
5691
5746
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
5692
5747
|
})[]
|
|
5693
|
-
}
|
|
5694
|
-
type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
|
|
5695
|
-
[k: string]: unknown | undefined
|
|
5696
|
-
} | _PerfectionistSortImports_IsLineLength)
|
|
5697
|
-
interface _PerfectionistSortImports_IsLineLength {
|
|
5698
|
-
type: "line-length"
|
|
5699
|
-
[k: string]: unknown | undefined
|
|
5700
|
-
}
|
|
5748
|
+
}]
|
|
5701
5749
|
// ----- perfectionist/sort-interfaces -----
|
|
5702
5750
|
type PerfectionistSortInterfaces = {
|
|
5703
5751
|
|
|
5704
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5705
|
-
|
|
5706
5752
|
fallbackSort?: {
|
|
5707
5753
|
|
|
5708
5754
|
order?: ("asc" | "desc")
|
|
@@ -5711,6 +5757,8 @@ type PerfectionistSortInterfaces = {
|
|
|
5711
5757
|
[k: string]: unknown | undefined
|
|
5712
5758
|
}
|
|
5713
5759
|
|
|
5760
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5761
|
+
|
|
5714
5762
|
ignoreCase?: boolean
|
|
5715
5763
|
|
|
5716
5764
|
alphabet?: string
|
|
@@ -5724,41 +5772,76 @@ type PerfectionistSortInterfaces = {
|
|
|
5724
5772
|
[k: string]: (string | string[]) | undefined
|
|
5725
5773
|
} | ({
|
|
5726
5774
|
|
|
5727
|
-
|
|
5775
|
+
newlinesInside?: ("always" | "never")
|
|
5776
|
+
|
|
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
|
+
}
|
|
5728
5785
|
|
|
5729
|
-
|
|
5786
|
+
groupName?: string
|
|
5730
5787
|
|
|
5731
|
-
order?: ("
|
|
5788
|
+
order?: ("asc" | "desc")
|
|
5732
5789
|
|
|
5733
|
-
|
|
5790
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5734
5791
|
anyOf?: {
|
|
5735
5792
|
|
|
5736
5793
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
5737
5794
|
|
|
5738
5795
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
5739
5796
|
|
|
5740
|
-
|
|
5797
|
+
elementValuePattern?: (({
|
|
5741
5798
|
pattern?: string
|
|
5742
5799
|
flags?: string
|
|
5743
5800
|
} | string)[] | ({
|
|
5744
5801
|
pattern?: string
|
|
5745
5802
|
flags?: string
|
|
5746
5803
|
} | string))
|
|
5747
|
-
|
|
5748
|
-
|
|
5804
|
+
|
|
5805
|
+
elementNamePattern?: (({
|
|
5806
|
+
pattern?: string
|
|
5807
|
+
flags?: string
|
|
5808
|
+
} | string)[] | ({
|
|
5809
|
+
pattern?: string
|
|
5810
|
+
flags?: string
|
|
5811
|
+
} | string))
|
|
5812
|
+
sortBy?: ("name" | "value")
|
|
5813
|
+
}[]
|
|
5814
|
+
} | {
|
|
5749
5815
|
|
|
5750
|
-
|
|
5816
|
+
newlinesInside?: ("always" | "never")
|
|
5817
|
+
|
|
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
|
+
}
|
|
5751
5826
|
|
|
5752
|
-
|
|
5827
|
+
groupName?: string
|
|
5753
5828
|
|
|
5754
|
-
order?: ("
|
|
5829
|
+
order?: ("asc" | "desc")
|
|
5755
5830
|
|
|
5756
|
-
|
|
5831
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5757
5832
|
|
|
5758
5833
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
5759
5834
|
|
|
5760
5835
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
5761
5836
|
|
|
5837
|
+
elementValuePattern?: (({
|
|
5838
|
+
pattern?: string
|
|
5839
|
+
flags?: string
|
|
5840
|
+
} | string)[] | ({
|
|
5841
|
+
pattern?: string
|
|
5842
|
+
flags?: string
|
|
5843
|
+
} | string))
|
|
5844
|
+
|
|
5762
5845
|
elementNamePattern?: (({
|
|
5763
5846
|
pattern?: string
|
|
5764
5847
|
flags?: string
|
|
@@ -5766,7 +5849,10 @@ type PerfectionistSortInterfaces = {
|
|
|
5766
5849
|
pattern?: string
|
|
5767
5850
|
flags?: string
|
|
5768
5851
|
} | string))
|
|
5852
|
+
sortBy?: ("name" | "value")
|
|
5769
5853
|
})[])
|
|
5854
|
+
|
|
5855
|
+
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
5770
5856
|
useConfigurationIf?: {
|
|
5771
5857
|
|
|
5772
5858
|
allNamesMatchPattern?: (({
|
|
@@ -5786,8 +5872,6 @@ type PerfectionistSortInterfaces = {
|
|
|
5786
5872
|
} | string))
|
|
5787
5873
|
}
|
|
5788
5874
|
|
|
5789
|
-
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
5790
|
-
|
|
5791
5875
|
partitionByComment?: (boolean | (({
|
|
5792
5876
|
pattern?: string
|
|
5793
5877
|
flags?: string
|
|
@@ -5822,6 +5906,7 @@ type PerfectionistSortInterfaces = {
|
|
|
5822
5906
|
pattern?: string
|
|
5823
5907
|
flags?: string
|
|
5824
5908
|
} | string))
|
|
5909
|
+
sortBy?: ("name" | "value")
|
|
5825
5910
|
|
|
5826
5911
|
groups?: (string | string[] | {
|
|
5827
5912
|
|
|
@@ -5831,8 +5916,6 @@ type PerfectionistSortInterfaces = {
|
|
|
5831
5916
|
// ----- perfectionist/sort-intersection-types -----
|
|
5832
5917
|
type PerfectionistSortIntersectionTypes = []|[{
|
|
5833
5918
|
|
|
5834
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5835
|
-
|
|
5836
5919
|
fallbackSort?: {
|
|
5837
5920
|
|
|
5838
5921
|
order?: ("asc" | "desc")
|
|
@@ -5841,6 +5924,8 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
5841
5924
|
[k: string]: unknown | undefined
|
|
5842
5925
|
}
|
|
5843
5926
|
|
|
5927
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5928
|
+
|
|
5844
5929
|
ignoreCase?: boolean
|
|
5845
5930
|
|
|
5846
5931
|
alphabet?: string
|
|
@@ -5886,8 +5971,6 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
5886
5971
|
// ----- perfectionist/sort-jsx-props -----
|
|
5887
5972
|
type PerfectionistSortJsxProps = {
|
|
5888
5973
|
|
|
5889
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5890
|
-
|
|
5891
5974
|
fallbackSort?: {
|
|
5892
5975
|
|
|
5893
5976
|
order?: ("asc" | "desc")
|
|
@@ -5896,6 +5979,8 @@ type PerfectionistSortJsxProps = {
|
|
|
5896
5979
|
[k: string]: unknown | undefined
|
|
5897
5980
|
}
|
|
5898
5981
|
|
|
5982
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5983
|
+
|
|
5899
5984
|
ignoreCase?: boolean
|
|
5900
5985
|
|
|
5901
5986
|
alphabet?: string
|
|
@@ -5905,6 +5990,85 @@ type PerfectionistSortJsxProps = {
|
|
|
5905
5990
|
order?: ("asc" | "desc")
|
|
5906
5991
|
|
|
5907
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
|
+
})[])
|
|
5908
6072
|
useConfigurationIf?: {
|
|
5909
6073
|
|
|
5910
6074
|
allNamesMatchPattern?: (({
|
|
@@ -5928,10 +6092,6 @@ type PerfectionistSortJsxProps = {
|
|
|
5928
6092
|
|
|
5929
6093
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
5930
6094
|
|
|
5931
|
-
customGroups?: {
|
|
5932
|
-
[k: string]: (string | string[]) | undefined
|
|
5933
|
-
}
|
|
5934
|
-
|
|
5935
6095
|
ignorePattern?: (({
|
|
5936
6096
|
pattern?: string
|
|
5937
6097
|
flags?: string
|
|
@@ -5948,8 +6108,6 @@ type PerfectionistSortJsxProps = {
|
|
|
5948
6108
|
// ----- perfectionist/sort-maps -----
|
|
5949
6109
|
type PerfectionistSortMaps = {
|
|
5950
6110
|
|
|
5951
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
5952
|
-
|
|
5953
6111
|
fallbackSort?: {
|
|
5954
6112
|
|
|
5955
6113
|
order?: ("asc" | "desc")
|
|
@@ -5958,6 +6116,8 @@ type PerfectionistSortMaps = {
|
|
|
5958
6116
|
[k: string]: unknown | undefined
|
|
5959
6117
|
}
|
|
5960
6118
|
|
|
6119
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6120
|
+
|
|
5961
6121
|
ignoreCase?: boolean
|
|
5962
6122
|
|
|
5963
6123
|
alphabet?: string
|
|
@@ -5970,13 +6130,21 @@ type PerfectionistSortMaps = {
|
|
|
5970
6130
|
|
|
5971
6131
|
customGroups?: ({
|
|
5972
6132
|
|
|
5973
|
-
|
|
6133
|
+
newlinesInside?: ("always" | "never")
|
|
5974
6134
|
|
|
5975
|
-
|
|
6135
|
+
fallbackSort?: {
|
|
6136
|
+
|
|
6137
|
+
order?: ("asc" | "desc")
|
|
6138
|
+
|
|
6139
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6140
|
+
[k: string]: unknown | undefined
|
|
6141
|
+
}
|
|
5976
6142
|
|
|
5977
|
-
|
|
6143
|
+
groupName?: string
|
|
5978
6144
|
|
|
5979
|
-
|
|
6145
|
+
order?: ("asc" | "desc")
|
|
6146
|
+
|
|
6147
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5980
6148
|
anyOf?: {
|
|
5981
6149
|
|
|
5982
6150
|
elementNamePattern?: (({
|
|
@@ -5989,13 +6157,21 @@ type PerfectionistSortMaps = {
|
|
|
5989
6157
|
}[]
|
|
5990
6158
|
} | {
|
|
5991
6159
|
|
|
5992
|
-
|
|
6160
|
+
newlinesInside?: ("always" | "never")
|
|
5993
6161
|
|
|
5994
|
-
|
|
6162
|
+
fallbackSort?: {
|
|
6163
|
+
|
|
6164
|
+
order?: ("asc" | "desc")
|
|
6165
|
+
|
|
6166
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6167
|
+
[k: string]: unknown | undefined
|
|
6168
|
+
}
|
|
5995
6169
|
|
|
5996
|
-
|
|
6170
|
+
groupName?: string
|
|
5997
6171
|
|
|
5998
|
-
|
|
6172
|
+
order?: ("asc" | "desc")
|
|
6173
|
+
|
|
6174
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
5999
6175
|
|
|
6000
6176
|
elementNamePattern?: (({
|
|
6001
6177
|
pattern?: string
|
|
@@ -6051,8 +6227,6 @@ type PerfectionistSortMaps = {
|
|
|
6051
6227
|
// ----- perfectionist/sort-modules -----
|
|
6052
6228
|
type PerfectionistSortModules = []|[{
|
|
6053
6229
|
|
|
6054
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6055
|
-
|
|
6056
6230
|
fallbackSort?: {
|
|
6057
6231
|
|
|
6058
6232
|
order?: ("asc" | "desc")
|
|
@@ -6061,6 +6235,8 @@ type PerfectionistSortModules = []|[{
|
|
|
6061
6235
|
[k: string]: unknown | undefined
|
|
6062
6236
|
}
|
|
6063
6237
|
|
|
6238
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6239
|
+
|
|
6064
6240
|
ignoreCase?: boolean
|
|
6065
6241
|
|
|
6066
6242
|
alphabet?: string
|
|
@@ -6073,13 +6249,21 @@ type PerfectionistSortModules = []|[{
|
|
|
6073
6249
|
|
|
6074
6250
|
customGroups?: ({
|
|
6075
6251
|
|
|
6076
|
-
|
|
6252
|
+
newlinesInside?: ("always" | "never")
|
|
6077
6253
|
|
|
6078
|
-
|
|
6254
|
+
fallbackSort?: {
|
|
6255
|
+
|
|
6256
|
+
order?: ("asc" | "desc")
|
|
6257
|
+
|
|
6258
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6259
|
+
[k: string]: unknown | undefined
|
|
6260
|
+
}
|
|
6079
6261
|
|
|
6080
|
-
|
|
6262
|
+
groupName?: string
|
|
6081
6263
|
|
|
6082
|
-
|
|
6264
|
+
order?: ("asc" | "desc")
|
|
6265
|
+
|
|
6266
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6083
6267
|
anyOf?: {
|
|
6084
6268
|
|
|
6085
6269
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
@@ -6104,13 +6288,21 @@ type PerfectionistSortModules = []|[{
|
|
|
6104
6288
|
}[]
|
|
6105
6289
|
} | {
|
|
6106
6290
|
|
|
6107
|
-
|
|
6291
|
+
newlinesInside?: ("always" | "never")
|
|
6108
6292
|
|
|
6109
|
-
|
|
6293
|
+
fallbackSort?: {
|
|
6294
|
+
|
|
6295
|
+
order?: ("asc" | "desc")
|
|
6296
|
+
|
|
6297
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6298
|
+
[k: string]: unknown | undefined
|
|
6299
|
+
}
|
|
6110
6300
|
|
|
6111
|
-
|
|
6301
|
+
groupName?: string
|
|
6112
6302
|
|
|
6113
|
-
|
|
6303
|
+
order?: ("asc" | "desc")
|
|
6304
|
+
|
|
6305
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6114
6306
|
|
|
6115
6307
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
6116
6308
|
|
|
@@ -6166,9 +6358,7 @@ type PerfectionistSortModules = []|[{
|
|
|
6166
6358
|
})[]
|
|
6167
6359
|
}]
|
|
6168
6360
|
// ----- perfectionist/sort-named-exports -----
|
|
6169
|
-
type PerfectionistSortNamedExports =
|
|
6170
|
-
|
|
6171
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6361
|
+
type PerfectionistSortNamedExports = {
|
|
6172
6362
|
|
|
6173
6363
|
fallbackSort?: {
|
|
6174
6364
|
|
|
@@ -6178,6 +6368,8 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
6178
6368
|
[k: string]: unknown | undefined
|
|
6179
6369
|
}
|
|
6180
6370
|
|
|
6371
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6372
|
+
|
|
6181
6373
|
ignoreCase?: boolean
|
|
6182
6374
|
|
|
6183
6375
|
alphabet?: string
|
|
@@ -6192,6 +6384,68 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
6192
6384
|
|
|
6193
6385
|
ignoreAlias?: boolean
|
|
6194
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
|
+
|
|
6195
6449
|
partitionByComment?: (boolean | (({
|
|
6196
6450
|
pattern?: string
|
|
6197
6451
|
flags?: string
|
|
@@ -6216,11 +6470,16 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
6216
6470
|
})
|
|
6217
6471
|
|
|
6218
6472
|
partitionByNewLine?: boolean
|
|
6219
|
-
}]
|
|
6220
|
-
// ----- perfectionist/sort-named-imports -----
|
|
6221
|
-
type PerfectionistSortNamedImports = []|[{
|
|
6222
6473
|
|
|
6223
|
-
|
|
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 = {
|
|
6224
6483
|
|
|
6225
6484
|
fallbackSort?: {
|
|
6226
6485
|
|
|
@@ -6230,6 +6489,8 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
6230
6489
|
[k: string]: unknown | undefined
|
|
6231
6490
|
}
|
|
6232
6491
|
|
|
6492
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6493
|
+
|
|
6233
6494
|
ignoreCase?: boolean
|
|
6234
6495
|
|
|
6235
6496
|
alphabet?: string
|
|
@@ -6244,6 +6505,68 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
6244
6505
|
|
|
6245
6506
|
ignoreAlias?: boolean
|
|
6246
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
|
+
|
|
6247
6570
|
partitionByComment?: (boolean | (({
|
|
6248
6571
|
pattern?: string
|
|
6249
6572
|
flags?: string
|
|
@@ -6268,12 +6591,17 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
6268
6591
|
})
|
|
6269
6592
|
|
|
6270
6593
|
partitionByNewLine?: boolean
|
|
6271
|
-
|
|
6594
|
+
|
|
6595
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
6596
|
+
|
|
6597
|
+
groups?: (string | string[] | {
|
|
6598
|
+
|
|
6599
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
6600
|
+
})[]
|
|
6601
|
+
}[]
|
|
6272
6602
|
// ----- perfectionist/sort-object-types -----
|
|
6273
6603
|
type PerfectionistSortObjectTypes = {
|
|
6274
6604
|
|
|
6275
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6276
|
-
|
|
6277
6605
|
fallbackSort?: {
|
|
6278
6606
|
|
|
6279
6607
|
order?: ("asc" | "desc")
|
|
@@ -6282,6 +6610,8 @@ type PerfectionistSortObjectTypes = {
|
|
|
6282
6610
|
[k: string]: unknown | undefined
|
|
6283
6611
|
}
|
|
6284
6612
|
|
|
6613
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6614
|
+
|
|
6285
6615
|
ignoreCase?: boolean
|
|
6286
6616
|
|
|
6287
6617
|
alphabet?: string
|
|
@@ -6295,19 +6625,36 @@ type PerfectionistSortObjectTypes = {
|
|
|
6295
6625
|
[k: string]: (string | string[]) | undefined
|
|
6296
6626
|
} | ({
|
|
6297
6627
|
|
|
6298
|
-
|
|
6628
|
+
newlinesInside?: ("always" | "never")
|
|
6299
6629
|
|
|
6300
|
-
|
|
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
|
+
}
|
|
6301
6638
|
|
|
6302
|
-
|
|
6639
|
+
groupName?: string
|
|
6303
6640
|
|
|
6304
|
-
|
|
6641
|
+
order?: ("asc" | "desc")
|
|
6642
|
+
|
|
6643
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6305
6644
|
anyOf?: {
|
|
6306
6645
|
|
|
6307
6646
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
6308
6647
|
|
|
6309
6648
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
6310
6649
|
|
|
6650
|
+
elementValuePattern?: (({
|
|
6651
|
+
pattern?: string
|
|
6652
|
+
flags?: string
|
|
6653
|
+
} | string)[] | ({
|
|
6654
|
+
pattern?: string
|
|
6655
|
+
flags?: string
|
|
6656
|
+
} | string))
|
|
6657
|
+
|
|
6311
6658
|
elementNamePattern?: (({
|
|
6312
6659
|
pattern?: string
|
|
6313
6660
|
flags?: string
|
|
@@ -6315,21 +6662,39 @@ type PerfectionistSortObjectTypes = {
|
|
|
6315
6662
|
pattern?: string
|
|
6316
6663
|
flags?: string
|
|
6317
6664
|
} | string))
|
|
6665
|
+
sortBy?: ("name" | "value")
|
|
6318
6666
|
}[]
|
|
6319
6667
|
} | {
|
|
6320
6668
|
|
|
6321
|
-
|
|
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
|
+
}
|
|
6322
6679
|
|
|
6323
|
-
|
|
6680
|
+
groupName?: string
|
|
6324
6681
|
|
|
6325
|
-
order?: ("
|
|
6682
|
+
order?: ("asc" | "desc")
|
|
6326
6683
|
|
|
6327
|
-
|
|
6684
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6328
6685
|
|
|
6329
6686
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
6330
6687
|
|
|
6331
6688
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
6332
6689
|
|
|
6690
|
+
elementValuePattern?: (({
|
|
6691
|
+
pattern?: string
|
|
6692
|
+
flags?: string
|
|
6693
|
+
} | string)[] | ({
|
|
6694
|
+
pattern?: string
|
|
6695
|
+
flags?: string
|
|
6696
|
+
} | string))
|
|
6697
|
+
|
|
6333
6698
|
elementNamePattern?: (({
|
|
6334
6699
|
pattern?: string
|
|
6335
6700
|
flags?: string
|
|
@@ -6337,7 +6702,10 @@ type PerfectionistSortObjectTypes = {
|
|
|
6337
6702
|
pattern?: string
|
|
6338
6703
|
flags?: string
|
|
6339
6704
|
} | string))
|
|
6705
|
+
sortBy?: ("name" | "value")
|
|
6340
6706
|
})[])
|
|
6707
|
+
|
|
6708
|
+
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
6341
6709
|
useConfigurationIf?: {
|
|
6342
6710
|
|
|
6343
6711
|
allNamesMatchPattern?: (({
|
|
@@ -6357,8 +6725,6 @@ type PerfectionistSortObjectTypes = {
|
|
|
6357
6725
|
} | string))
|
|
6358
6726
|
}
|
|
6359
6727
|
|
|
6360
|
-
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
6361
|
-
|
|
6362
6728
|
partitionByComment?: (boolean | (({
|
|
6363
6729
|
pattern?: string
|
|
6364
6730
|
flags?: string
|
|
@@ -6393,6 +6759,7 @@ type PerfectionistSortObjectTypes = {
|
|
|
6393
6759
|
pattern?: string
|
|
6394
6760
|
flags?: string
|
|
6395
6761
|
} | string))
|
|
6762
|
+
sortBy?: ("name" | "value")
|
|
6396
6763
|
|
|
6397
6764
|
groups?: (string | string[] | {
|
|
6398
6765
|
|
|
@@ -6402,8 +6769,6 @@ type PerfectionistSortObjectTypes = {
|
|
|
6402
6769
|
// ----- perfectionist/sort-objects -----
|
|
6403
6770
|
type PerfectionistSortObjects = {
|
|
6404
6771
|
|
|
6405
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6406
|
-
|
|
6407
6772
|
fallbackSort?: {
|
|
6408
6773
|
|
|
6409
6774
|
order?: ("asc" | "desc")
|
|
@@ -6412,6 +6777,8 @@ type PerfectionistSortObjects = {
|
|
|
6412
6777
|
[k: string]: unknown | undefined
|
|
6413
6778
|
}
|
|
6414
6779
|
|
|
6780
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6781
|
+
|
|
6415
6782
|
ignoreCase?: boolean
|
|
6416
6783
|
|
|
6417
6784
|
alphabet?: string
|
|
@@ -6430,13 +6797,21 @@ type PerfectionistSortObjects = {
|
|
|
6430
6797
|
[k: string]: (string | string[]) | undefined
|
|
6431
6798
|
} | ({
|
|
6432
6799
|
|
|
6433
|
-
|
|
6800
|
+
newlinesInside?: ("always" | "never")
|
|
6434
6801
|
|
|
6435
|
-
|
|
6802
|
+
fallbackSort?: {
|
|
6803
|
+
|
|
6804
|
+
order?: ("asc" | "desc")
|
|
6805
|
+
|
|
6806
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6807
|
+
[k: string]: unknown | undefined
|
|
6808
|
+
}
|
|
6436
6809
|
|
|
6437
|
-
|
|
6810
|
+
groupName?: string
|
|
6438
6811
|
|
|
6439
|
-
|
|
6812
|
+
order?: ("asc" | "desc")
|
|
6813
|
+
|
|
6814
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6440
6815
|
anyOf?: {
|
|
6441
6816
|
|
|
6442
6817
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
@@ -6461,13 +6836,21 @@ type PerfectionistSortObjects = {
|
|
|
6461
6836
|
}[]
|
|
6462
6837
|
} | {
|
|
6463
6838
|
|
|
6464
|
-
|
|
6839
|
+
newlinesInside?: ("always" | "never")
|
|
6465
6840
|
|
|
6466
|
-
|
|
6841
|
+
fallbackSort?: {
|
|
6842
|
+
|
|
6843
|
+
order?: ("asc" | "desc")
|
|
6844
|
+
|
|
6845
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6846
|
+
[k: string]: unknown | undefined
|
|
6847
|
+
}
|
|
6467
6848
|
|
|
6468
|
-
|
|
6849
|
+
groupName?: string
|
|
6469
6850
|
|
|
6470
|
-
|
|
6851
|
+
order?: ("asc" | "desc")
|
|
6852
|
+
|
|
6853
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6471
6854
|
|
|
6472
6855
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
6473
6856
|
|
|
@@ -6557,8 +6940,6 @@ type PerfectionistSortObjects = {
|
|
|
6557
6940
|
// ----- perfectionist/sort-sets -----
|
|
6558
6941
|
type PerfectionistSortSets = {
|
|
6559
6942
|
|
|
6560
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6561
|
-
|
|
6562
6943
|
fallbackSort?: {
|
|
6563
6944
|
|
|
6564
6945
|
order?: ("asc" | "desc")
|
|
@@ -6567,6 +6948,8 @@ type PerfectionistSortSets = {
|
|
|
6567
6948
|
[k: string]: unknown | undefined
|
|
6568
6949
|
}
|
|
6569
6950
|
|
|
6951
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6952
|
+
|
|
6570
6953
|
ignoreCase?: boolean
|
|
6571
6954
|
|
|
6572
6955
|
alphabet?: string
|
|
@@ -6581,13 +6964,21 @@ type PerfectionistSortSets = {
|
|
|
6581
6964
|
|
|
6582
6965
|
customGroups?: ({
|
|
6583
6966
|
|
|
6584
|
-
|
|
6967
|
+
newlinesInside?: ("always" | "never")
|
|
6585
6968
|
|
|
6586
|
-
|
|
6969
|
+
fallbackSort?: {
|
|
6970
|
+
|
|
6971
|
+
order?: ("asc" | "desc")
|
|
6972
|
+
|
|
6973
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6974
|
+
[k: string]: unknown | undefined
|
|
6975
|
+
}
|
|
6587
6976
|
|
|
6588
|
-
|
|
6977
|
+
groupName?: string
|
|
6589
6978
|
|
|
6590
|
-
|
|
6979
|
+
order?: ("asc" | "desc")
|
|
6980
|
+
|
|
6981
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6591
6982
|
anyOf?: {
|
|
6592
6983
|
|
|
6593
6984
|
selector?: ("literal" | "spread")
|
|
@@ -6602,13 +6993,21 @@ type PerfectionistSortSets = {
|
|
|
6602
6993
|
}[]
|
|
6603
6994
|
} | {
|
|
6604
6995
|
|
|
6605
|
-
|
|
6996
|
+
newlinesInside?: ("always" | "never")
|
|
6606
6997
|
|
|
6607
|
-
|
|
6998
|
+
fallbackSort?: {
|
|
6999
|
+
|
|
7000
|
+
order?: ("asc" | "desc")
|
|
7001
|
+
|
|
7002
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
7003
|
+
[k: string]: unknown | undefined
|
|
7004
|
+
}
|
|
6608
7005
|
|
|
6609
|
-
|
|
7006
|
+
groupName?: string
|
|
6610
7007
|
|
|
6611
|
-
|
|
7008
|
+
order?: ("asc" | "desc")
|
|
7009
|
+
|
|
7010
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
6612
7011
|
|
|
6613
7012
|
selector?: ("literal" | "spread")
|
|
6614
7013
|
|
|
@@ -6666,8 +7065,6 @@ type PerfectionistSortSets = {
|
|
|
6666
7065
|
// ----- perfectionist/sort-switch-case -----
|
|
6667
7066
|
type PerfectionistSortSwitchCase = []|[{
|
|
6668
7067
|
|
|
6669
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6670
|
-
|
|
6671
7068
|
fallbackSort?: {
|
|
6672
7069
|
|
|
6673
7070
|
order?: ("asc" | "desc")
|
|
@@ -6676,6 +7073,8 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
6676
7073
|
[k: string]: unknown | undefined
|
|
6677
7074
|
}
|
|
6678
7075
|
|
|
7076
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
7077
|
+
|
|
6679
7078
|
ignoreCase?: boolean
|
|
6680
7079
|
|
|
6681
7080
|
alphabet?: string
|
|
@@ -6689,8 +7088,6 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
6689
7088
|
// ----- perfectionist/sort-union-types -----
|
|
6690
7089
|
type PerfectionistSortUnionTypes = []|[{
|
|
6691
7090
|
|
|
6692
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6693
|
-
|
|
6694
7091
|
fallbackSort?: {
|
|
6695
7092
|
|
|
6696
7093
|
order?: ("asc" | "desc")
|
|
@@ -6699,6 +7096,8 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
6699
7096
|
[k: string]: unknown | undefined
|
|
6700
7097
|
}
|
|
6701
7098
|
|
|
7099
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
7100
|
+
|
|
6702
7101
|
ignoreCase?: boolean
|
|
6703
7102
|
|
|
6704
7103
|
alphabet?: string
|
|
@@ -6744,8 +7143,6 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
6744
7143
|
// ----- perfectionist/sort-variable-declarations -----
|
|
6745
7144
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
6746
7145
|
|
|
6747
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
6748
|
-
|
|
6749
7146
|
fallbackSort?: {
|
|
6750
7147
|
|
|
6751
7148
|
order?: ("asc" | "desc")
|
|
@@ -6754,6 +7151,8 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
6754
7151
|
[k: string]: unknown | undefined
|
|
6755
7152
|
}
|
|
6756
7153
|
|
|
7154
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
7155
|
+
|
|
6757
7156
|
ignoreCase?: boolean
|
|
6758
7157
|
|
|
6759
7158
|
alphabet?: string
|
|
@@ -8908,6 +9307,8 @@ type TypescriptNoUnnecessaryCondition = []|[{
|
|
|
8908
9307
|
// ----- typescript/no-unnecessary-type-assertion -----
|
|
8909
9308
|
type TypescriptNoUnnecessaryTypeAssertion = []|[{
|
|
8910
9309
|
|
|
9310
|
+
checkLiteralConstAssertions?: boolean
|
|
9311
|
+
|
|
8911
9312
|
typesToIgnore?: string[]
|
|
8912
9313
|
}]
|
|
8913
9314
|
// ----- typescript/no-unused-expressions -----
|
|
@@ -8916,6 +9317,7 @@ type TypescriptNoUnusedExpressions = []|[{
|
|
|
8916
9317
|
allowTernary?: boolean
|
|
8917
9318
|
allowTaggedTemplates?: boolean
|
|
8918
9319
|
enforceForJSX?: boolean
|
|
9320
|
+
ignoreDirectives?: boolean
|
|
8919
9321
|
}]
|
|
8920
9322
|
// ----- typescript/no-unused-vars -----
|
|
8921
9323
|
type TypescriptNoUnusedVars = []|[(("all" | "local") | {
|
|
@@ -8978,6 +9380,8 @@ type TypescriptOnlyThrowError = []|[{
|
|
|
8978
9380
|
package: string
|
|
8979
9381
|
})[]
|
|
8980
9382
|
|
|
9383
|
+
allowRethrowing?: boolean
|
|
9384
|
+
|
|
8981
9385
|
allowThrowingAny?: boolean
|
|
8982
9386
|
|
|
8983
9387
|
allowThrowingUnknown?: boolean
|
|
@@ -9035,6 +9439,8 @@ type TypescriptPreferNullishCoalescing = []|[{
|
|
|
9035
9439
|
|
|
9036
9440
|
ignoreConditionalTests?: boolean
|
|
9037
9441
|
|
|
9442
|
+
ignoreIfStatements?: boolean
|
|
9443
|
+
|
|
9038
9444
|
ignoreMixedLogicalExpressions?: boolean
|
|
9039
9445
|
|
|
9040
9446
|
ignorePrimitives?: ({
|
|
@@ -9333,14 +9739,17 @@ type Yoda = []|[("always" | "never")]|[("always" | "never"), {
|
|
|
9333
9739
|
onlyEquality?: boolean
|
|
9334
9740
|
}]
|
|
9335
9741
|
|
|
9336
|
-
|
|
9337
|
-
|
|
9742
|
+
interface Options {
|
|
9743
|
+
stylistic?: StylisticOptions;
|
|
9338
9744
|
ignores?: string[];
|
|
9339
9745
|
rules?: RuleOptions;
|
|
9340
9746
|
}
|
|
9341
9747
|
type LinterConfig = Omit<Linter.Config, 'plugins'> & {
|
|
9342
9748
|
plugins?: Record<string, any>;
|
|
9343
9749
|
};
|
|
9750
|
+
|
|
9751
|
+
declare function presetNestjs(options?: Options): LinterConfig[];
|
|
9752
|
+
|
|
9344
9753
|
declare function daopk(options?: Options, ...userConfigs: Linter.Config[]): LinterConfig[];
|
|
9345
9754
|
|
|
9346
|
-
export {
|
|
9755
|
+
export { daopk as default, presetNestjs };
|