@ghettoddos/eslint-config 1.0.3 → 1.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.
Files changed (3) hide show
  1. package/dist/index.d.ts +408 -279
  2. package/dist/index.js +115 -50
  3. package/package.json +22 -14
package/dist/index.d.ts CHANGED
@@ -386,233 +386,233 @@ interface RuleOptions {
386
386
  'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
387
387
  /**
388
388
  * Enforce or ban the use of inline type-only markers for named imports.
389
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/consistent-type-specifier-style.md
389
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/consistent-type-specifier-style.md
390
390
  */
391
391
  'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
392
392
  /**
393
393
  * Ensure a default export is present, given a default import.
394
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/default.md
394
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/default.md
395
395
  */
396
396
  'import/default'?: Linter.RuleEntry<[]>
397
397
  /**
398
398
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
399
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/dynamic-import-chunkname.md
399
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/dynamic-import-chunkname.md
400
400
  */
401
401
  'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
402
402
  /**
403
403
  * Forbid any invalid exports, i.e. re-export of the same name.
404
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/export.md
404
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/export.md
405
405
  */
406
406
  'import/export'?: Linter.RuleEntry<[]>
407
407
  /**
408
408
  * Ensure all exports appear after other statements.
409
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/exports-last.md
409
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/exports-last.md
410
410
  */
411
411
  'import/exports-last'?: Linter.RuleEntry<[]>
412
412
  /**
413
413
  * Ensure consistent use of file extension within the import path.
414
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/extensions.md
414
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/extensions.md
415
415
  */
416
416
  'import/extensions'?: Linter.RuleEntry<ImportExtensions>
417
417
  /**
418
418
  * Ensure all imports appear before other statements.
419
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/first.md
419
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/first.md
420
420
  */
421
421
  'import/first'?: Linter.RuleEntry<ImportFirst>
422
422
  /**
423
423
  * Prefer named exports to be grouped together in a single export declaration.
424
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/group-exports.md
424
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/group-exports.md
425
425
  */
426
426
  'import/group-exports'?: Linter.RuleEntry<[]>
427
427
  /**
428
428
  * Replaced by `import-x/first`.
429
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/imports-first.md
429
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/imports-first.md
430
430
  * @deprecated
431
431
  */
432
432
  'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
433
433
  /**
434
434
  * Enforce the maximum number of dependencies a module can have.
435
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/max-dependencies.md
435
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/max-dependencies.md
436
436
  */
437
437
  'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
438
438
  /**
439
439
  * Ensure named imports correspond to a named export in the remote file.
440
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/named.md
440
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/named.md
441
441
  */
442
442
  'import/named'?: Linter.RuleEntry<ImportNamed>
443
443
  /**
444
444
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
445
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/namespace.md
445
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/namespace.md
446
446
  */
447
447
  'import/namespace'?: Linter.RuleEntry<ImportNamespace>
448
448
  /**
449
449
  * Enforce a newline after import statements.
450
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/newline-after-import.md
450
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/newline-after-import.md
451
451
  */
452
452
  'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
453
453
  /**
454
454
  * Forbid import of modules using absolute paths.
455
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-absolute-path.md
455
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-absolute-path.md
456
456
  */
457
457
  'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
458
458
  /**
459
459
  * Forbid AMD `require` and `define` calls.
460
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-amd.md
460
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-amd.md
461
461
  */
462
462
  'import/no-amd'?: Linter.RuleEntry<[]>
463
463
  /**
464
464
  * Forbid anonymous values as default exports.
465
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-anonymous-default-export.md
465
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-anonymous-default-export.md
466
466
  */
467
467
  'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
468
468
  /**
469
469
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
470
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-commonjs.md
470
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-commonjs.md
471
471
  */
472
472
  'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
473
473
  /**
474
474
  * Forbid a module from importing a module with a dependency path back to itself.
475
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-cycle.md
475
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-cycle.md
476
476
  */
477
477
  'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
478
478
  /**
479
479
  * Forbid default exports.
480
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-default-export.md
480
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-default-export.md
481
481
  */
482
482
  'import/no-default-export'?: Linter.RuleEntry<[]>
483
483
  /**
484
484
  * Forbid imported names marked with `@deprecated` documentation tag.
485
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-deprecated.md
485
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-deprecated.md
486
486
  */
487
487
  'import/no-deprecated'?: Linter.RuleEntry<[]>
488
488
  /**
489
489
  * Forbid repeated import of the same module in multiple places.
490
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-duplicates.md
490
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-duplicates.md
491
491
  */
492
492
  'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
493
493
  /**
494
494
  * Forbid `require()` calls with expressions.
495
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-dynamic-require.md
495
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-dynamic-require.md
496
496
  */
497
497
  'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
498
498
  /**
499
499
  * Forbid empty named import blocks.
500
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-empty-named-blocks.md
500
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-empty-named-blocks.md
501
501
  */
502
502
  'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
503
503
  /**
504
504
  * Forbid the use of extraneous packages.
505
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-extraneous-dependencies.md
505
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-extraneous-dependencies.md
506
506
  */
507
507
  'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
508
508
  /**
509
509
  * Forbid import statements with CommonJS module.exports.
510
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-import-module-exports.md
510
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-import-module-exports.md
511
511
  */
512
512
  'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
513
513
  /**
514
514
  * Forbid importing the submodules of other modules.
515
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-internal-modules.md
515
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-internal-modules.md
516
516
  */
517
517
  'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
518
518
  /**
519
519
  * Forbid the use of mutable exports with `var` or `let`.
520
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-mutable-exports.md
520
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-mutable-exports.md
521
521
  */
522
522
  'import/no-mutable-exports'?: Linter.RuleEntry<[]>
523
523
  /**
524
524
  * Forbid use of exported name as identifier of default export.
525
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-as-default.md
525
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-named-as-default.md
526
526
  */
527
527
  'import/no-named-as-default'?: Linter.RuleEntry<[]>
528
528
  /**
529
529
  * Forbid use of exported name as property of default export.
530
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-as-default-member.md
530
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-named-as-default-member.md
531
531
  */
532
532
  'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
533
533
  /**
534
534
  * Forbid named default exports.
535
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-default.md
535
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-named-default.md
536
536
  */
537
537
  'import/no-named-default'?: Linter.RuleEntry<[]>
538
538
  /**
539
539
  * Forbid named exports.
540
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-export.md
540
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-named-export.md
541
541
  */
542
542
  'import/no-named-export'?: Linter.RuleEntry<[]>
543
543
  /**
544
544
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
545
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-namespace.md
545
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-namespace.md
546
546
  */
547
547
  'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
548
548
  /**
549
549
  * Forbid Node.js builtin modules.
550
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-nodejs-modules.md
550
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-nodejs-modules.md
551
551
  */
552
552
  'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
553
553
  /**
554
554
  * Forbid importing packages through relative paths.
555
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-relative-packages.md
555
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-relative-packages.md
556
556
  */
557
557
  'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
558
558
  /**
559
559
  * Forbid importing modules from parent directories.
560
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-relative-parent-imports.md
560
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-relative-parent-imports.md
561
561
  */
562
562
  'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
563
563
  /**
564
564
  * Forbid importing a default export by a different name.
565
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-rename-default.md
565
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-rename-default.md
566
566
  */
567
567
  'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
568
568
  /**
569
569
  * Enforce which files can be imported in a given folder.
570
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-restricted-paths.md
570
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-restricted-paths.md
571
571
  */
572
572
  'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
573
573
  /**
574
574
  * Forbid a module from importing itself.
575
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-self-import.md
575
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-self-import.md
576
576
  */
577
577
  'import/no-self-import'?: Linter.RuleEntry<[]>
578
578
  /**
579
579
  * Forbid unassigned imports.
580
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unassigned-import.md
580
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-unassigned-import.md
581
581
  */
582
582
  'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
583
583
  /**
584
584
  * Ensure imports point to a file/module that can be resolved.
585
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unresolved.md
585
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-unresolved.md
586
586
  */
587
587
  'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
588
588
  /**
589
589
  * Forbid modules without exports, or exports without matching import in another module.
590
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unused-modules.md
590
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-unused-modules.md
591
591
  */
592
592
  'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
593
593
  /**
594
594
  * Forbid unnecessary path segments in import and require statements.
595
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-useless-path-segments.md
595
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-useless-path-segments.md
596
596
  */
597
597
  'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
598
598
  /**
599
599
  * Forbid webpack loader syntax in imports.
600
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-webpack-loader-syntax.md
600
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/no-webpack-loader-syntax.md
601
601
  */
602
602
  'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
603
603
  /**
604
604
  * Enforce a convention in module import order.
605
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/order.md
605
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/order.md
606
606
  */
607
607
  'import/order'?: Linter.RuleEntry<ImportOrder>
608
608
  /**
609
609
  * Prefer a default export if module exports a single name or multiple names.
610
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/prefer-default-export.md
610
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/prefer-default-export.md
611
611
  */
612
612
  'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
613
613
  /**
614
614
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
615
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/unambiguous.md
615
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.3/docs/rules/unambiguous.md
616
616
  */
617
617
  'import/unambiguous'?: Linter.RuleEntry<[]>
618
618
  /**
@@ -2187,6 +2187,31 @@ interface RuleOptions {
2187
2187
  * @see https://perfectionist.dev/rules/sort-variable-declarations
2188
2188
  */
2189
2189
  'perfectionist/sort-variable-declarations'?: Linter.RuleEntry<PerfectionistSortVariableDeclarations>
2190
+ /**
2191
+ * Enforce using "catalog:" in `package.json`
2192
+ * @see https://github.com/antfu/eslint-plugin-pnpm/blob/main/src/rules/json-enforce-catalog.test.ts
2193
+ */
2194
+ 'pnpm/json-enforce-catalog'?: Linter.RuleEntry<PnpmJsonEnforceCatalog>
2195
+ /**
2196
+ * Prefer having pnpm settings in `pnpm-workspace.yaml` instead of `package.json`. This would requires pnpm v10.6+, see https://github.com/orgs/pnpm/discussions/9037.
2197
+ * @see https://github.com/antfu/eslint-plugin-pnpm/blob/main/src/rules/json-prefer-workspace-settings.test.ts
2198
+ */
2199
+ 'pnpm/json-prefer-workspace-settings'?: Linter.RuleEntry<PnpmJsonPreferWorkspaceSettings>
2200
+ /**
2201
+ * Enforce using valid catalog in `package.json`
2202
+ * @see https://github.com/antfu/eslint-plugin-pnpm/blob/main/src/rules/json-valid-catalog.test.ts
2203
+ */
2204
+ 'pnpm/json-valid-catalog'?: Linter.RuleEntry<PnpmJsonValidCatalog>
2205
+ /**
2206
+ * Disallow unused catalogs in `pnpm-workspace.yaml`
2207
+ * @see https://github.com/antfu/eslint-plugin-pnpm/blob/main/src/rules/yaml-no-duplicate-catalog-item.test.ts
2208
+ */
2209
+ 'pnpm/yaml-no-duplicate-catalog-item'?: Linter.RuleEntry<PnpmYamlNoDuplicateCatalogItem>
2210
+ /**
2211
+ * Disallow unused catalogs in `pnpm-workspace.yaml`
2212
+ * @see https://github.com/antfu/eslint-plugin-pnpm/blob/main/src/rules/yaml-no-unused-catalog-item.test.ts
2213
+ */
2214
+ 'pnpm/yaml-no-unused-catalog-item'?: Linter.RuleEntry<[]>
2190
2215
  /**
2191
2216
  * Require using arrow functions for callbacks
2192
2217
  * @see https://eslint.org/docs/latest/rules/prefer-arrow-callback
@@ -2276,122 +2301,142 @@ interface RuleOptions {
2276
2301
  */
2277
2302
  'radix'?: Linter.RuleEntry<Radix>
2278
2303
  /**
2279
- * disallow void elements (AKA self-closing elements) from having children
2304
+ * Disallow `children` in void DOM elements.
2280
2305
  * @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
2281
2306
  */
2282
2307
  'react-dom/no-children-in-void-dom-elements'?: Linter.RuleEntry<[]>
2283
2308
  /**
2284
- * disallow when a DOM component is using 'dangerouslySetInnerHTML'
2309
+ * Disallow `dangerouslySetInnerHTML`.
2285
2310
  * @see https://eslint-react.xyz/docs/rules/dom-no-dangerously-set-innerhtml
2286
2311
  */
2287
2312
  'react-dom/no-dangerously-set-innerhtml'?: Linter.RuleEntry<[]>
2288
2313
  /**
2289
- * disallow when a DOM component is using both 'children' and 'dangerouslySetInnerHTML'
2314
+ * Disallow `dangerouslySetInnerHTML` and `children` at the same time.
2290
2315
  * @see https://eslint-react.xyz/docs/rules/dom-no-dangerously-set-innerhtml-with-children
2291
2316
  */
2292
2317
  'react-dom/no-dangerously-set-innerhtml-with-children'?: Linter.RuleEntry<[]>
2293
2318
  /**
2294
- * disallow 'findDOMNode'
2319
+ * Disallow `findDOMNode`.
2295
2320
  * @see https://eslint-react.xyz/docs/rules/dom-no-find-dom-node
2296
2321
  */
2297
2322
  'react-dom/no-find-dom-node'?: Linter.RuleEntry<[]>
2298
2323
  /**
2299
- * warns against using `flushSync`
2324
+ * Disallow `flushSync`.
2300
2325
  * @see https://eslint-react.xyz/docs/rules/dom-no-flush-sync
2301
2326
  */
2302
2327
  'react-dom/no-flush-sync'?: Linter.RuleEntry<[]>
2303
2328
  /**
2304
- * enforce that button component have an explicit 'type' attribute
2329
+ * Replaces usages of `ReactDom.hydrate()` with `hydrateRoot()`.
2330
+ * @see https://eslint-react.xyz/docs/rules/dom-no-hydrate
2331
+ */
2332
+ 'react-dom/no-hydrate'?: Linter.RuleEntry<[]>
2333
+ /**
2334
+ * Enforces explicit `type` attribute for `button` elements.
2305
2335
  * @see https://eslint-react.xyz/docs/rules/dom-no-missing-button-type
2306
2336
  */
2307
2337
  'react-dom/no-missing-button-type'?: Linter.RuleEntry<[]>
2308
2338
  /**
2309
- * enforce that 'iframe' component have an explicit 'sandbox' attribute
2339
+ * Enforces explicit `sandbox` attribute for `iframe` elements.
2310
2340
  * @see https://eslint-react.xyz/docs/rules/dom-no-missing-iframe-sandbox
2311
2341
  */
2312
2342
  'react-dom/no-missing-iframe-sandbox'?: Linter.RuleEntry<[]>
2313
2343
  /**
2314
- * enforce that namespaces are not used in React elements
2344
+ * Enforces the absence of a `namespace` in React elements.
2315
2345
  * @see https://eslint-react.xyz/docs/rules/dom-no-namespace
2316
2346
  */
2317
2347
  'react-dom/no-namespace'?: Linter.RuleEntry<[]>
2318
2348
  /**
2319
- * disallow usage of the return value of 'ReactDOM.render'
2349
+ * Replaces usages of `ReactDom.render()` with `createRoot(node).render()`.
2350
+ * @see https://eslint-react.xyz/docs/rules/dom-no-render
2351
+ */
2352
+ 'react-dom/no-render'?: Linter.RuleEntry<[]>
2353
+ /**
2354
+ * Disallow the return value of `ReactDOM.render`.
2320
2355
  * @see https://eslint-react.xyz/docs/rules/dom-no-render-return-value
2321
2356
  */
2322
2357
  'react-dom/no-render-return-value'?: Linter.RuleEntry<[]>
2323
2358
  /**
2324
- * disallow 'javascript:' URLs as JSX event handler prop's value
2359
+ * Disallow `javascript:` URLs as attribute values.
2325
2360
  * @see https://eslint-react.xyz/docs/rules/dom-no-script-url
2326
2361
  */
2327
2362
  'react-dom/no-script-url'?: Linter.RuleEntry<[]>
2328
2363
  /**
2329
- * disallow usage of unknown DOM property
2364
+ * Disallow unknown `DOM` property.
2330
2365
  * @see https://eslint-react.xyz/docs/rules/dom-no-unknown-property
2331
2366
  */
2332
2367
  'react-dom/no-unknown-property'?: Linter.RuleEntry<ReactDomNoUnknownProperty>
2333
2368
  /**
2334
- * disallow unsafe iframe 'sandbox' attribute combinations
2369
+ * Enforces `sandbox` attribute for `iframe` elements is not set to unsafe combinations.
2335
2370
  * @see https://eslint-react.xyz/docs/rules/dom-no-unsafe-iframe-sandbox
2336
2371
  */
2337
2372
  'react-dom/no-unsafe-iframe-sandbox'?: Linter.RuleEntry<[]>
2338
2373
  /**
2339
- * disallow 'target="_blank"' on an external link without 'rel="noreferrer noopener"'
2374
+ * Disallow `target="_blank"` without `rel="noreferrer noopener"`.
2340
2375
  * @see https://eslint-react.xyz/docs/rules/dom-no-unsafe-target-blank
2341
2376
  */
2342
2377
  'react-dom/no-unsafe-target-blank'?: Linter.RuleEntry<[]>
2343
2378
  /**
2344
- * disallow void elements (AKA self-closing elements) from having children
2379
+ * Replaces usages of `useFormState` with `useActionState`.
2380
+ * @see https://eslint-react.xyz/docs/rules/dom-no-use-form-state
2381
+ */
2382
+ 'react-dom/no-use-form-state'?: Linter.RuleEntry<[]>
2383
+ /**
2384
+ * Disallow `children` in void DOM elements.
2345
2385
  * @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
2346
2386
  */
2347
2387
  'react-dom/no-void-elements-with-children'?: Linter.RuleEntry<[]>
2348
2388
  /**
2349
- * enforce custom Hooks to use at least one other hook inside
2350
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-useless-custom-hooks
2389
+ * Enforces that a function with the `use` prefix should use at least one Hook inside of it.
2390
+ * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
2351
2391
  */
2352
2392
  'react-hooks-extra/ensure-custom-hooks-using-other-hooks'?: Linter.RuleEntry<[]>
2353
2393
  /**
2354
- * disallow unnecessary usage of 'useCallback'
2394
+ * Disallow unnecessary usage of `useCallback`.
2355
2395
  * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-callback
2356
2396
  */
2357
2397
  'react-hooks-extra/ensure-use-callback-has-non-empty-deps'?: Linter.RuleEntry<[]>
2358
2398
  /**
2359
- * disallow unnecessary usage of 'useMemo'
2399
+ * Disallow unnecessary usage of `useMemo`.
2360
2400
  * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
2361
2401
  */
2362
2402
  'react-hooks-extra/ensure-use-memo-has-non-empty-deps'?: Linter.RuleEntry<[]>
2363
2403
  /**
2364
- * disallow direct calls to the 'set' function of 'useState' in 'useEffect'
2404
+ * Disallow direct calls to the `set` function of `useState` in `useEffect`.
2365
2405
  * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-effect
2366
2406
  */
2367
2407
  'react-hooks-extra/no-direct-set-state-in-use-effect'?: Linter.RuleEntry<[]>
2368
2408
  /**
2369
- * disallow direct calls to the 'set' function of 'useState' in 'useLayoutEffect'
2409
+ * Disallow direct calls to the `set` function of `useState` in `useLayoutEffect`.
2370
2410
  * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-layout-effect
2371
2411
  */
2372
2412
  'react-hooks-extra/no-direct-set-state-in-use-layout-effect'?: Linter.RuleEntry<[]>
2373
2413
  /**
2374
- * enforce custom Hooks to use at least one other hook inside
2375
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-useless-custom-hooks
2414
+ * Enforces that a function with the `use` prefix should use at least one Hook inside of it.
2415
+ * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
2376
2416
  */
2377
2417
  'react-hooks-extra/no-redundant-custom-hook'?: Linter.RuleEntry<[]>
2378
2418
  /**
2379
- * disallow unnecessary usage of 'useCallback'
2419
+ * Disallow unnecessary usage of `useCallback`.
2380
2420
  * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-callback
2381
2421
  */
2382
2422
  'react-hooks-extra/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>
2383
2423
  /**
2384
- * disallow unnecessary usage of 'useMemo'
2424
+ * Disallow unnecessary usage of `useMemo`.
2385
2425
  * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
2386
2426
  */
2387
2427
  'react-hooks-extra/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>
2388
2428
  /**
2389
- * enforce custom Hooks to use at least one other hook inside
2390
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-useless-custom-hooks
2429
+ * Enforces that a function with the `use` prefix should use at least one Hook inside of it.
2430
+ * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
2431
+ */
2432
+ 'react-hooks-extra/no-unnecessary-use-prefix'?: Linter.RuleEntry<[]>
2433
+ /**
2434
+ * Enforces that a function with the `use` prefix should use at least one Hook inside of it.
2435
+ * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
2391
2436
  */
2392
2437
  'react-hooks-extra/no-useless-custom-hooks'?: Linter.RuleEntry<[]>
2393
2438
  /**
2394
- * disallow function calls in 'useState' that aren't wrapped in an initializer function
2439
+ * Enforces function calls made inside `useState` to be wrapped in an `initializer function`.
2395
2440
  * @see https://eslint-react.xyz/docs/rules/hooks-extra-prefer-use-state-lazy-initialization
2396
2441
  */
2397
2442
  'react-hooks-extra/prefer-use-state-lazy-initialization'?: Linter.RuleEntry<[]>
@@ -2406,324 +2451,339 @@ interface RuleOptions {
2406
2451
  */
2407
2452
  'react-hooks/rules-of-hooks'?: Linter.RuleEntry<[]>
2408
2453
  /**
2409
- * enforce naming convention for components
2454
+ * Enforces naming conventions for components.
2410
2455
  * @see https://eslint-react.xyz/docs/rules/naming-convention-component-name
2411
2456
  */
2412
2457
  'react-naming-convention/component-name'?: Linter.RuleEntry<ReactNamingConventionComponentName>
2413
2458
  /**
2414
- * enforce context name to be a valid component name with the suffix 'Context'
2459
+ * Enforces context name to be a valid component name with the suffix `Context`.
2415
2460
  * @see https://eslint-react.xyz/docs/rules/naming-convention-context-name
2416
2461
  */
2417
2462
  'react-naming-convention/context-name'?: Linter.RuleEntry<[]>
2418
2463
  /**
2419
- * enforce naming convention for JSX filenames
2464
+ * Enforces consistent file naming conventions.
2420
2465
  * @see https://eslint-react.xyz/docs/rules/naming-convention-filename
2421
2466
  */
2422
2467
  'react-naming-convention/filename'?: Linter.RuleEntry<ReactNamingConventionFilename>
2423
2468
  /**
2424
- * enforce naming convention for JSX file extensions
2469
+ * Enforces consistent file naming conventions.
2425
2470
  * @see https://eslint-react.xyz/docs/rules/naming-convention-filename-extension
2426
2471
  */
2427
2472
  'react-naming-convention/filename-extension'?: Linter.RuleEntry<ReactNamingConventionFilenameExtension>
2428
2473
  /**
2429
- * enforce destructuring and symmetric naming of 'useState' hook value and setter
2474
+ * Enforces destructuring and symmetric naming of `useState` hook value and setter.
2430
2475
  * @see https://eslint-react.xyz/docs/rules/naming-convention-use-state
2431
2476
  */
2432
2477
  'react-naming-convention/use-state'?: Linter.RuleEntry<[]>
2433
2478
  'react-refresh/only-export-components'?: Linter.RuleEntry<ReactRefreshOnlyExportComponents>
2434
2479
  /**
2435
- * enforce that every 'addEventListener' in a component or custom Hook has a corresponding 'removeEventListener'.
2480
+ * Prevents leaked `addEventListener` in a component or custom Hook.
2436
2481
  * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-event-listener
2437
2482
  */
2438
2483
  'react-web-api/no-leaked-event-listener'?: Linter.RuleEntry<[]>
2439
2484
  /**
2440
- * enforce that every 'setInterval' in a component or custom Hook has a corresponding 'clearInterval'.
2485
+ * Prevents leaked `setInterval` in a component or custom Hook.
2441
2486
  * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-interval
2442
2487
  */
2443
2488
  'react-web-api/no-leaked-interval'?: Linter.RuleEntry<[]>
2444
2489
  /**
2445
- * enforce cleanup of 'ResizeObserver' instances in components and custom Hooks.
2490
+ * Prevents leaked `ResizeObserver` in a component or custom Hook.
2446
2491
  * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-resize-observer
2447
2492
  */
2448
2493
  'react-web-api/no-leaked-resize-observer'?: Linter.RuleEntry<[]>
2449
2494
  /**
2450
- * enforce that every 'setTimeout' in a component or custom Hook has a corresponding 'clearTimeout'.
2495
+ * Prevents leaked `setTimeout` in a component or custom Hook.
2451
2496
  * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-timeout
2452
2497
  */
2453
2498
  'react-web-api/no-leaked-timeout'?: Linter.RuleEntry<[]>
2454
2499
  /**
2455
- * disallow using shorthand boolean attributes
2500
+ * Enforces explicit boolean values for boolean attributes.
2456
2501
  * @see https://eslint-react.xyz/docs/rules/avoid-shorthand-boolean
2457
2502
  */
2458
2503
  'react/avoid-shorthand-boolean'?: Linter.RuleEntry<[]>
2459
2504
  /**
2460
- * disallow using shorthand fragment syntax
2505
+ * Enforces explicit `<Fragment>` components instead of the shorthand `<>` or `</>` syntax.
2461
2506
  * @see https://eslint-react.xyz/docs/rules/avoid-shorthand-fragment
2462
2507
  */
2463
2508
  'react/avoid-shorthand-fragment'?: Linter.RuleEntry<[]>
2464
2509
  /**
2465
- * require a 'ref' parameter to be set when using 'forwardRef'
2466
- * @see https://eslint-react.xyz/docs/rules/ensure-forward-ref-using-ref
2510
+ * Disallow useless `forwardRef` calls on components that don't use `ref`s.
2511
+ * @see https://eslint-react.xyz/docs/rules/no-useless-forward-ref
2467
2512
  */
2468
2513
  'react/ensure-forward-ref-using-ref'?: Linter.RuleEntry<[]>
2469
2514
  /**
2470
- * disallow duplicate props
2471
- * @see https://eslint-react.xyz/docs/rules/no-duplicate-jsx-props
2515
+ * Disallow duplicate props in JSX elements.
2516
+ * @see https://eslint-react.xyz/docs/rules/jsx-no-duplicate-props
2472
2517
  */
2473
2518
  'react/jsx-no-duplicate-props'?: Linter.RuleEntry<[]>
2474
2519
  /**
2475
- * marks variables used in JSX as used
2476
- * @see https://eslint-react.xyz/docs/rules/use-jsx-vars
2520
+ * Disallow undefined variables in JSX.
2521
+ * @see https://eslint-react.xyz/docs/rules/jsx-no-undef
2522
+ */
2523
+ 'react/jsx-no-undef'?: Linter.RuleEntry<[]>
2524
+ /**
2525
+ * Marks variables used in JSX elements as used.
2526
+ * @see https://eslint-react.xyz/docs/rules/jsx-uses-vars
2477
2527
  */
2478
2528
  'react/jsx-uses-vars'?: Linter.RuleEntry<[]>
2479
2529
  /**
2480
- * disallow accessing 'this.state' within 'setState'
2530
+ * Disallow accessing `this.state` inside `setState` calls.
2481
2531
  * @see https://eslint-react.xyz/docs/rules/no-access-state-in-setstate
2482
2532
  */
2483
2533
  'react/no-access-state-in-setstate'?: Linter.RuleEntry<[]>
2484
2534
  /**
2485
- * disallow using an item's index in the array as its key
2535
+ * Disallow an item's index in the array as its key.
2486
2536
  * @see https://eslint-react.xyz/docs/rules/no-array-index-key
2487
2537
  */
2488
2538
  'react/no-array-index-key'?: Linter.RuleEntry<[]>
2489
2539
  /**
2490
- * disallow using 'Children.count'
2540
+ * Disallow `Children.count`.
2491
2541
  * @see https://eslint-react.xyz/docs/rules/no-children-count
2492
2542
  */
2493
2543
  'react/no-children-count'?: Linter.RuleEntry<[]>
2494
2544
  /**
2495
- * disallow using 'Children.forEach'
2545
+ * Disallow 'Children.forEach'.
2496
2546
  * @see https://eslint-react.xyz/docs/rules/no-children-for-each
2497
2547
  */
2498
2548
  'react/no-children-for-each'?: Linter.RuleEntry<[]>
2499
2549
  /**
2500
- * disallow using 'Children.map'
2550
+ * Disallow `Children.map`.
2501
2551
  * @see https://eslint-react.xyz/docs/rules/no-children-map
2502
2552
  */
2503
2553
  'react/no-children-map'?: Linter.RuleEntry<[]>
2504
2554
  /**
2505
- * disallow using 'Children.only'
2555
+ * Disallow `Children.only`.
2506
2556
  * @see https://eslint-react.xyz/docs/rules/no-children-only
2507
2557
  */
2508
2558
  'react/no-children-only'?: Linter.RuleEntry<[]>
2509
2559
  /**
2510
- * disallow passing 'children' as props
2560
+ * Disallow passing `children` as a prop.
2511
2561
  * @see https://eslint-react.xyz/docs/rules/no-children-prop
2512
2562
  */
2513
2563
  'react/no-children-prop'?: Linter.RuleEntry<[]>
2514
2564
  /**
2515
- * disallow using 'Children.toArray'
2565
+ * Disallow `Children.toArray`.
2516
2566
  * @see https://eslint-react.xyz/docs/rules/no-children-to-array
2517
2567
  */
2518
2568
  'react/no-children-to-array'?: Linter.RuleEntry<[]>
2519
2569
  /**
2520
- * disallow using class components
2570
+ * Disallow class components.
2521
2571
  * @see https://eslint-react.xyz/docs/rules/no-class-component
2522
2572
  */
2523
2573
  'react/no-class-component'?: Linter.RuleEntry<[]>
2524
2574
  /**
2525
- * disallow using 'cloneElement'
2575
+ * Disallow `cloneElement`.
2526
2576
  * @see https://eslint-react.xyz/docs/rules/no-clone-element
2527
2577
  */
2528
2578
  'react/no-clone-element'?: Linter.RuleEntry<[]>
2529
2579
  /**
2530
- * disallow comments from being inserted as text nodes
2580
+ * Prevents comments from being inserted as text nodes.
2531
2581
  * @see https://eslint-react.xyz/docs/rules/no-comment-textnodes
2532
2582
  */
2533
2583
  'react/no-comment-textnodes'?: Linter.RuleEntry<[]>
2534
2584
  /**
2535
- * disallow complex conditional rendering
2585
+ * Disallow complex conditional rendering in JSX expressions.
2536
2586
  * @see https://eslint-react.xyz/docs/rules/no-complex-conditional-rendering
2537
2587
  */
2538
2588
  'react/no-complex-conditional-rendering'?: Linter.RuleEntry<[]>
2539
2589
  /**
2540
- * disallow complex conditional rendering
2590
+ * Disallow complex conditional rendering in JSX expressions.
2541
2591
  * @see https://eslint-react.xyz/docs/rules/no-complex-conditional-rendering
2542
2592
  */
2543
2593
  'react/no-complicated-conditional-rendering'?: Linter.RuleEntry<[]>
2544
2594
  /**
2545
- * replace 'componentWillMount' with 'UNSAFE_componentWillMount'
2595
+ * Replace usages of `componentWillMount` with `UNSAFE_componentWillMount`.
2546
2596
  * @see https://eslint-react.xyz/docs/rules/no-component-will-mount
2547
2597
  */
2548
2598
  'react/no-component-will-mount'?: Linter.RuleEntry<[]>
2549
2599
  /**
2550
- * replace 'componentWillReceiveProps' with 'UNSAFE_componentWillReceiveProps'
2600
+ * Replace usages of `componentWillReceiveProps` with `UNSAFE_componentWillReceiveProps`.
2551
2601
  * @see https://eslint-react.xyz/docs/rules/no-component-will-receive-props
2552
2602
  */
2553
2603
  'react/no-component-will-receive-props'?: Linter.RuleEntry<[]>
2554
2604
  /**
2555
- * replace 'componentWillUpdate' with 'UNSAFE_componentWillUpdate'
2605
+ * Replace usages of `componentWillUpdate` with `UNSAFE_componentWillUpdate`.
2556
2606
  * @see https://eslint-react.xyz/docs/rules/no-component-will-update
2557
2607
  */
2558
2608
  'react/no-component-will-update'?: Linter.RuleEntry<[]>
2559
2609
  /**
2560
- * replace '<Context.Provider>' with '<Context>'
2610
+ * Replace usages of `<Context.Provider>` with `<Context>`.
2561
2611
  * @see https://eslint-react.xyz/docs/rules/no-context-provider
2562
2612
  */
2563
2613
  'react/no-context-provider'?: Linter.RuleEntry<[]>
2564
2614
  /**
2565
- * disallow using 'createRef' in function components
2615
+ * Disallow `createRef` in function components.
2566
2616
  * @see https://eslint-react.xyz/docs/rules/no-create-ref
2567
2617
  */
2568
2618
  'react/no-create-ref'?: Linter.RuleEntry<[]>
2569
2619
  /**
2570
- * disallow using 'defaultProps' property in components
2620
+ * Disallow `defaultProps` property in favor of ES6 default parameters.
2571
2621
  * @see https://eslint-react.xyz/docs/rules/no-default-props
2572
2622
  */
2573
2623
  'react/no-default-props'?: Linter.RuleEntry<[]>
2574
2624
  /**
2575
- * disallow direct mutation of state
2625
+ * Disallow direct mutation of `this.state`.
2576
2626
  * @see https://eslint-react.xyz/docs/rules/no-direct-mutation-state
2577
2627
  */
2578
2628
  'react/no-direct-mutation-state'?: Linter.RuleEntry<[]>
2579
2629
  /**
2580
- * disallow duplicate props
2581
- * @see https://eslint-react.xyz/docs/rules/no-duplicate-jsx-props
2630
+ * Disallow duplicate props in JSX elements.
2631
+ * @see https://eslint-react.xyz/docs/rules/jsx-no-duplicate-props
2582
2632
  */
2583
2633
  'react/no-duplicate-jsx-props'?: Linter.RuleEntry<[]>
2584
2634
  /**
2585
- * disallow duplicate keys when rendering list
2635
+ * Disallow duplicate `key` on elements in the same array or a list of `children`.
2586
2636
  * @see https://eslint-react.xyz/docs/rules/no-duplicate-key
2587
2637
  */
2588
2638
  'react/no-duplicate-key'?: Linter.RuleEntry<[]>
2589
2639
  /**
2590
- * replace 'forwardRef' with passing 'ref' as a prop
2640
+ * Replaces usages of `forwardRef` with passing `ref` as a prop.
2591
2641
  * @see https://eslint-react.xyz/docs/rules/no-forward-ref
2592
2642
  */
2593
2643
  'react/no-forward-ref'?: Linter.RuleEntry<[]>
2594
2644
  /**
2595
- * disallow implicit 'key' props
2645
+ * Prevents `key` from not being explicitly specified (e.g. spreading `key` from objects).
2596
2646
  * @see https://eslint-react.xyz/docs/rules/no-implicit-key
2597
2647
  */
2598
2648
  'react/no-implicit-key'?: Linter.RuleEntry<[]>
2599
2649
  /**
2600
- * disallow problematic leaked values from being rendered
2650
+ * Prevents problematic leaked values from being rendered.
2601
2651
  * @see https://eslint-react.xyz/docs/rules/no-leaked-conditional-rendering
2602
2652
  */
2603
2653
  'react/no-leaked-conditional-rendering'?: Linter.RuleEntry<[]>
2604
2654
  /**
2605
- * require 'displayName' for 'memo' and 'forwardRef' components
2655
+ * Enforces that all components have a `displayName` which can be used in devtools.
2606
2656
  * @see https://eslint-react.xyz/docs/rules/no-missing-component-display-name
2607
2657
  */
2608
2658
  'react/no-missing-component-display-name'?: Linter.RuleEntry<[]>
2609
2659
  /**
2610
- * require 'displayName' for contexts.
2660
+ * Enforces that all contexts have a `displayName` which can be used in devtools.
2611
2661
  * @see https://eslint-react.xyz/docs/rules/no-missing-context-display-name
2612
2662
  */
2613
2663
  'react/no-missing-context-display-name'?: Linter.RuleEntry<[]>
2614
2664
  /**
2615
- * require 'key' when rendering list
2665
+ * Disallow missing `key` on items in list rendering.
2616
2666
  * @see https://eslint-react.xyz/docs/rules/no-missing-key
2617
2667
  */
2618
2668
  'react/no-missing-key'?: Linter.RuleEntry<[]>
2619
2669
  /**
2620
- * disallow using unstable nested components
2621
- * @see https://eslint-react.xyz/docs/rules/no-nested-components
2670
+ * Disallow nesting component definitions inside other components.
2671
+ * @see https://eslint-react.xyz/docs/rules/no-nested-component-definitions
2672
+ */
2673
+ 'react/no-nested-component-definitions'?: Linter.RuleEntry<[]>
2674
+ /**
2675
+ * Disallow nesting component definitions inside other components.
2676
+ * @see https://eslint-react.xyz/docs/rules/no-nested-component-definitions
2622
2677
  */
2623
2678
  'react/no-nested-components'?: Linter.RuleEntry<[]>
2624
2679
  /**
2625
- * disallow using 'propTypes' property in components
2680
+ * Disallow `propTypes` in favor of TypeScript or another type-checking solution.
2626
2681
  * @see https://eslint-react.xyz/docs/rules/no-prop-types
2627
2682
  */
2628
2683
  'react/no-prop-types'?: Linter.RuleEntry<[]>
2629
2684
  /**
2630
- * disallow using 'shouldComponentUpdate' in class component extends 'React.PureComponent'
2685
+ * Disallow `shouldComponentUpdate` when extending `React.PureComponent`.
2631
2686
  * @see https://eslint-react.xyz/docs/rules/no-redundant-should-component-update
2632
2687
  */
2633
2688
  'react/no-redundant-should-component-update'?: Linter.RuleEntry<[]>
2634
2689
  /**
2635
- * disallow using 'setState' in 'componentDidMount'
2690
+ * Disallow calling `this.setState` in `componentDidMount` outside of functions, such as callbacks.
2636
2691
  * @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-mount
2637
2692
  */
2638
2693
  'react/no-set-state-in-component-did-mount'?: Linter.RuleEntry<[]>
2639
2694
  /**
2640
- * disallow using 'setState' in 'componentDidUpdate'
2695
+ * Disallows calling `this.setState` in `componentDidUpdate` outside of functions, such as callbacks.
2641
2696
  * @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-update
2642
2697
  */
2643
2698
  'react/no-set-state-in-component-did-update'?: Linter.RuleEntry<[]>
2644
2699
  /**
2645
- * disallow using 'setState' in 'componentWillUpdate'
2700
+ * Disallows calling `this.setState` in `componentWillUpdate` outside of functions, such as callbacks.
2646
2701
  * @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-will-update
2647
2702
  */
2648
2703
  'react/no-set-state-in-component-will-update'?: Linter.RuleEntry<[]>
2649
2704
  /**
2650
- * disallow using deprecated string refs
2705
+ * Disallow deprecated string `refs`.
2651
2706
  * @see https://eslint-react.xyz/docs/rules/no-string-refs
2652
2707
  */
2653
2708
  'react/no-string-refs'?: Linter.RuleEntry<[]>
2654
2709
  /**
2655
- * disallow using 'UNSAFE_componentWillMount'
2710
+ * Warns the usage of `UNSAFE_componentWillMount` in class components.
2656
2711
  * @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-mount
2657
2712
  */
2658
2713
  'react/no-unsafe-component-will-mount'?: Linter.RuleEntry<[]>
2659
2714
  /**
2660
- * disallow using 'UNSAFE_componentWillReceiveProps'
2715
+ * Warns the usage of `UNSAFE_componentWillReceiveProps` in class components.
2661
2716
  * @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-receive-props
2662
2717
  */
2663
2718
  'react/no-unsafe-component-will-receive-props'?: Linter.RuleEntry<[]>
2664
2719
  /**
2665
- * disallow using 'UNSAFE_componentWillUpdate'
2720
+ * Warns the usage of `UNSAFE_componentWillUpdate` in class components.
2666
2721
  * @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-update
2667
2722
  */
2668
2723
  'react/no-unsafe-component-will-update'?: Linter.RuleEntry<[]>
2669
2724
  /**
2670
- * disallow passing constructed values to context providers
2725
+ * Prevents non-stable values (i.e. object literals) from being used as a value for `Context.Provider`.
2671
2726
  * @see https://eslint-react.xyz/docs/rules/no-unstable-context-value
2672
2727
  */
2673
2728
  'react/no-unstable-context-value'?: Linter.RuleEntry<[]>
2674
2729
  /**
2675
- * disallow using unstable value as default param in function component
2730
+ * Prevents using referential-type values as default props in object destructuring.
2676
2731
  * @see https://eslint-react.xyz/docs/rules/no-unstable-default-props
2677
2732
  */
2678
2733
  'react/no-unstable-default-props'?: Linter.RuleEntry<[]>
2679
2734
  /**
2680
- * disallow unused class component members
2735
+ * Warns unused class component methods and properties.
2681
2736
  * @see https://eslint-react.xyz/docs/rules/no-unused-class-component-members
2682
2737
  */
2683
2738
  'react/no-unused-class-component-members'?: Linter.RuleEntry<[]>
2684
2739
  /**
2685
- * disallow unused state of class component
2740
+ * Warns unused class component state.
2686
2741
  * @see https://eslint-react.xyz/docs/rules/no-unused-state
2687
2742
  */
2688
2743
  'react/no-unused-state'?: Linter.RuleEntry<[]>
2689
2744
  /**
2690
- * replace 'useContext' with 'use'
2745
+ * Replaces usages of `useContext` with `use`.
2691
2746
  * @see https://eslint-react.xyz/docs/rules/no-use-context
2692
2747
  */
2693
2748
  'react/no-use-context'?: Linter.RuleEntry<[]>
2694
2749
  /**
2695
- * disallow useless fragments
2750
+ * Disallow useless `forwardRef` calls on components that don't use `ref`s.
2751
+ * @see https://eslint-react.xyz/docs/rules/no-useless-forward-ref
2752
+ */
2753
+ 'react/no-useless-forward-ref'?: Linter.RuleEntry<[]>
2754
+ /**
2755
+ * Disallow useless fragment elements.
2696
2756
  * @see https://eslint-react.xyz/docs/rules/no-useless-fragment
2697
2757
  */
2698
2758
  'react/no-useless-fragment'?: Linter.RuleEntry<ReactNoUselessFragment>
2699
2759
  /**
2700
- * enforce using destructuring assignment in component props and context
2760
+ * Enforces destructuring assignment for component props and context.
2701
2761
  * @see https://eslint-react.xyz/docs/rules/prefer-destructuring-assignment
2702
2762
  */
2703
2763
  'react/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>
2704
2764
  /**
2705
- * enforce React is imported via a namespace import
2765
+ * Enforces React is imported via a namespace import.
2706
2766
  * @see https://eslint-react.xyz/docs/rules/prefer-react-namespace-import
2707
2767
  */
2708
2768
  'react/prefer-react-namespace-import'?: Linter.RuleEntry<[]>
2709
2769
  /**
2710
- * enforce read-only props in components
2770
+ * Enforces read-only props in components.
2711
2771
  * @see https://eslint-react.xyz/docs/rules/prefer-read-only-props
2712
2772
  */
2713
2773
  'react/prefer-read-only-props'?: Linter.RuleEntry<[]>
2714
2774
  /**
2715
- * enforce the use of shorthand syntax for boolean attributes
2775
+ * Enforces shorthand syntax for boolean attributes.
2716
2776
  * @see https://eslint-react.xyz/docs/rules/prefer-shorthand-boolean
2717
2777
  */
2718
2778
  'react/prefer-shorthand-boolean'?: Linter.RuleEntry<[]>
2719
2779
  /**
2720
- * enforce the use of shorthand syntax for fragments
2780
+ * Enforces shorthand syntax for fragments.
2721
2781
  * @see https://eslint-react.xyz/docs/rules/prefer-shorthand-fragment
2722
2782
  */
2723
2783
  'react/prefer-shorthand-fragment'?: Linter.RuleEntry<[]>
2724
2784
  /**
2725
- * marks variables used in JSX as used
2726
- * @see https://eslint-react.xyz/docs/rules/use-jsx-vars
2785
+ * Marks variables used in JSX elements as used.
2786
+ * @see https://eslint-react.xyz/docs/rules/jsx-uses-vars
2727
2787
  */
2728
2788
  'react/use-jsx-vars'?: Linter.RuleEntry<[]>
2729
2789
  /**
@@ -4514,642 +4574,643 @@ interface RuleOptions {
4514
4574
  'unicode-bom'?: Linter.RuleEntry<UnicodeBom>
4515
4575
  /**
4516
4576
  * Improve regexes by making them shorter, consistent, and safer.
4517
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/better-regex.md
4577
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/better-regex.md
4518
4578
  */
4519
4579
  'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>
4520
4580
  /**
4521
4581
  * Enforce a specific parameter name in catch clauses.
4522
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/catch-error-name.md
4582
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/catch-error-name.md
4523
4583
  */
4524
4584
  'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>
4525
4585
  /**
4526
4586
  * Enforce consistent assertion style with `node:assert`.
4527
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-assert.md
4587
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-assert.md
4528
4588
  */
4529
4589
  'unicorn/consistent-assert'?: Linter.RuleEntry<[]>
4530
4590
  /**
4531
4591
  * Prefer passing `Date` directly to the constructor when cloning.
4532
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-date-clone.md
4592
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-date-clone.md
4533
4593
  */
4534
4594
  'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>
4535
4595
  /**
4536
4596
  * Use destructured variables over properties.
4537
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-destructuring.md
4597
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-destructuring.md
4538
4598
  */
4539
4599
  'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>
4540
4600
  /**
4541
4601
  * Prefer consistent types when spreading a ternary in an array literal.
4542
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-empty-array-spread.md
4602
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-empty-array-spread.md
4543
4603
  */
4544
4604
  'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>
4545
4605
  /**
4546
4606
  * Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
4547
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-existence-index-check.md
4607
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-existence-index-check.md
4548
4608
  */
4549
4609
  'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>
4550
4610
  /**
4551
4611
  * Move function definitions to the highest possible scope.
4552
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-function-scoping.md
4612
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-function-scoping.md
4553
4613
  */
4554
4614
  'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>
4555
4615
  /**
4556
4616
  * Enforce correct `Error` subclassing.
4557
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/custom-error-definition.md
4617
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/custom-error-definition.md
4558
4618
  */
4559
4619
  'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>
4560
4620
  /**
4561
4621
  * Enforce no spaces between braces.
4562
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/empty-brace-spaces.md
4622
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/empty-brace-spaces.md
4563
4623
  */
4564
4624
  'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>
4565
4625
  /**
4566
4626
  * Enforce passing a `message` value when creating a built-in error.
4567
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/error-message.md
4627
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/error-message.md
4568
4628
  */
4569
4629
  'unicorn/error-message'?: Linter.RuleEntry<[]>
4570
4630
  /**
4571
- * Require escape sequences to use uppercase values.
4572
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/escape-case.md
4631
+ * Require escape sequences to use uppercase or lowercase values.
4632
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/escape-case.md
4573
4633
  */
4574
- 'unicorn/escape-case'?: Linter.RuleEntry<[]>
4634
+ 'unicorn/escape-case'?: Linter.RuleEntry<UnicornEscapeCase>
4575
4635
  /**
4576
4636
  * Add expiration conditions to TODO comments.
4577
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/expiring-todo-comments.md
4637
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/expiring-todo-comments.md
4578
4638
  */
4579
4639
  'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>
4580
4640
  /**
4581
4641
  * Enforce explicitly comparing the `length` or `size` property of a value.
4582
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/explicit-length-check.md
4642
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/explicit-length-check.md
4583
4643
  */
4584
4644
  'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>
4585
4645
  /**
4586
4646
  * Enforce a case style for filenames.
4587
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/filename-case.md
4647
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/filename-case.md
4588
4648
  */
4589
4649
  'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>
4590
4650
  /**
4591
4651
  * Enforce specific import styles per module.
4592
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/import-style.md
4652
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/import-style.md
4593
4653
  */
4594
4654
  'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>
4595
4655
  /**
4596
4656
  * Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
4597
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/new-for-builtins.md
4657
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/new-for-builtins.md
4598
4658
  */
4599
4659
  'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>
4600
4660
  /**
4601
4661
  * Enforce specifying rules to disable in `eslint-disable` comments.
4602
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-abusive-eslint-disable.md
4662
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-abusive-eslint-disable.md
4603
4663
  */
4604
4664
  'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>
4605
4665
  /**
4606
4666
  * Disallow recursive access to `this` within getters and setters.
4607
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-accessor-recursion.md
4667
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-accessor-recursion.md
4608
4668
  */
4609
4669
  'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>
4610
4670
  /**
4611
4671
  * Disallow anonymous functions and classes as the default export.
4612
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-anonymous-default-export.md
4672
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-anonymous-default-export.md
4613
4673
  */
4614
4674
  'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>
4615
4675
  /**
4616
4676
  * Prevent passing a function reference directly to iterator methods.
4617
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-callback-reference.md
4677
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-callback-reference.md
4618
4678
  */
4619
4679
  'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>
4620
4680
  /**
4621
4681
  * Prefer `for…of` over the `forEach` method.
4622
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-for-each.md
4682
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-for-each.md
4623
4683
  */
4624
4684
  'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>
4625
4685
  /**
4626
4686
  * Disallow using the `this` argument in array methods.
4627
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-method-this-argument.md
4687
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-method-this-argument.md
4628
4688
  */
4629
4689
  'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>
4630
4690
  /**
4631
4691
  * Enforce combining multiple `Array#push()` into one call.
4632
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-push-push.md
4692
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-push-push.md
4633
4693
  */
4634
4694
  'unicorn/no-array-push-push'?: Linter.RuleEntry<UnicornNoArrayPushPush>
4635
4695
  /**
4636
4696
  * Disallow `Array#reduce()` and `Array#reduceRight()`.
4637
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-reduce.md
4697
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-reduce.md
4638
4698
  */
4639
4699
  'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>
4640
4700
  /**
4641
4701
  * Disallow member access from await expression.
4642
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-await-expression-member.md
4702
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-await-expression-member.md
4643
4703
  */
4644
4704
  'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>
4645
4705
  /**
4646
4706
  * Disallow using `await` in `Promise` method parameters.
4647
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-await-in-promise-methods.md
4707
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-await-in-promise-methods.md
4648
4708
  */
4649
4709
  'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>
4650
4710
  /**
4651
4711
  * Do not use leading/trailing space between `console.log` parameters.
4652
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-console-spaces.md
4712
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-console-spaces.md
4653
4713
  */
4654
4714
  'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>
4655
4715
  /**
4656
4716
  * Do not use `document.cookie` directly.
4657
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-document-cookie.md
4717
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-document-cookie.md
4658
4718
  */
4659
4719
  'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>
4660
4720
  /**
4661
4721
  * Disallow empty files.
4662
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-empty-file.md
4722
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-empty-file.md
4663
4723
  */
4664
4724
  'unicorn/no-empty-file'?: Linter.RuleEntry<[]>
4665
4725
  /**
4666
4726
  * Do not use a `for` loop that can be replaced with a `for-of` loop.
4667
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-for-loop.md
4727
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-for-loop.md
4668
4728
  */
4669
4729
  'unicorn/no-for-loop'?: Linter.RuleEntry<[]>
4670
4730
  /**
4671
4731
  * Enforce the use of Unicode escapes instead of hexadecimal escapes.
4672
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-hex-escape.md
4732
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-hex-escape.md
4673
4733
  */
4674
4734
  'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>
4675
4735
  /**
4676
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/deprecated-rules.md#no-instanceof-array
4736
+ * Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
4737
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/deprecated-rules.md#no-instanceof-array
4677
4738
  * @deprecated
4678
4739
  */
4679
4740
  'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>
4680
4741
  /**
4681
4742
  * Disallow `instanceof` with built-in objects
4682
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-instanceof-builtins.md
4743
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-instanceof-builtins.md
4683
4744
  */
4684
4745
  'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>
4685
4746
  /**
4686
4747
  * Disallow invalid options in `fetch()` and `new Request()`.
4687
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-invalid-fetch-options.md
4748
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-invalid-fetch-options.md
4688
4749
  */
4689
4750
  'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>
4690
4751
  /**
4691
4752
  * Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
4692
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-invalid-remove-event-listener.md
4753
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-invalid-remove-event-listener.md
4693
4754
  */
4694
4755
  'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>
4695
4756
  /**
4696
4757
  * Disallow identifiers starting with `new` or `class`.
4697
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-keyword-prefix.md
4758
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-keyword-prefix.md
4698
4759
  */
4699
4760
  'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>
4700
4761
  /**
4701
4762
  * Disallow using `.length` as the `end` argument of `{Array,String,TypedArray}#slice()`.
4702
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-length-as-slice-end.md
4763
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-length-as-slice-end.md
4703
4764
  */
4704
4765
  'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>
4705
4766
  /**
4706
4767
  * Disallow `if` statements as the only statement in `if` blocks without `else`.
4707
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-lonely-if.md
4768
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-lonely-if.md
4708
4769
  */
4709
4770
  'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>
4710
4771
  /**
4711
4772
  * Disallow a magic number as the `depth` argument in `Array#flat(…).`
4712
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-magic-array-flat-depth.md
4773
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-magic-array-flat-depth.md
4713
4774
  */
4714
4775
  'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>
4715
4776
  /**
4716
4777
  * Disallow named usage of default import and export.
4717
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-named-default.md
4778
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-named-default.md
4718
4779
  */
4719
4780
  'unicorn/no-named-default'?: Linter.RuleEntry<[]>
4720
4781
  /**
4721
4782
  * Disallow negated conditions.
4722
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-negated-condition.md
4783
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-negated-condition.md
4723
4784
  */
4724
4785
  'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>
4725
4786
  /**
4726
4787
  * Disallow negated expression in equality check.
4727
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-negation-in-equality-check.md
4788
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-negation-in-equality-check.md
4728
4789
  */
4729
4790
  'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>
4730
4791
  /**
4731
4792
  * Disallow nested ternary expressions.
4732
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-nested-ternary.md
4793
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-nested-ternary.md
4733
4794
  */
4734
4795
  'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>
4735
4796
  /**
4736
4797
  * Disallow `new Array()`.
4737
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-new-array.md
4798
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-new-array.md
4738
4799
  */
4739
4800
  'unicorn/no-new-array'?: Linter.RuleEntry<[]>
4740
4801
  /**
4741
4802
  * Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
4742
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-new-buffer.md
4803
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-new-buffer.md
4743
4804
  */
4744
4805
  'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>
4745
4806
  /**
4746
4807
  * Disallow the use of the `null` literal.
4747
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-null.md
4808
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-null.md
4748
4809
  */
4749
4810
  'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>
4750
4811
  /**
4751
4812
  * Disallow the use of objects as default parameters.
4752
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-object-as-default-parameter.md
4813
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-object-as-default-parameter.md
4753
4814
  */
4754
4815
  'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>
4755
4816
  /**
4756
4817
  * Disallow `process.exit()`.
4757
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-process-exit.md
4818
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-process-exit.md
4758
4819
  */
4759
4820
  'unicorn/no-process-exit'?: Linter.RuleEntry<[]>
4760
4821
  /**
4761
4822
  * Disallow passing single-element arrays to `Promise` methods.
4762
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-single-promise-in-promise-methods.md
4823
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-single-promise-in-promise-methods.md
4763
4824
  */
4764
4825
  'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>
4765
4826
  /**
4766
4827
  * Disallow classes that only have static members.
4767
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-static-only-class.md
4828
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-static-only-class.md
4768
4829
  */
4769
4830
  'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>
4770
4831
  /**
4771
4832
  * Disallow `then` property.
4772
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-thenable.md
4833
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-thenable.md
4773
4834
  */
4774
4835
  'unicorn/no-thenable'?: Linter.RuleEntry<[]>
4775
4836
  /**
4776
4837
  * Disallow assigning `this` to a variable.
4777
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-this-assignment.md
4838
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-this-assignment.md
4778
4839
  */
4779
4840
  'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>
4780
4841
  /**
4781
4842
  * Disallow comparing `undefined` using `typeof`.
4782
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-typeof-undefined.md
4843
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-typeof-undefined.md
4783
4844
  */
4784
4845
  'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>
4785
4846
  /**
4786
4847
  * Disallow awaiting non-promise values.
4787
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unnecessary-await.md
4848
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unnecessary-await.md
4788
4849
  */
4789
4850
  'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>
4790
4851
  /**
4791
4852
  * Enforce the use of built-in methods instead of unnecessary polyfills.
4792
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unnecessary-polyfills.md
4853
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unnecessary-polyfills.md
4793
4854
  */
4794
4855
  'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>
4795
4856
  /**
4796
4857
  * Disallow unreadable array destructuring.
4797
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unreadable-array-destructuring.md
4858
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unreadable-array-destructuring.md
4798
4859
  */
4799
4860
  'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>
4800
4861
  /**
4801
4862
  * Disallow unreadable IIFEs.
4802
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unreadable-iife.md
4863
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unreadable-iife.md
4803
4864
  */
4804
4865
  'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>
4805
4866
  /**
4806
4867
  * Disallow unused object properties.
4807
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unused-properties.md
4868
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unused-properties.md
4808
4869
  */
4809
4870
  'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>
4810
4871
  /**
4811
4872
  * Disallow useless fallback when spreading in object literals.
4812
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-fallback-in-spread.md
4873
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-fallback-in-spread.md
4813
4874
  */
4814
4875
  'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>
4815
4876
  /**
4816
4877
  * Disallow useless array length check.
4817
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-length-check.md
4878
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-length-check.md
4818
4879
  */
4819
4880
  'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>
4820
4881
  /**
4821
4882
  * Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
4822
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-promise-resolve-reject.md
4883
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-promise-resolve-reject.md
4823
4884
  */
4824
4885
  'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>
4825
4886
  /**
4826
4887
  * Disallow unnecessary spread.
4827
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-spread.md
4888
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-spread.md
4828
4889
  */
4829
4890
  'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>
4830
4891
  /**
4831
4892
  * Disallow useless case in switch statements.
4832
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-switch-case.md
4893
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-switch-case.md
4833
4894
  */
4834
4895
  'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>
4835
4896
  /**
4836
4897
  * Disallow useless `undefined`.
4837
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-undefined.md
4898
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-undefined.md
4838
4899
  */
4839
4900
  'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>
4840
4901
  /**
4841
4902
  * Disallow number literals with zero fractions or dangling dots.
4842
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-zero-fractions.md
4903
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-zero-fractions.md
4843
4904
  */
4844
4905
  'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>
4845
4906
  /**
4846
4907
  * Enforce proper case for numeric literals.
4847
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/number-literal-case.md
4908
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/number-literal-case.md
4848
4909
  */
4849
- 'unicorn/number-literal-case'?: Linter.RuleEntry<[]>
4910
+ 'unicorn/number-literal-case'?: Linter.RuleEntry<UnicornNumberLiteralCase>
4850
4911
  /**
4851
4912
  * Enforce the style of numeric separators by correctly grouping digits.
4852
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/numeric-separators-style.md
4913
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/numeric-separators-style.md
4853
4914
  */
4854
4915
  'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>
4855
4916
  /**
4856
4917
  * Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
4857
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-add-event-listener.md
4918
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-add-event-listener.md
4858
4919
  */
4859
4920
  'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>
4860
4921
  /**
4861
4922
  * Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
4862
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-find.md
4923
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-find.md
4863
4924
  */
4864
4925
  'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>
4865
4926
  /**
4866
4927
  * Prefer `Array#flat()` over legacy techniques to flatten arrays.
4867
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-flat.md
4928
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-flat.md
4868
4929
  */
4869
4930
  'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>
4870
4931
  /**
4871
4932
  * Prefer `.flatMap(…)` over `.map(…).flat()`.
4872
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-flat-map.md
4933
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-flat-map.md
4873
4934
  */
4874
4935
  'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>
4875
4936
  /**
4876
4937
  * Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
4877
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-index-of.md
4938
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-index-of.md
4878
4939
  */
4879
4940
  'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>
4880
4941
  /**
4881
4942
  * Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
4882
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-some.md
4943
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-some.md
4883
4944
  */
4884
4945
  'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>
4885
4946
  /**
4886
4947
  * Prefer `.at()` method for index access and `String#charAt()`.
4887
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-at.md
4948
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-at.md
4888
4949
  */
4889
4950
  'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>
4890
4951
  /**
4891
4952
  * Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
4892
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-blob-reading-methods.md
4953
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-blob-reading-methods.md
4893
4954
  */
4894
4955
  'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>
4895
4956
  /**
4896
4957
  * Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
4897
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-code-point.md
4958
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-code-point.md
4898
4959
  */
4899
4960
  'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>
4900
4961
  /**
4901
4962
  * Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
4902
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-date-now.md
4963
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-date-now.md
4903
4964
  */
4904
4965
  'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>
4905
4966
  /**
4906
4967
  * Prefer default parameters over reassignment.
4907
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-default-parameters.md
4968
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-default-parameters.md
4908
4969
  */
4909
4970
  'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>
4910
4971
  /**
4911
4972
  * Prefer `Node#append()` over `Node#appendChild()`.
4912
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-append.md
4973
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-dom-node-append.md
4913
4974
  */
4914
4975
  'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>
4915
4976
  /**
4916
4977
  * Prefer using `.dataset` on DOM elements over calling attribute methods.
4917
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-dataset.md
4978
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-dom-node-dataset.md
4918
4979
  */
4919
4980
  'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>
4920
4981
  /**
4921
4982
  * Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
4922
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-remove.md
4983
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-dom-node-remove.md
4923
4984
  */
4924
4985
  'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>
4925
4986
  /**
4926
4987
  * Prefer `.textContent` over `.innerText`.
4927
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-text-content.md
4988
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-dom-node-text-content.md
4928
4989
  */
4929
4990
  'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>
4930
4991
  /**
4931
4992
  * Prefer `EventTarget` over `EventEmitter`.
4932
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-event-target.md
4993
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-event-target.md
4933
4994
  */
4934
4995
  'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>
4935
4996
  /**
4936
4997
  * Prefer `export…from` when re-exporting.
4937
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-export-from.md
4998
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-export-from.md
4938
4999
  */
4939
5000
  'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>
4940
5001
  /**
4941
5002
  * Prefer `globalThis` over `window`, `self`, and `global`.
4942
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-global-this.md
5003
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-global-this.md
4943
5004
  */
4944
5005
  'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>
4945
5006
  /**
4946
5007
  * Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
4947
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-includes.md
5008
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-includes.md
4948
5009
  */
4949
5010
  'unicorn/prefer-includes'?: Linter.RuleEntry<[]>
4950
5011
  /**
4951
5012
  * Prefer reading a JSON file as a buffer.
4952
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-json-parse-buffer.md
5013
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-json-parse-buffer.md
4953
5014
  */
4954
5015
  'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>
4955
5016
  /**
4956
5017
  * Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
4957
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-keyboard-event-key.md
5018
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-keyboard-event-key.md
4958
5019
  */
4959
5020
  'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>
4960
5021
  /**
4961
5022
  * Prefer using a logical operator over a ternary.
4962
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-logical-operator-over-ternary.md
5023
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-logical-operator-over-ternary.md
4963
5024
  */
4964
5025
  'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>
4965
5026
  /**
4966
5027
  * Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
4967
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-math-min-max.md
5028
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-math-min-max.md
4968
5029
  */
4969
5030
  'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>
4970
5031
  /**
4971
5032
  * Enforce the use of `Math.trunc` instead of bitwise operators.
4972
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-math-trunc.md
5033
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-math-trunc.md
4973
5034
  */
4974
5035
  'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>
4975
5036
  /**
4976
5037
  * Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
4977
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-modern-dom-apis.md
5038
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-modern-dom-apis.md
4978
5039
  */
4979
5040
  'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>
4980
5041
  /**
4981
5042
  * Prefer modern `Math` APIs over legacy patterns.
4982
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-modern-math-apis.md
5043
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-modern-math-apis.md
4983
5044
  */
4984
5045
  'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>
4985
5046
  /**
4986
5047
  * Prefer JavaScript modules (ESM) over CommonJS.
4987
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-module.md
5048
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-module.md
4988
5049
  */
4989
5050
  'unicorn/prefer-module'?: Linter.RuleEntry<[]>
4990
5051
  /**
4991
5052
  * Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
4992
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-native-coercion-functions.md
5053
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-native-coercion-functions.md
4993
5054
  */
4994
5055
  'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>
4995
5056
  /**
4996
5057
  * Prefer negative index over `.length - index` when possible.
4997
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-negative-index.md
5058
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-negative-index.md
4998
5059
  */
4999
5060
  'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>
5000
5061
  /**
5001
5062
  * Prefer using the `node:` protocol when importing Node.js builtin modules.
5002
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-node-protocol.md
5063
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-node-protocol.md
5003
5064
  */
5004
5065
  'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>
5005
5066
  /**
5006
5067
  * Prefer `Number` static properties over global ones.
5007
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-number-properties.md
5068
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-number-properties.md
5008
5069
  */
5009
5070
  'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>
5010
5071
  /**
5011
5072
  * Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
5012
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-object-from-entries.md
5073
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-object-from-entries.md
5013
5074
  */
5014
5075
  'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>
5015
5076
  /**
5016
5077
  * Prefer omitting the `catch` binding parameter.
5017
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-optional-catch-binding.md
5078
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-optional-catch-binding.md
5018
5079
  */
5019
5080
  'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>
5020
5081
  /**
5021
5082
  * Prefer borrowing methods from the prototype instead of the instance.
5022
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-prototype-methods.md
5083
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-prototype-methods.md
5023
5084
  */
5024
5085
  'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>
5025
5086
  /**
5026
5087
  * Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
5027
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-query-selector.md
5088
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-query-selector.md
5028
5089
  */
5029
5090
  'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>
5030
5091
  /**
5031
5092
  * Prefer `Reflect.apply()` over `Function#apply()`.
5032
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-reflect-apply.md
5093
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-reflect-apply.md
5033
5094
  */
5034
5095
  'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>
5035
5096
  /**
5036
5097
  * Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
5037
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-regexp-test.md
5098
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-regexp-test.md
5038
5099
  */
5039
5100
  'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>
5040
5101
  /**
5041
5102
  * Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
5042
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-set-has.md
5103
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-set-has.md
5043
5104
  */
5044
5105
  'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>
5045
5106
  /**
5046
5107
  * Prefer using `Set#size` instead of `Array#length`.
5047
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-set-size.md
5108
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-set-size.md
5048
5109
  */
5049
5110
  'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>
5050
5111
  /**
5051
5112
  * Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
5052
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-spread.md
5113
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-spread.md
5053
5114
  */
5054
5115
  'unicorn/prefer-spread'?: Linter.RuleEntry<[]>
5055
5116
  /**
5056
5117
  * Prefer using the `String.raw` tag to avoid escaping `\`.
5057
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-raw.md
5118
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-raw.md
5058
5119
  */
5059
5120
  'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>
5060
5121
  /**
5061
5122
  * Prefer `String#replaceAll()` over regex searches with the global flag.
5062
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-replace-all.md
5123
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-replace-all.md
5063
5124
  */
5064
5125
  'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>
5065
5126
  /**
5066
5127
  * Prefer `String#slice()` over `String#substr()` and `String#substring()`.
5067
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-slice.md
5128
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-slice.md
5068
5129
  */
5069
5130
  'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>
5070
5131
  /**
5071
5132
  * Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
5072
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-starts-ends-with.md
5133
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-starts-ends-with.md
5073
5134
  */
5074
5135
  'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>
5075
5136
  /**
5076
5137
  * Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
5077
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-trim-start-end.md
5138
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-trim-start-end.md
5078
5139
  */
5079
5140
  'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>
5080
5141
  /**
5081
5142
  * Prefer using `structuredClone` to create a deep clone.
5082
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-structured-clone.md
5143
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-structured-clone.md
5083
5144
  */
5084
5145
  'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>
5085
5146
  /**
5086
5147
  * Prefer `switch` over multiple `else-if`.
5087
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-switch.md
5148
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-switch.md
5088
5149
  */
5089
5150
  'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>
5090
5151
  /**
5091
5152
  * Prefer ternary expressions over simple `if-else` statements.
5092
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-ternary.md
5153
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-ternary.md
5093
5154
  */
5094
5155
  'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>
5095
5156
  /**
5096
5157
  * Prefer top-level await over top-level promises and async function calls.
5097
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-top-level-await.md
5158
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-top-level-await.md
5098
5159
  */
5099
5160
  'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>
5100
5161
  /**
5101
5162
  * Enforce throwing `TypeError` in type checking conditions.
5102
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-type-error.md
5163
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-type-error.md
5103
5164
  */
5104
5165
  'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>
5105
5166
  /**
5106
5167
  * Prevent abbreviations.
5107
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prevent-abbreviations.md
5168
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prevent-abbreviations.md
5108
5169
  */
5109
5170
  'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>
5110
5171
  /**
5111
5172
  * Enforce consistent relative URL style.
5112
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/relative-url-style.md
5173
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/relative-url-style.md
5113
5174
  */
5114
5175
  'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>
5115
5176
  /**
5116
5177
  * Enforce using the separator argument with `Array#join()`.
5117
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/require-array-join-separator.md
5178
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/require-array-join-separator.md
5118
5179
  */
5119
5180
  'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>
5120
5181
  /**
5121
5182
  * Enforce using the digits argument with `Number#toFixed()`.
5122
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/require-number-to-fixed-digits-argument.md
5183
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/require-number-to-fixed-digits-argument.md
5123
5184
  */
5124
5185
  'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>
5125
5186
  /**
5126
5187
  * Enforce using the `targetOrigin` argument with `window.postMessage()`.
5127
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/require-post-message-target-origin.md
5188
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/require-post-message-target-origin.md
5128
5189
  */
5129
5190
  'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>
5130
5191
  /**
5131
5192
  * Enforce better string content.
5132
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/string-content.md
5193
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/string-content.md
5133
5194
  */
5134
5195
  'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>
5135
5196
  /**
5136
5197
  * Enforce consistent brace style for `case` clauses.
5137
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/switch-case-braces.md
5198
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/switch-case-braces.md
5138
5199
  */
5139
5200
  'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>
5140
5201
  /**
5141
5202
  * Fix whitespace-insensitive template indentation.
5142
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/template-indent.md
5203
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/template-indent.md
5143
5204
  */
5144
5205
  'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>
5145
5206
  /**
5146
5207
  * Enforce consistent case for text encoding identifiers.
5147
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/text-encoding-identifier-case.md
5208
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/text-encoding-identifier-case.md
5148
5209
  */
5149
5210
  'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>
5150
5211
  /**
5151
5212
  * Require `new` when creating an error.
5152
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/throw-new-error.md
5213
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/throw-new-error.md
5153
5214
  */
5154
5215
  'unicorn/throw-new-error'?: Linter.RuleEntry<[]>
5155
5216
  /**
@@ -5640,7 +5701,7 @@ type IdMatch = []|[string]|[string, {
5640
5701
  // ----- implicit-arrow-linebreak -----
5641
5702
  type ImplicitArrowLinebreak = []|[("beside" | "below")]
5642
5703
  // ----- import/consistent-type-specifier-style -----
5643
- type ImportConsistentTypeSpecifierStyle = []|[("prefer-inline" | "prefer-top-level")]
5704
+ type ImportConsistentTypeSpecifierStyle = []|[("prefer-top-level" | "prefer-inline")]
5644
5705
  // ----- import/dynamic-import-chunkname -----
5645
5706
  type ImportDynamicImportChunkname = []|[{
5646
5707
  importFunctions?: string[]
@@ -5860,6 +5921,17 @@ type ImportOrder = []|[{
5860
5921
  position?: ("after" | "before")
5861
5922
  }[]
5862
5923
  "newlines-between"?: ("ignore" | "always" | "always-and-inside-groups" | "never")
5924
+ "newlines-between-types"?: ("ignore" | "always" | "always-and-inside-groups" | "never")
5925
+ consolidateIslands?: ("inside-groups" | "never")
5926
+ sortTypesGroup?: boolean
5927
+ named?: (boolean | {
5928
+ enabled?: boolean
5929
+ import?: boolean
5930
+ export?: boolean
5931
+ require?: boolean
5932
+ cjsExports?: boolean
5933
+ types?: ("mixed" | "types-first" | "types-last")
5934
+ })
5863
5935
  alphabetize?: {
5864
5936
  caseInsensitive?: boolean
5865
5937
  order?: ("ignore" | "asc" | "desc")
@@ -7323,7 +7395,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
7323
7395
  type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
7324
7396
  version?: string
7325
7397
  allowExperimental?: boolean
7326
- 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")[]
7398
+ 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")[]
7327
7399
  }]
7328
7400
  // ----- node/prefer-global/buffer -----
7329
7401
  type NodePreferGlobalBuffer = []|[("always" | "never")]
@@ -9341,6 +9413,43 @@ type PerfectionistSortVariableDeclarations = []|[{
9341
9413
 
9342
9414
  partitionByNewLine?: boolean
9343
9415
  }]
9416
+ // ----- pnpm/json-enforce-catalog -----
9417
+ type PnpmJsonEnforceCatalog = []|[{
9418
+
9419
+ allowedProtocols?: string[]
9420
+
9421
+ autofix?: boolean
9422
+
9423
+ defaultCatalog?: string
9424
+
9425
+ reuseExistingCatalog?: boolean
9426
+
9427
+ conflicts?: ("new-catalog" | "overrides" | "error")
9428
+
9429
+ fields?: string[]
9430
+ }]
9431
+ // ----- pnpm/json-prefer-workspace-settings -----
9432
+ type PnpmJsonPreferWorkspaceSettings = []|[{
9433
+
9434
+ autofix?: boolean
9435
+ }]
9436
+ // ----- pnpm/json-valid-catalog -----
9437
+ type PnpmJsonValidCatalog = []|[{
9438
+
9439
+ autoInsert?: boolean
9440
+
9441
+ autoInsertDefaultSpecifier?: string
9442
+
9443
+ autofix?: boolean
9444
+
9445
+ enforceNoConflict?: boolean
9446
+
9447
+ fields?: unknown[]
9448
+ }]
9449
+ // ----- pnpm/yaml-no-duplicate-catalog-item -----
9450
+ type PnpmYamlNoDuplicateCatalogItem = []|[{
9451
+ allow?: string[]
9452
+ }]
9344
9453
  // ----- prefer-arrow-callback -----
9345
9454
  type PreferArrowCallback = []|[{
9346
9455
  allowNamedFunctions?: boolean
@@ -12112,6 +12221,8 @@ type UnicornCatchErrorName = []|[{
12112
12221
  type UnicornConsistentFunctionScoping = []|[{
12113
12222
  checkArrowFunctions?: boolean
12114
12223
  }]
12224
+ // ----- unicorn/escape-case -----
12225
+ type UnicornEscapeCase = []|[("uppercase" | "lowercase")]
12115
12226
  // ----- unicorn/expiring-todo-comments -----
12116
12227
  type UnicornExpiringTodoComments = []|[{
12117
12228
  terms?: string[]
@@ -12196,6 +12307,10 @@ type UnicornNoUselessUndefined = []|[{
12196
12307
  checkArguments?: boolean
12197
12308
  checkArrowFunctionBody?: boolean
12198
12309
  }]
12310
+ // ----- unicorn/number-literal-case -----
12311
+ type UnicornNumberLiteralCase = []|[{
12312
+ hexadecimalValue?: ("uppercase" | "lowercase")
12313
+ }]
12199
12314
  // ----- unicorn/numeric-separators-style -----
12200
12315
  type UnicornNumericSeparatorsStyle = []|[{
12201
12316
  binary?: {
@@ -12586,7 +12701,7 @@ type Yoda = []|[("always" | "never")]|[("always" | "never"), {
12586
12701
  onlyEquality?: boolean
12587
12702
  }]
12588
12703
  // Names of all the configs
12589
- type ConfigNames = 'eslint-comments/rules' | 'formatter/setup' | 'imports/rules' | 'javascript/setup' | 'javascript/rules' | 'jsx/setup' | 'jsonc/setup' | 'jsonc/rules' | 'markdown/setup' | 'markdown/processor' | 'markdown/parser' | 'markdown/disables' | 'node/rules' | 'perfectionist/setup' | 'react/setup' | 'react/rules' | 'sort/package-json' | 'stylistic/rules' | 'toml/setup' | 'toml/rules' | 'regexp/rules' | 'typescript/setup' | 'typescript/parser' | 'typescript/rules' | 'unicorn/rules' | 'unocss' | 'yaml/setup' | 'yaml/rules' | 'yaml/pnpm-workspace'
12704
+ type ConfigNames = 'eslint-comments/rules' | 'formatter/setup' | 'imports/rules' | 'javascript/setup' | 'javascript/rules' | 'jsx/setup' | 'jsonc/setup' | 'jsonc/rules' | 'markdown/setup' | 'markdown/processor' | 'markdown/parser' | 'markdown/disables' | 'node/rules' | 'perfectionist/setup' | 'pnpm/package-json' | 'pnpm/pnpm-workspace-yaml' | 'react/setup' | 'react/rules' | 'sort/package-json' | 'stylistic/rules' | 'toml/setup' | 'toml/rules' | 'regexp/rules' | 'typescript/setup' | 'typescript/parser' | 'typescript/rules' | 'unicorn/rules' | 'unocss' | 'yaml/setup' | 'yaml/rules' | 'yaml/pnpm-workspace'
12590
12705
 
12591
12706
  /**
12592
12707
  * Vendor types from Prettier so we don't rely on the dependency.
@@ -12708,7 +12823,8 @@ interface VendoredPrettierOptionsRequired {
12708
12823
  }
12709
12824
 
12710
12825
  type Awaitable<T> = T | Promise<T>;
12711
- type Rules = RuleOptions;
12826
+ interface Rules extends RuleOptions {
12827
+ }
12712
12828
 
12713
12829
  type TypedFlatConfigItem = Omit<Linter.Config<Linter.RulesRecord & Rules>, 'plugins'> & {
12714
12830
  /**
@@ -12938,6 +13054,17 @@ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
12938
13054
  * @default false
12939
13055
  */
12940
13056
  unocss?: boolean | OptionsUnoCSS;
13057
+ /**
13058
+ * Enable pnpm (workspace/catalogs) support.
13059
+ *
13060
+ * Currently it's disabled by default, as it's still experimental.
13061
+ * In the future it will be smartly enabled based on the project usage.
13062
+ *
13063
+ * @see https://github.com/antfu/pnpm-workspace-utils
13064
+ * @experimental
13065
+ * @default false
13066
+ */
13067
+ pnpm?: boolean;
12941
13068
  /**
12942
13069
  * Use external formatters to format files.
12943
13070
  *
@@ -13030,6 +13157,8 @@ declare function node(): Promise<TypedFlatConfigItem[]>;
13030
13157
  */
13031
13158
  declare function perfectionist(): Promise<TypedFlatConfigItem[]>;
13032
13159
 
13160
+ declare function pnpm(): Promise<TypedFlatConfigItem[]>;
13161
+
13033
13162
  declare function react(options?: OptionsTypeScriptParserOptions & OptionsTypeScriptWithTypes & OptionsOverrides & OptionsFiles): Promise<TypedFlatConfigItem[]>;
13034
13163
 
13035
13164
  declare function regexp(options?: OptionsRegExp & OptionsOverrides): Promise<TypedFlatConfigItem[]>;
@@ -13142,4 +13271,4 @@ declare function ensurePackages(packages: (string | undefined)[]): Promise<void>
13142
13271
  declare function isInEditorEnv(): boolean;
13143
13272
  declare function isInGitHooksOrLintStaged(): boolean;
13144
13273
 
13145
- export { type Awaitable, type ConfigNames, GLOB_ALL_SRC, GLOB_CSS, GLOB_EXCLUDE, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVG, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_XML, GLOB_YAML, type OptionsComponentExts, type OptionsConfig, type OptionsFiles, type OptionsFormatters, type OptionsHasTypeScript, type OptionsIsInEditor, type OptionsOverrides, type OptionsProjectType, type OptionsRegExp, type OptionsStylistic, type OptionsTypeScriptParserOptions, type OptionsTypeScriptWithTypes, type OptionsTypescript, type OptionsUnicorn, type OptionsUnoCSS, type ResolvedOptions, type Rules, type StylisticConfig, StylisticConfigDefaults, type StylisticOptions, type TypedFlatConfigItem, combine, comments, config, config as default, defaultPluginRenaming, disables, ensurePackages, formatters, getOverrides, ignores, imports, interopDefault, isInEditorEnv, isInGitHooksOrLintStaged, isPackageInScope, javascript, jsonc, jsx, markdown, node, parserPlain, perfectionist, react, regexp, renameRules, resolveSubOptions, sortPackageJson, sortTsconfig, stylistic, toml, typescript, unicorn, unocss, yaml };
13274
+ export { type Awaitable, type ConfigNames, GLOB_ALL_SRC, GLOB_CSS, GLOB_EXCLUDE, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVG, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_XML, GLOB_YAML, type OptionsComponentExts, type OptionsConfig, type OptionsFiles, type OptionsFormatters, type OptionsHasTypeScript, type OptionsIsInEditor, type OptionsOverrides, type OptionsProjectType, type OptionsRegExp, type OptionsStylistic, type OptionsTypeScriptParserOptions, type OptionsTypeScriptWithTypes, type OptionsTypescript, type OptionsUnicorn, type OptionsUnoCSS, type ResolvedOptions, type Rules, type StylisticConfig, StylisticConfigDefaults, type StylisticOptions, type TypedFlatConfigItem, combine, comments, config, config as default, defaultPluginRenaming, disables, ensurePackages, formatters, getOverrides, ignores, imports, interopDefault, isInEditorEnv, isInGitHooksOrLintStaged, isPackageInScope, javascript, jsonc, jsx, markdown, node, parserPlain, perfectionist, pnpm, react, regexp, renameRules, resolveSubOptions, sortPackageJson, sortTsconfig, stylistic, toml, typescript, unicorn, unocss, yaml };