@jsse/eslint-config 0.4.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -4,7 +4,6 @@ export { parser as parserTs };
4
4
  import * as eslint from 'eslint';
5
5
  import { Linter, Rule } from 'eslint';
6
6
  import { FlatGitignoreOptions } from 'eslint-config-flat-gitignore';
7
- import * as neverthrow from 'neverthrow';
8
7
  import * as _stylistic_eslint_plugin from '@stylistic/eslint-plugin';
9
8
  import * as eslint_plugin_jsdoc from 'eslint-plugin-jsdoc';
10
9
  import * as _eslint_markdown from '@eslint/markdown';
@@ -24,6 +23,7 @@ import * as eslintPluginImportX from 'eslint-plugin-import-x';
24
23
  export { eslintPluginImportX as pluginImport };
25
24
  export { default as pluginN } from 'eslint-plugin-n';
26
25
  export { default as pluginPerfectionist } from 'eslint-plugin-perfectionist';
26
+ export { default as pluginPnpm } from 'eslint-plugin-pnpm';
27
27
  export { default as pluginUnicorn } from 'eslint-plugin-unicorn';
28
28
  export { default as pluginUnusedImports } from 'eslint-plugin-unused-imports';
29
29
 
@@ -1901,6 +1901,7 @@ type FuncStyle =
1901
1901
  "declaration" | "expression",
1902
1902
  {
1903
1903
  allowArrowFunctions?: boolean;
1904
+ allowTypeAnnotation?: boolean;
1904
1905
  overrides?: {
1905
1906
  namedExports?: "declaration" | "expression" | "ignore";
1906
1907
  };
@@ -3010,6 +3011,10 @@ type NoMagicNumbers =
3010
3011
  ignoreArrayIndexes?: boolean;
3011
3012
  ignoreDefaultValues?: boolean;
3012
3013
  ignoreClassFieldInitialValues?: boolean;
3014
+ ignoreEnums?: boolean;
3015
+ ignoreNumericLiteralTypes?: boolean;
3016
+ ignoreReadonlyClassProperties?: boolean;
3017
+ ignoreTypeIndexes?: boolean;
3013
3018
  },
3014
3019
  ];
3015
3020
  // ----- no-misleading-character-class -----
@@ -3326,9 +3331,11 @@ type NoShadow =
3326
3331
  | [
3327
3332
  {
3328
3333
  builtinGlobals?: boolean;
3329
- hoist?: "all" | "functions" | "never";
3334
+ hoist?: "all" | "functions" | "never" | "types" | "functions-and-types";
3330
3335
  allow?: string[];
3331
3336
  ignoreOnInitialization?: boolean;
3337
+ ignoreTypeValueShadow?: boolean;
3338
+ ignoreFunctionTypeParameterNameValueShadow?: boolean;
3332
3339
  },
3333
3340
  ];
3334
3341
  // ----- no-shadow-restricted-names -----
@@ -3466,6 +3473,9 @@ type NoUseBeforeDefine =
3466
3473
  classes?: boolean;
3467
3474
  variables?: boolean;
3468
3475
  allowNamedExports?: boolean;
3476
+ enums?: boolean;
3477
+ typedefs?: boolean;
3478
+ ignoreTypeReferences?: boolean;
3469
3479
  },
3470
3480
  ];
3471
3481
  // ----- no-useless-computed-key -----
@@ -4407,233 +4417,233 @@ interface IgnoresRuleOptions {}
4407
4417
  interface ImportsRuleOptions {
4408
4418
  /**
4409
4419
  * Enforce or ban the use of inline type-only markers for named imports.
4410
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/consistent-type-specifier-style.md
4420
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/consistent-type-specifier-style.md
4411
4421
  */
4412
4422
  "import/consistent-type-specifier-style"?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle$1>;
4413
4423
  /**
4414
4424
  * Ensure a default export is present, given a default import.
4415
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/default.md
4425
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/default.md
4416
4426
  */
4417
4427
  "import/default"?: Linter.RuleEntry<[]>;
4418
4428
  /**
4419
4429
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
4420
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/dynamic-import-chunkname.md
4430
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/dynamic-import-chunkname.md
4421
4431
  */
4422
4432
  "import/dynamic-import-chunkname"?: Linter.RuleEntry<ImportDynamicImportChunkname$1>;
4423
4433
  /**
4424
4434
  * Forbid any invalid exports, i.e. re-export of the same name.
4425
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/export.md
4435
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/export.md
4426
4436
  */
4427
4437
  "import/export"?: Linter.RuleEntry<[]>;
4428
4438
  /**
4429
4439
  * Ensure all exports appear after other statements.
4430
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/exports-last.md
4440
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/exports-last.md
4431
4441
  */
4432
4442
  "import/exports-last"?: Linter.RuleEntry<[]>;
4433
4443
  /**
4434
4444
  * Ensure consistent use of file extension within the import path.
4435
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/extensions.md
4445
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/extensions.md
4436
4446
  */
4437
4447
  "import/extensions"?: Linter.RuleEntry<ImportExtensions$1>;
4438
4448
  /**
4439
4449
  * Ensure all imports appear before other statements.
4440
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/first.md
4450
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/first.md
4441
4451
  */
4442
4452
  "import/first"?: Linter.RuleEntry<ImportFirst$1>;
4443
4453
  /**
4444
4454
  * Prefer named exports to be grouped together in a single export declaration.
4445
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/group-exports.md
4455
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/group-exports.md
4446
4456
  */
4447
4457
  "import/group-exports"?: Linter.RuleEntry<[]>;
4448
4458
  /**
4449
4459
  * Replaced by `import-x/first`.
4450
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/imports-first.md
4460
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/imports-first.md
4451
4461
  * @deprecated
4452
4462
  */
4453
4463
  "import/imports-first"?: Linter.RuleEntry<ImportImportsFirst$1>;
4454
4464
  /**
4455
4465
  * Enforce the maximum number of dependencies a module can have.
4456
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/max-dependencies.md
4466
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/max-dependencies.md
4457
4467
  */
4458
4468
  "import/max-dependencies"?: Linter.RuleEntry<ImportMaxDependencies$1>;
4459
4469
  /**
4460
4470
  * Ensure named imports correspond to a named export in the remote file.
4461
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/named.md
4471
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/named.md
4462
4472
  */
4463
4473
  "import/named"?: Linter.RuleEntry<ImportNamed$1>;
4464
4474
  /**
4465
4475
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
4466
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/namespace.md
4476
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/namespace.md
4467
4477
  */
4468
4478
  "import/namespace"?: Linter.RuleEntry<ImportNamespace$1>;
4469
4479
  /**
4470
4480
  * Enforce a newline after import statements.
4471
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/newline-after-import.md
4481
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/newline-after-import.md
4472
4482
  */
4473
4483
  "import/newline-after-import"?: Linter.RuleEntry<ImportNewlineAfterImport$1>;
4474
4484
  /**
4475
4485
  * Forbid import of modules using absolute paths.
4476
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-absolute-path.md
4486
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-absolute-path.md
4477
4487
  */
4478
4488
  "import/no-absolute-path"?: Linter.RuleEntry<ImportNoAbsolutePath$1>;
4479
4489
  /**
4480
4490
  * Forbid AMD `require` and `define` calls.
4481
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-amd.md
4491
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-amd.md
4482
4492
  */
4483
4493
  "import/no-amd"?: Linter.RuleEntry<[]>;
4484
4494
  /**
4485
4495
  * Forbid anonymous values as default exports.
4486
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-anonymous-default-export.md
4496
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-anonymous-default-export.md
4487
4497
  */
4488
4498
  "import/no-anonymous-default-export"?: Linter.RuleEntry<ImportNoAnonymousDefaultExport$1>;
4489
4499
  /**
4490
4500
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
4491
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-commonjs.md
4501
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-commonjs.md
4492
4502
  */
4493
4503
  "import/no-commonjs"?: Linter.RuleEntry<ImportNoCommonjs$1>;
4494
4504
  /**
4495
4505
  * Forbid a module from importing a module with a dependency path back to itself.
4496
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-cycle.md
4506
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-cycle.md
4497
4507
  */
4498
4508
  "import/no-cycle"?: Linter.RuleEntry<ImportNoCycle$1>;
4499
4509
  /**
4500
4510
  * Forbid default exports.
4501
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-default-export.md
4511
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-default-export.md
4502
4512
  */
4503
4513
  "import/no-default-export"?: Linter.RuleEntry<[]>;
4504
4514
  /**
4505
4515
  * Forbid imported names marked with `@deprecated` documentation tag.
4506
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-deprecated.md
4516
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-deprecated.md
4507
4517
  */
4508
4518
  "import/no-deprecated"?: Linter.RuleEntry<[]>;
4509
4519
  /**
4510
4520
  * Forbid repeated import of the same module in multiple places.
4511
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-duplicates.md
4521
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-duplicates.md
4512
4522
  */
4513
4523
  "import/no-duplicates"?: Linter.RuleEntry<ImportNoDuplicates$1>;
4514
4524
  /**
4515
4525
  * Forbid `require()` calls with expressions.
4516
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-dynamic-require.md
4526
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-dynamic-require.md
4517
4527
  */
4518
4528
  "import/no-dynamic-require"?: Linter.RuleEntry<ImportNoDynamicRequire$1>;
4519
4529
  /**
4520
4530
  * Forbid empty named import blocks.
4521
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-empty-named-blocks.md
4531
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-empty-named-blocks.md
4522
4532
  */
4523
4533
  "import/no-empty-named-blocks"?: Linter.RuleEntry<[]>;
4524
4534
  /**
4525
4535
  * Forbid the use of extraneous packages.
4526
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-extraneous-dependencies.md
4536
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-extraneous-dependencies.md
4527
4537
  */
4528
4538
  "import/no-extraneous-dependencies"?: Linter.RuleEntry<ImportNoExtraneousDependencies$1>;
4529
4539
  /**
4530
4540
  * Forbid import statements with CommonJS module.exports.
4531
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-import-module-exports.md
4541
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-import-module-exports.md
4532
4542
  */
4533
4543
  "import/no-import-module-exports"?: Linter.RuleEntry<ImportNoImportModuleExports$1>;
4534
4544
  /**
4535
4545
  * Forbid importing the submodules of other modules.
4536
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-internal-modules.md
4546
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-internal-modules.md
4537
4547
  */
4538
4548
  "import/no-internal-modules"?: Linter.RuleEntry<ImportNoInternalModules$1>;
4539
4549
  /**
4540
4550
  * Forbid the use of mutable exports with `var` or `let`.
4541
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-mutable-exports.md
4551
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-mutable-exports.md
4542
4552
  */
4543
4553
  "import/no-mutable-exports"?: Linter.RuleEntry<[]>;
4544
4554
  /**
4545
4555
  * Forbid use of exported name as identifier of default export.
4546
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-as-default.md
4556
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-named-as-default.md
4547
4557
  */
4548
4558
  "import/no-named-as-default"?: Linter.RuleEntry<[]>;
4549
4559
  /**
4550
4560
  * Forbid use of exported name as property of default export.
4551
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-as-default-member.md
4561
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-named-as-default-member.md
4552
4562
  */
4553
4563
  "import/no-named-as-default-member"?: Linter.RuleEntry<[]>;
4554
4564
  /**
4555
4565
  * Forbid named default exports.
4556
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-default.md
4566
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-named-default.md
4557
4567
  */
4558
4568
  "import/no-named-default"?: Linter.RuleEntry<[]>;
4559
4569
  /**
4560
4570
  * Forbid named exports.
4561
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-export.md
4571
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-named-export.md
4562
4572
  */
4563
4573
  "import/no-named-export"?: Linter.RuleEntry<[]>;
4564
4574
  /**
4565
4575
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
4566
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-namespace.md
4576
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-namespace.md
4567
4577
  */
4568
4578
  "import/no-namespace"?: Linter.RuleEntry<ImportNoNamespace$1>;
4569
4579
  /**
4570
4580
  * Forbid Node.js builtin modules.
4571
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-nodejs-modules.md
4581
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-nodejs-modules.md
4572
4582
  */
4573
4583
  "import/no-nodejs-modules"?: Linter.RuleEntry<ImportNoNodejsModules$1>;
4574
4584
  /**
4575
4585
  * Forbid importing packages through relative paths.
4576
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-relative-packages.md
4586
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-relative-packages.md
4577
4587
  */
4578
4588
  "import/no-relative-packages"?: Linter.RuleEntry<ImportNoRelativePackages$1>;
4579
4589
  /**
4580
4590
  * Forbid importing modules from parent directories.
4581
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-relative-parent-imports.md
4591
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-relative-parent-imports.md
4582
4592
  */
4583
4593
  "import/no-relative-parent-imports"?: Linter.RuleEntry<ImportNoRelativeParentImports$1>;
4584
4594
  /**
4585
4595
  * Forbid importing a default export by a different name.
4586
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-rename-default.md
4596
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-rename-default.md
4587
4597
  */
4588
4598
  "import/no-rename-default"?: Linter.RuleEntry<ImportNoRenameDefault$1>;
4589
4599
  /**
4590
4600
  * Enforce which files can be imported in a given folder.
4591
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-restricted-paths.md
4601
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-restricted-paths.md
4592
4602
  */
4593
4603
  "import/no-restricted-paths"?: Linter.RuleEntry<ImportNoRestrictedPaths$1>;
4594
4604
  /**
4595
4605
  * Forbid a module from importing itself.
4596
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-self-import.md
4606
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-self-import.md
4597
4607
  */
4598
4608
  "import/no-self-import"?: Linter.RuleEntry<[]>;
4599
4609
  /**
4600
4610
  * Forbid unassigned imports.
4601
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-unassigned-import.md
4611
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-unassigned-import.md
4602
4612
  */
4603
4613
  "import/no-unassigned-import"?: Linter.RuleEntry<ImportNoUnassignedImport$1>;
4604
4614
  /**
4605
4615
  * Ensure imports point to a file/module that can be resolved.
4606
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-unresolved.md
4616
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-unresolved.md
4607
4617
  */
4608
4618
  "import/no-unresolved"?: Linter.RuleEntry<ImportNoUnresolved$1>;
4609
4619
  /**
4610
4620
  * Forbid modules without exports, or exports without matching import in another module.
4611
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-unused-modules.md
4621
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-unused-modules.md
4612
4622
  */
4613
4623
  "import/no-unused-modules"?: Linter.RuleEntry<ImportNoUnusedModules$1>;
4614
4624
  /**
4615
4625
  * Forbid unnecessary path segments in import and require statements.
4616
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-useless-path-segments.md
4626
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-useless-path-segments.md
4617
4627
  */
4618
4628
  "import/no-useless-path-segments"?: Linter.RuleEntry<ImportNoUselessPathSegments$1>;
4619
4629
  /**
4620
4630
  * Forbid webpack loader syntax in imports.
4621
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-webpack-loader-syntax.md
4631
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-webpack-loader-syntax.md
4622
4632
  */
4623
4633
  "import/no-webpack-loader-syntax"?: Linter.RuleEntry<[]>;
4624
4634
  /**
4625
4635
  * Enforce a convention in module import order.
4626
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/order.md
4636
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/order.md
4627
4637
  */
4628
4638
  "import/order"?: Linter.RuleEntry<ImportOrder$1>;
4629
4639
  /**
4630
4640
  * Prefer a default export if module exports a single name or multiple names.
4631
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/prefer-default-export.md
4641
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/prefer-default-export.md
4632
4642
  */
4633
4643
  "import/prefer-default-export"?: Linter.RuleEntry<ImportPreferDefaultExport$1>;
4634
4644
  /**
4635
4645
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
4636
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/unambiguous.md
4646
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/unambiguous.md
4637
4647
  */
4638
4648
  "import/unambiguous"?: Linter.RuleEntry<[]>;
4639
4649
  }
@@ -5464,10 +5474,10 @@ type JsdocCheckLineAlignment =
5464
5474
  postTag?: number;
5465
5475
  postType?: number;
5466
5476
  };
5477
+ disableWrapIndent?: boolean;
5467
5478
  preserveMainDescriptionPostDelimiter?: boolean;
5468
5479
  tags?: string[];
5469
5480
  wrapIndent?: string;
5470
- disableWrapIndent?: boolean;
5471
5481
  },
5472
5482
  ];
5473
5483
  // ----- jsdoc/check-param-names -----
@@ -6808,11 +6818,26 @@ interface MarkdownRuleOptions {
6808
6818
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/heading-increment.md
6809
6819
  */
6810
6820
  "markdown/heading-increment"?: Linter.RuleEntry<[]>;
6821
+ /**
6822
+ * Disallow duplicate definitions
6823
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-duplicate-definitions.md
6824
+ */
6825
+ "markdown/no-duplicate-definitions"?: Linter.RuleEntry<MarkdownNoDuplicateDefinitions>;
6811
6826
  /**
6812
6827
  * Disallow duplicate headings in the same document
6813
6828
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-duplicate-headings.md
6814
6829
  */
6815
6830
  "markdown/no-duplicate-headings"?: Linter.RuleEntry<[]>;
6831
+ /**
6832
+ * Disallow empty definitions
6833
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-empty-definitions.md
6834
+ */
6835
+ "markdown/no-empty-definitions"?: Linter.RuleEntry<[]>;
6836
+ /**
6837
+ * Disallow empty images
6838
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-empty-images.md
6839
+ */
6840
+ "markdown/no-empty-images"?: Linter.RuleEntry<[]>;
6816
6841
  /**
6817
6842
  * Disallow empty links
6818
6843
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-empty-links.md
@@ -6828,11 +6853,31 @@ interface MarkdownRuleOptions {
6828
6853
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-invalid-label-refs.md
6829
6854
  */
6830
6855
  "markdown/no-invalid-label-refs"?: Linter.RuleEntry<[]>;
6856
+ /**
6857
+ * Disallow headings without a space after the hash characters
6858
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-atx-heading-space.md
6859
+ */
6860
+ "markdown/no-missing-atx-heading-space"?: Linter.RuleEntry<[]>;
6831
6861
  /**
6832
6862
  * Disallow missing label references
6833
6863
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-label-refs.md
6834
6864
  */
6835
6865
  "markdown/no-missing-label-refs"?: Linter.RuleEntry<[]>;
6866
+ /**
6867
+ * Disallow multiple H1 headings in the same document
6868
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-multiple-h1.md
6869
+ */
6870
+ "markdown/no-multiple-h1"?: Linter.RuleEntry<MarkdownNoMultipleH1>;
6871
+ /**
6872
+ * Require alternative text for images
6873
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/require-alt-text.md
6874
+ */
6875
+ "markdown/require-alt-text"?: Linter.RuleEntry<[]>;
6876
+ /**
6877
+ * Disallow data rows in a GitHub Flavored Markdown table from having more cells than the header row
6878
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/table-column-count.md
6879
+ */
6880
+ "markdown/table-column-count"?: Linter.RuleEntry<[]>;
6836
6881
  }
6837
6882
 
6838
6883
  /* ======= Declarations ======= */
@@ -6844,6 +6889,15 @@ type MarkdownFencedCodeLanguage =
6844
6889
  required?: string[];
6845
6890
  },
6846
6891
  ];
6892
+ // ----- markdown/no-duplicate-definitions -----
6893
+ type MarkdownNoDuplicateDefinitions =
6894
+ | []
6895
+ | [
6896
+ {
6897
+ allowDefinitions?: string[];
6898
+ allowFootnoteDefinitions?: string[];
6899
+ },
6900
+ ];
6847
6901
  // ----- markdown/no-html -----
6848
6902
  type MarkdownNoHtml =
6849
6903
  | []
@@ -6852,6 +6906,14 @@ type MarkdownNoHtml =
6852
6906
  allowed?: string[];
6853
6907
  },
6854
6908
  ];
6909
+ // ----- markdown/no-multiple-h1 -----
6910
+ type MarkdownNoMultipleH1 =
6911
+ | []
6912
+ | [
6913
+ {
6914
+ frontmatterTitle?: string;
6915
+ },
6916
+ ];
6855
6917
 
6856
6918
  /* eslint-disable */
6857
6919
  /* prettier-ignore */
@@ -6969,6 +7031,11 @@ interface NRuleOptions {
6969
7031
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-sync.md
6970
7032
  */
6971
7033
  "n/no-sync"?: Linter.RuleEntry<NNoSync>;
7034
+ /**
7035
+ * disallow top-level `await` in published modules
7036
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-top-level-await.md
7037
+ */
7038
+ "n/no-top-level-await"?: Linter.RuleEntry<NNoTopLevelAwait>;
6972
7039
  /**
6973
7040
  * disallow `bin` files that npm ignores
6974
7041
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-unpublished-bin.md
@@ -7440,7 +7507,49 @@ type NNoSync =
7440
7507
  | [
7441
7508
  {
7442
7509
  allowAtRootLevel?: boolean;
7443
- ignores?: string[];
7510
+ ignores?: (
7511
+ | string
7512
+ | {
7513
+ from?: "file";
7514
+ path?: string;
7515
+ name?: string[];
7516
+ }
7517
+ | {
7518
+ from?: "lib";
7519
+ name?: string[];
7520
+ }
7521
+ | {
7522
+ from?: "package";
7523
+ package?: string;
7524
+ name?: string[];
7525
+ }
7526
+ )[];
7527
+ },
7528
+ ];
7529
+ // ----- n/no-top-level-await -----
7530
+ type NNoTopLevelAwait =
7531
+ | []
7532
+ | [
7533
+ {
7534
+ ignoreBin?: boolean;
7535
+ convertPath?:
7536
+ | {
7537
+ [k: string]: [string, string];
7538
+ }
7539
+ | [
7540
+ {
7541
+ include: [string, ...string[]];
7542
+ exclude?: string[];
7543
+
7544
+ replace: [string, string];
7545
+ },
7546
+ ...{
7547
+ include: [string, ...string[]];
7548
+ exclude?: string[];
7549
+
7550
+ replace: [string, string];
7551
+ }[],
7552
+ ];
7444
7553
  },
7445
7554
  ];
7446
7555
  // ----- n/no-unpublished-bin -----
@@ -10327,7 +10436,9 @@ type PerfectionistSortArrayIncludes = {
10327
10436
  | string
10328
10437
  | string[]
10329
10438
  | {
10330
- newlinesBetween: "ignore" | "always" | "never";
10439
+ newlinesBetween?: "ignore" | "always" | "never";
10440
+
10441
+ commentAbove?: string;
10331
10442
  }
10332
10443
  )[];
10333
10444
  }[];
@@ -10666,7 +10777,9 @@ type PerfectionistSortClasses =
10666
10777
  | string
10667
10778
  | string[]
10668
10779
  | {
10669
- newlinesBetween: "ignore" | "always" | "never";
10780
+ newlinesBetween?: "ignore" | "always" | "never";
10781
+
10782
+ commentAbove?: string;
10670
10783
  }
10671
10784
  )[];
10672
10785
  },
@@ -10786,7 +10899,9 @@ type PerfectionistSortDecorators =
10786
10899
  | string
10787
10900
  | string[]
10788
10901
  | {
10789
- newlinesBetween: "ignore" | "always" | "never";
10902
+ newlinesBetween?: "ignore" | "always" | "never";
10903
+
10904
+ commentAbove?: string;
10790
10905
  }
10791
10906
  )[];
10792
10907
  },
@@ -11029,7 +11144,9 @@ type PerfectionistSortEnums =
11029
11144
  | string
11030
11145
  | string[]
11031
11146
  | {
11032
- newlinesBetween: "ignore" | "always" | "never";
11147
+ newlinesBetween?: "ignore" | "always" | "never";
11148
+
11149
+ commentAbove?: string;
11033
11150
  }
11034
11151
  )[];
11035
11152
  },
@@ -11226,7 +11343,9 @@ type PerfectionistSortExports = {
11226
11343
  | string
11227
11344
  | string[]
11228
11345
  | {
11229
- newlinesBetween: "ignore" | "always" | "never";
11346
+ newlinesBetween?: "ignore" | "always" | "never";
11347
+
11348
+ commentAbove?: string;
11230
11349
  }
11231
11350
  )[];
11232
11351
  }[];
@@ -11271,7 +11390,9 @@ type PerfectionistSortHeritageClauses =
11271
11390
  | string
11272
11391
  | string[]
11273
11392
  | {
11274
- newlinesBetween: "ignore" | "always" | "never";
11393
+ newlinesBetween?: "ignore" | "always" | "never";
11394
+
11395
+ commentAbove?: string;
11275
11396
  }
11276
11397
  )[];
11277
11398
  },
@@ -11482,6 +11603,11 @@ type PerfectionistSortImports = {
11482
11603
  );
11483
11604
  }
11484
11605
  )[];
11606
+ tsconfig?: {
11607
+ rootDir: string;
11608
+
11609
+ filename?: string;
11610
+ };
11485
11611
 
11486
11612
  maxLineLength?: number;
11487
11613
 
@@ -11581,7 +11707,9 @@ type PerfectionistSortImports = {
11581
11707
  | string
11582
11708
  | string[]
11583
11709
  | {
11584
- newlinesBetween: "ignore" | "always" | "never";
11710
+ newlinesBetween?: "ignore" | "always" | "never";
11711
+
11712
+ commentAbove?: string;
11585
11713
  }
11586
11714
  )[];
11587
11715
  }[];
@@ -11888,7 +12016,9 @@ type PerfectionistSortInterfaces = {
11888
12016
  | string
11889
12017
  | string[]
11890
12018
  | {
11891
- newlinesBetween: "ignore" | "always" | "never";
12019
+ newlinesBetween?: "ignore" | "always" | "never";
12020
+
12021
+ commentAbove?: string;
11892
12022
  }
11893
12023
  )[];
11894
12024
  }[];
@@ -12102,7 +12232,9 @@ type PerfectionistSortIntersectionTypes = {
12102
12232
  | string
12103
12233
  | string[]
12104
12234
  | {
12105
- newlinesBetween: "ignore" | "always" | "never";
12235
+ newlinesBetween?: "ignore" | "always" | "never";
12236
+
12237
+ commentAbove?: string;
12106
12238
  }
12107
12239
  )[];
12108
12240
  }[];
@@ -12327,7 +12459,9 @@ type PerfectionistSortJsxProps = {
12327
12459
  | string
12328
12460
  | string[]
12329
12461
  | {
12330
- newlinesBetween: "ignore" | "always" | "never";
12462
+ newlinesBetween?: "ignore" | "always" | "never";
12463
+
12464
+ commentAbove?: string;
12331
12465
  }
12332
12466
  )[];
12333
12467
  }[];
@@ -12533,7 +12667,9 @@ type PerfectionistSortMaps = {
12533
12667
  | string
12534
12668
  | string[]
12535
12669
  | {
12536
- newlinesBetween: "ignore" | "always" | "never";
12670
+ newlinesBetween?: "ignore" | "always" | "never";
12671
+
12672
+ commentAbove?: string;
12537
12673
  }
12538
12674
  )[];
12539
12675
  }[];
@@ -12788,7 +12924,9 @@ type PerfectionistSortModules =
12788
12924
  | string
12789
12925
  | string[]
12790
12926
  | {
12791
- newlinesBetween: "ignore" | "always" | "never";
12927
+ newlinesBetween?: "ignore" | "always" | "never";
12928
+
12929
+ commentAbove?: string;
12792
12930
  }
12793
12931
  )[];
12794
12932
  },
@@ -12987,7 +13125,9 @@ type PerfectionistSortNamedExports = {
12987
13125
  | string
12988
13126
  | string[]
12989
13127
  | {
12990
- newlinesBetween: "ignore" | "always" | "never";
13128
+ newlinesBetween?: "ignore" | "always" | "never";
13129
+
13130
+ commentAbove?: string;
12991
13131
  }
12992
13132
  )[];
12993
13133
  }[];
@@ -13185,7 +13325,9 @@ type PerfectionistSortNamedImports = {
13185
13325
  | string
13186
13326
  | string[]
13187
13327
  | {
13188
- newlinesBetween: "ignore" | "always" | "never";
13328
+ newlinesBetween?: "ignore" | "always" | "never";
13329
+
13330
+ commentAbove?: string;
13189
13331
  }
13190
13332
  )[];
13191
13333
  }[];
@@ -13492,7 +13634,9 @@ type PerfectionistSortObjectTypes = {
13492
13634
  | string
13493
13635
  | string[]
13494
13636
  | {
13495
- newlinesBetween: "ignore" | "always" | "never";
13637
+ newlinesBetween?: "ignore" | "always" | "never";
13638
+
13639
+ commentAbove?: string;
13496
13640
  }
13497
13641
  )[];
13498
13642
  }[];
@@ -13793,7 +13937,9 @@ type PerfectionistSortObjects = {
13793
13937
  | string
13794
13938
  | string[]
13795
13939
  | {
13796
- newlinesBetween: "ignore" | "always" | "never";
13940
+ newlinesBetween?: "ignore" | "always" | "never";
13941
+
13942
+ commentAbove?: string;
13797
13943
  }
13798
13944
  )[];
13799
13945
  }[];
@@ -14005,7 +14151,9 @@ type PerfectionistSortSets = {
14005
14151
  | string
14006
14152
  | string[]
14007
14153
  | {
14008
- newlinesBetween: "ignore" | "always" | "never";
14154
+ newlinesBetween?: "ignore" | "always" | "never";
14155
+
14156
+ commentAbove?: string;
14009
14157
  }
14010
14158
  )[];
14011
14159
  }[];
@@ -14253,7 +14401,9 @@ type PerfectionistSortUnionTypes = {
14253
14401
  | string
14254
14402
  | string[]
14255
14403
  | {
14256
- newlinesBetween: "ignore" | "always" | "never";
14404
+ newlinesBetween?: "ignore" | "always" | "never";
14405
+
14406
+ commentAbove?: string;
14257
14407
  }
14258
14408
  )[];
14259
14409
  }[];
@@ -14456,7 +14606,9 @@ type PerfectionistSortVariableDeclarations =
14456
14606
  | string
14457
14607
  | string[]
14458
14608
  | {
14459
- newlinesBetween: "ignore" | "always" | "never";
14609
+ newlinesBetween?: "ignore" | "always" | "never";
14610
+
14611
+ commentAbove?: string;
14460
14612
  }
14461
14613
  )[];
14462
14614
  },
@@ -14466,6 +14618,90 @@ type PerfectionistSortVariableDeclarations =
14466
14618
  /* prettier-ignore */
14467
14619
 
14468
14620
 
14621
+ interface PnpmRuleOptions {
14622
+ /**
14623
+ * Enforce using "catalog:" in `package.json`
14624
+ * @see https://github.com/antfu/eslint-plugin-pnpm/blob/main/src/rules/json-enforce-catalog.test.ts
14625
+ */
14626
+ "pnpm/json-enforce-catalog"?: Linter.RuleEntry<PnpmJsonEnforceCatalog>;
14627
+ /**
14628
+ * 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.
14629
+ * @see https://github.com/antfu/eslint-plugin-pnpm/blob/main/src/rules/json-prefer-workspace-settings.test.ts
14630
+ */
14631
+ "pnpm/json-prefer-workspace-settings"?: Linter.RuleEntry<PnpmJsonPreferWorkspaceSettings>;
14632
+ /**
14633
+ * Enforce using valid catalog in `package.json`
14634
+ * @see https://github.com/antfu/eslint-plugin-pnpm/blob/main/src/rules/json-valid-catalog.test.ts
14635
+ */
14636
+ "pnpm/json-valid-catalog"?: Linter.RuleEntry<PnpmJsonValidCatalog>;
14637
+ /**
14638
+ * Disallow unused catalogs in `pnpm-workspace.yaml`
14639
+ * @see https://github.com/antfu/eslint-plugin-pnpm/blob/main/src/rules/yaml-no-duplicate-catalog-item.test.ts
14640
+ */
14641
+ "pnpm/yaml-no-duplicate-catalog-item"?: Linter.RuleEntry<PnpmYamlNoDuplicateCatalogItem>;
14642
+ /**
14643
+ * Disallow unused catalogs in `pnpm-workspace.yaml`
14644
+ * @see https://github.com/antfu/eslint-plugin-pnpm/blob/main/src/rules/yaml-no-unused-catalog-item.test.ts
14645
+ */
14646
+ "pnpm/yaml-no-unused-catalog-item"?: Linter.RuleEntry<[]>;
14647
+ }
14648
+
14649
+ /* ======= Declarations ======= */
14650
+ // ----- pnpm/json-enforce-catalog -----
14651
+ type PnpmJsonEnforceCatalog =
14652
+ | []
14653
+ | [
14654
+ {
14655
+ allowedProtocols?: string[];
14656
+
14657
+ autofix?: boolean;
14658
+
14659
+ defaultCatalog?: string;
14660
+
14661
+ reuseExistingCatalog?: boolean;
14662
+
14663
+ conflicts?: "new-catalog" | "overrides" | "error";
14664
+
14665
+ fields?: string[];
14666
+ },
14667
+ ];
14668
+ // ----- pnpm/json-prefer-workspace-settings -----
14669
+ type PnpmJsonPreferWorkspaceSettings =
14670
+ | []
14671
+ | [
14672
+ {
14673
+ autofix?: boolean;
14674
+ },
14675
+ ];
14676
+ // ----- pnpm/json-valid-catalog -----
14677
+ type PnpmJsonValidCatalog =
14678
+ | []
14679
+ | [
14680
+ {
14681
+ autoInsert?: boolean;
14682
+
14683
+ autoInsertDefaultSpecifier?: string;
14684
+
14685
+ autofix?: boolean;
14686
+
14687
+ enforceNoConflict?: boolean;
14688
+
14689
+ fields?: unknown[];
14690
+ },
14691
+ ];
14692
+ // ----- pnpm/yaml-no-duplicate-catalog-item -----
14693
+ type PnpmYamlNoDuplicateCatalogItem =
14694
+ | []
14695
+ | [
14696
+ {
14697
+ allow?: string[];
14698
+ },
14699
+ ];
14700
+
14701
+ /* eslint-disable */
14702
+ /* prettier-ignore */
14703
+
14704
+
14469
14705
  interface PrettierRuleOptions {}
14470
14706
 
14471
14707
  /* eslint-disable */
@@ -17023,6 +17259,7 @@ type StylisticJsxSortProps =
17023
17259
  ignoreCase?: boolean;
17024
17260
  noSortAlphabetically?: boolean;
17025
17261
  reservedFirst?: unknown[] | boolean;
17262
+ reservedLast?: unknown[];
17026
17263
  locale?: string;
17027
17264
  },
17028
17265
  ];
@@ -17150,18 +17387,6 @@ type StylisticKeywordSpacing =
17150
17387
  before?: boolean;
17151
17388
  after?: boolean;
17152
17389
  };
17153
- as?: {
17154
- before?: boolean;
17155
- after?: boolean;
17156
- };
17157
- async?: {
17158
- before?: boolean;
17159
- after?: boolean;
17160
- };
17161
- await?: {
17162
- before?: boolean;
17163
- after?: boolean;
17164
- };
17165
17390
  boolean?: {
17166
17391
  before?: boolean;
17167
17392
  after?: boolean;
@@ -17254,18 +17479,10 @@ type StylisticKeywordSpacing =
17254
17479
  before?: boolean;
17255
17480
  after?: boolean;
17256
17481
  };
17257
- from?: {
17258
- before?: boolean;
17259
- after?: boolean;
17260
- };
17261
17482
  function?: {
17262
17483
  before?: boolean;
17263
17484
  after?: boolean;
17264
17485
  };
17265
- get?: {
17266
- before?: boolean;
17267
- after?: boolean;
17268
- };
17269
17486
  goto?: {
17270
17487
  before?: boolean;
17271
17488
  after?: boolean;
@@ -17298,10 +17515,6 @@ type StylisticKeywordSpacing =
17298
17515
  before?: boolean;
17299
17516
  after?: boolean;
17300
17517
  };
17301
- let?: {
17302
- before?: boolean;
17303
- after?: boolean;
17304
- };
17305
17518
  long?: {
17306
17519
  before?: boolean;
17307
17520
  after?: boolean;
@@ -17318,10 +17531,6 @@ type StylisticKeywordSpacing =
17318
17531
  before?: boolean;
17319
17532
  after?: boolean;
17320
17533
  };
17321
- of?: {
17322
- before?: boolean;
17323
- after?: boolean;
17324
- };
17325
17534
  package?: {
17326
17535
  before?: boolean;
17327
17536
  after?: boolean;
@@ -17342,14 +17551,6 @@ type StylisticKeywordSpacing =
17342
17551
  before?: boolean;
17343
17552
  after?: boolean;
17344
17553
  };
17345
- satisfies?: {
17346
- before?: boolean;
17347
- after?: boolean;
17348
- };
17349
- set?: {
17350
- before?: boolean;
17351
- after?: boolean;
17352
- };
17353
17554
  short?: {
17354
17555
  before?: boolean;
17355
17556
  after?: boolean;
@@ -17418,6 +17619,42 @@ type StylisticKeywordSpacing =
17418
17619
  before?: boolean;
17419
17620
  after?: boolean;
17420
17621
  };
17622
+ as?: {
17623
+ before?: boolean;
17624
+ after?: boolean;
17625
+ };
17626
+ async?: {
17627
+ before?: boolean;
17628
+ after?: boolean;
17629
+ };
17630
+ await?: {
17631
+ before?: boolean;
17632
+ after?: boolean;
17633
+ };
17634
+ from?: {
17635
+ before?: boolean;
17636
+ after?: boolean;
17637
+ };
17638
+ get?: {
17639
+ before?: boolean;
17640
+ after?: boolean;
17641
+ };
17642
+ let?: {
17643
+ before?: boolean;
17644
+ after?: boolean;
17645
+ };
17646
+ of?: {
17647
+ before?: boolean;
17648
+ after?: boolean;
17649
+ };
17650
+ satisfies?: {
17651
+ before?: boolean;
17652
+ after?: boolean;
17653
+ };
17654
+ set?: {
17655
+ before?: boolean;
17656
+ after?: boolean;
17657
+ };
17421
17658
  yield?: {
17422
17659
  before?: boolean;
17423
17660
  after?: boolean;
@@ -19342,6 +19579,7 @@ interface TypescriptRuleOptions {
19342
19579
  /**
19343
19580
  * Require type annotations in certain places
19344
19581
  * @see https://typescript-eslint.io/rules/typedef
19582
+ * @deprecated
19345
19583
  */
19346
19584
  "@typescript-eslint/typedef"?: Linter.RuleEntry<TypescriptEslintTypedef>;
19347
19585
  /**
@@ -19363,233 +19601,233 @@ interface TypescriptRuleOptions {
19363
19601
  >;
19364
19602
  /**
19365
19603
  * Enforce or ban the use of inline type-only markers for named imports.
19366
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/consistent-type-specifier-style.md
19604
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/consistent-type-specifier-style.md
19367
19605
  */
19368
19606
  "import/consistent-type-specifier-style"?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>;
19369
19607
  /**
19370
19608
  * Ensure a default export is present, given a default import.
19371
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/default.md
19609
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/default.md
19372
19610
  */
19373
19611
  "import/default"?: Linter.RuleEntry<[]>;
19374
19612
  /**
19375
19613
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
19376
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/dynamic-import-chunkname.md
19614
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/dynamic-import-chunkname.md
19377
19615
  */
19378
19616
  "import/dynamic-import-chunkname"?: Linter.RuleEntry<ImportDynamicImportChunkname>;
19379
19617
  /**
19380
19618
  * Forbid any invalid exports, i.e. re-export of the same name.
19381
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/export.md
19619
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/export.md
19382
19620
  */
19383
19621
  "import/export"?: Linter.RuleEntry<[]>;
19384
19622
  /**
19385
19623
  * Ensure all exports appear after other statements.
19386
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/exports-last.md
19624
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/exports-last.md
19387
19625
  */
19388
19626
  "import/exports-last"?: Linter.RuleEntry<[]>;
19389
19627
  /**
19390
19628
  * Ensure consistent use of file extension within the import path.
19391
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/extensions.md
19629
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/extensions.md
19392
19630
  */
19393
19631
  "import/extensions"?: Linter.RuleEntry<ImportExtensions>;
19394
19632
  /**
19395
19633
  * Ensure all imports appear before other statements.
19396
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/first.md
19634
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/first.md
19397
19635
  */
19398
19636
  "import/first"?: Linter.RuleEntry<ImportFirst>;
19399
19637
  /**
19400
19638
  * Prefer named exports to be grouped together in a single export declaration.
19401
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/group-exports.md
19639
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/group-exports.md
19402
19640
  */
19403
19641
  "import/group-exports"?: Linter.RuleEntry<[]>;
19404
19642
  /**
19405
19643
  * Replaced by `import-x/first`.
19406
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/imports-first.md
19644
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/imports-first.md
19407
19645
  * @deprecated
19408
19646
  */
19409
19647
  "import/imports-first"?: Linter.RuleEntry<ImportImportsFirst>;
19410
19648
  /**
19411
19649
  * Enforce the maximum number of dependencies a module can have.
19412
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/max-dependencies.md
19650
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/max-dependencies.md
19413
19651
  */
19414
19652
  "import/max-dependencies"?: Linter.RuleEntry<ImportMaxDependencies>;
19415
19653
  /**
19416
19654
  * Ensure named imports correspond to a named export in the remote file.
19417
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/named.md
19655
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/named.md
19418
19656
  */
19419
19657
  "import/named"?: Linter.RuleEntry<ImportNamed>;
19420
19658
  /**
19421
19659
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
19422
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/namespace.md
19660
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/namespace.md
19423
19661
  */
19424
19662
  "import/namespace"?: Linter.RuleEntry<ImportNamespace>;
19425
19663
  /**
19426
19664
  * Enforce a newline after import statements.
19427
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/newline-after-import.md
19665
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/newline-after-import.md
19428
19666
  */
19429
19667
  "import/newline-after-import"?: Linter.RuleEntry<ImportNewlineAfterImport>;
19430
19668
  /**
19431
19669
  * Forbid import of modules using absolute paths.
19432
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-absolute-path.md
19670
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-absolute-path.md
19433
19671
  */
19434
19672
  "import/no-absolute-path"?: Linter.RuleEntry<ImportNoAbsolutePath>;
19435
19673
  /**
19436
19674
  * Forbid AMD `require` and `define` calls.
19437
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-amd.md
19675
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-amd.md
19438
19676
  */
19439
19677
  "import/no-amd"?: Linter.RuleEntry<[]>;
19440
19678
  /**
19441
19679
  * Forbid anonymous values as default exports.
19442
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-anonymous-default-export.md
19680
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-anonymous-default-export.md
19443
19681
  */
19444
19682
  "import/no-anonymous-default-export"?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>;
19445
19683
  /**
19446
19684
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
19447
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-commonjs.md
19685
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-commonjs.md
19448
19686
  */
19449
19687
  "import/no-commonjs"?: Linter.RuleEntry<ImportNoCommonjs>;
19450
19688
  /**
19451
19689
  * Forbid a module from importing a module with a dependency path back to itself.
19452
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-cycle.md
19690
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-cycle.md
19453
19691
  */
19454
19692
  "import/no-cycle"?: Linter.RuleEntry<ImportNoCycle>;
19455
19693
  /**
19456
19694
  * Forbid default exports.
19457
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-default-export.md
19695
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-default-export.md
19458
19696
  */
19459
19697
  "import/no-default-export"?: Linter.RuleEntry<[]>;
19460
19698
  /**
19461
19699
  * Forbid imported names marked with `@deprecated` documentation tag.
19462
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-deprecated.md
19700
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-deprecated.md
19463
19701
  */
19464
19702
  "import/no-deprecated"?: Linter.RuleEntry<[]>;
19465
19703
  /**
19466
19704
  * Forbid repeated import of the same module in multiple places.
19467
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-duplicates.md
19705
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-duplicates.md
19468
19706
  */
19469
19707
  "import/no-duplicates"?: Linter.RuleEntry<ImportNoDuplicates>;
19470
19708
  /**
19471
19709
  * Forbid `require()` calls with expressions.
19472
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-dynamic-require.md
19710
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-dynamic-require.md
19473
19711
  */
19474
19712
  "import/no-dynamic-require"?: Linter.RuleEntry<ImportNoDynamicRequire>;
19475
19713
  /**
19476
19714
  * Forbid empty named import blocks.
19477
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-empty-named-blocks.md
19715
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-empty-named-blocks.md
19478
19716
  */
19479
19717
  "import/no-empty-named-blocks"?: Linter.RuleEntry<[]>;
19480
19718
  /**
19481
19719
  * Forbid the use of extraneous packages.
19482
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-extraneous-dependencies.md
19720
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-extraneous-dependencies.md
19483
19721
  */
19484
19722
  "import/no-extraneous-dependencies"?: Linter.RuleEntry<ImportNoExtraneousDependencies>;
19485
19723
  /**
19486
19724
  * Forbid import statements with CommonJS module.exports.
19487
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-import-module-exports.md
19725
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-import-module-exports.md
19488
19726
  */
19489
19727
  "import/no-import-module-exports"?: Linter.RuleEntry<ImportNoImportModuleExports>;
19490
19728
  /**
19491
19729
  * Forbid importing the submodules of other modules.
19492
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-internal-modules.md
19730
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-internal-modules.md
19493
19731
  */
19494
19732
  "import/no-internal-modules"?: Linter.RuleEntry<ImportNoInternalModules>;
19495
19733
  /**
19496
19734
  * Forbid the use of mutable exports with `var` or `let`.
19497
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-mutable-exports.md
19735
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-mutable-exports.md
19498
19736
  */
19499
19737
  "import/no-mutable-exports"?: Linter.RuleEntry<[]>;
19500
19738
  /**
19501
19739
  * Forbid use of exported name as identifier of default export.
19502
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-as-default.md
19740
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-named-as-default.md
19503
19741
  */
19504
19742
  "import/no-named-as-default"?: Linter.RuleEntry<[]>;
19505
19743
  /**
19506
19744
  * Forbid use of exported name as property of default export.
19507
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-as-default-member.md
19745
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-named-as-default-member.md
19508
19746
  */
19509
19747
  "import/no-named-as-default-member"?: Linter.RuleEntry<[]>;
19510
19748
  /**
19511
19749
  * Forbid named default exports.
19512
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-default.md
19750
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-named-default.md
19513
19751
  */
19514
19752
  "import/no-named-default"?: Linter.RuleEntry<[]>;
19515
19753
  /**
19516
19754
  * Forbid named exports.
19517
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-export.md
19755
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-named-export.md
19518
19756
  */
19519
19757
  "import/no-named-export"?: Linter.RuleEntry<[]>;
19520
19758
  /**
19521
19759
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
19522
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-namespace.md
19760
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-namespace.md
19523
19761
  */
19524
19762
  "import/no-namespace"?: Linter.RuleEntry<ImportNoNamespace>;
19525
19763
  /**
19526
19764
  * Forbid Node.js builtin modules.
19527
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-nodejs-modules.md
19765
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-nodejs-modules.md
19528
19766
  */
19529
19767
  "import/no-nodejs-modules"?: Linter.RuleEntry<ImportNoNodejsModules>;
19530
19768
  /**
19531
19769
  * Forbid importing packages through relative paths.
19532
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-relative-packages.md
19770
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-relative-packages.md
19533
19771
  */
19534
19772
  "import/no-relative-packages"?: Linter.RuleEntry<ImportNoRelativePackages>;
19535
19773
  /**
19536
19774
  * Forbid importing modules from parent directories.
19537
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-relative-parent-imports.md
19775
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-relative-parent-imports.md
19538
19776
  */
19539
19777
  "import/no-relative-parent-imports"?: Linter.RuleEntry<ImportNoRelativeParentImports>;
19540
19778
  /**
19541
19779
  * Forbid importing a default export by a different name.
19542
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-rename-default.md
19780
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-rename-default.md
19543
19781
  */
19544
19782
  "import/no-rename-default"?: Linter.RuleEntry<ImportNoRenameDefault>;
19545
19783
  /**
19546
19784
  * Enforce which files can be imported in a given folder.
19547
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-restricted-paths.md
19785
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-restricted-paths.md
19548
19786
  */
19549
19787
  "import/no-restricted-paths"?: Linter.RuleEntry<ImportNoRestrictedPaths>;
19550
19788
  /**
19551
19789
  * Forbid a module from importing itself.
19552
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-self-import.md
19790
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-self-import.md
19553
19791
  */
19554
19792
  "import/no-self-import"?: Linter.RuleEntry<[]>;
19555
19793
  /**
19556
19794
  * Forbid unassigned imports.
19557
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-unassigned-import.md
19795
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-unassigned-import.md
19558
19796
  */
19559
19797
  "import/no-unassigned-import"?: Linter.RuleEntry<ImportNoUnassignedImport>;
19560
19798
  /**
19561
19799
  * Ensure imports point to a file/module that can be resolved.
19562
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-unresolved.md
19800
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-unresolved.md
19563
19801
  */
19564
19802
  "import/no-unresolved"?: Linter.RuleEntry<ImportNoUnresolved>;
19565
19803
  /**
19566
19804
  * Forbid modules without exports, or exports without matching import in another module.
19567
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-unused-modules.md
19805
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-unused-modules.md
19568
19806
  */
19569
19807
  "import/no-unused-modules"?: Linter.RuleEntry<ImportNoUnusedModules>;
19570
19808
  /**
19571
19809
  * Forbid unnecessary path segments in import and require statements.
19572
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-useless-path-segments.md
19810
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-useless-path-segments.md
19573
19811
  */
19574
19812
  "import/no-useless-path-segments"?: Linter.RuleEntry<ImportNoUselessPathSegments>;
19575
19813
  /**
19576
19814
  * Forbid webpack loader syntax in imports.
19577
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-webpack-loader-syntax.md
19815
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/no-webpack-loader-syntax.md
19578
19816
  */
19579
19817
  "import/no-webpack-loader-syntax"?: Linter.RuleEntry<[]>;
19580
19818
  /**
19581
19819
  * Enforce a convention in module import order.
19582
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/order.md
19820
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/order.md
19583
19821
  */
19584
19822
  "import/order"?: Linter.RuleEntry<ImportOrder>;
19585
19823
  /**
19586
19824
  * Prefer a default export if module exports a single name or multiple names.
19587
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/prefer-default-export.md
19825
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/prefer-default-export.md
19588
19826
  */
19589
19827
  "import/prefer-default-export"?: Linter.RuleEntry<ImportPreferDefaultExport>;
19590
19828
  /**
19591
19829
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
19592
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/unambiguous.md
19830
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.1/docs/rules/unambiguous.md
19593
19831
  */
19594
19832
  "import/unambiguous"?: Linter.RuleEntry<[]>;
19595
19833
  }
@@ -25737,6 +25975,7 @@ type RuleOptionsUnion = BuiltinsRuleOptions &
25737
25975
  NRuleOptions &
25738
25976
  NoOnlyTestsRuleOptions &
25739
25977
  PerfectionistRuleOptions &
25978
+ PnpmRuleOptions &
25740
25979
  PrettierRuleOptions &
25741
25980
  ReactRuleOptions &
25742
25981
  ReactHooksRuleOptions &
@@ -25921,6 +26160,19 @@ type OptionsConfig = {
25921
26160
  * PLUGIN!.
25922
26161
  */
25923
26162
  prettier?: boolean;
26163
+ /**
26164
+ * Enable eslint-plugin-pnpm.
26165
+ *
26166
+ * @default false
26167
+ */
26168
+ pnpm?: boolean;
26169
+ /**
26170
+ * Enable Tailwind CSS support.
26171
+ *
26172
+ * Passing an object to configure the options.
26173
+ *
26174
+ * @default true
26175
+ */
25924
26176
  tailwind?: TailwindOptions;
25925
26177
  /**
25926
26178
  * The prefix for the name of the config item.
@@ -26034,7 +26286,7 @@ declare function jsse(options?: OptionsConfig & Config, ...userConfigs: (Config
26034
26286
  declare function defineConfig(options?: OptionsConfig & Config, ...userConfigs: (Config | Config[])[]): Promise<Config[]>;
26035
26287
  type DefineConfig = typeof defineConfig;
26036
26288
 
26037
- declare const VERSION = "0.4.0";
26289
+ declare const VERSION = "0.4.1";
26038
26290
 
26039
26291
  declare const GLOB_SRC_EXT = "?([cm])[jt]s?(x)";
26040
26292
  declare const GLOB_JS_SRC_EXT = "?([cm])js?(x)";
@@ -27649,12 +27901,6 @@ declare function importPluginStylistic(): Promise<{
27649
27901
  configs: eslint.ESLint.Plugin["configs"] & _stylistic_eslint_plugin.Configs;
27650
27902
  };
27651
27903
  }>;
27652
- declare function importPluginTailwind(): Promise<{
27653
- pluginTailwind: any;
27654
- }>;
27655
- declare function safeImportPluginTailwind(): Promise<neverthrow.Ok<{
27656
- pluginTailwind: any;
27657
- }, never> | neverthrow.Err<never, Error>>;
27658
27904
 
27659
27905
  declare const jsseReact: DefineConfig;
27660
27906
 
@@ -27708,4 +27954,4 @@ declare function changeRuleEntrySeverity(ruleConfig: Linter.RuleEntry<any>, leve
27708
27954
  declare function error2warn<T extends Config>(configs: T[]): T[];
27709
27955
  declare function warn2error<T extends Config>(configs: T[]): T[];
27710
27956
 
27711
- export { type Awaitable, type Config, type EslintConfigFn, type LanguageOptions, type OptionsCommon, type OptionsComponentExts, type OptionsConfig, type OptionsFiles, type OptionsHasTypeScript, type OptionsIsInEditor, type OptionsOverrides, type OptionsPrefix, type OptionsReact, type OptionsStylistic, type OptionsTypeScriptParserOptions, type OptionsTypeScriptWithTypes, type OptionsTypescript, type RenamePefix, type RuleName, SLOW_RULES, type StylisticConfig, type TailwindEslintSettings, type TailwindOptions, type TypedFlatConfigItemWithId, type UnPromise, VERSION, changeRuleEntrySeverity, combine, combineAsync, jsse as default, defineConfig, error2warn, globs, importJsoncLibs, importParserJsonc, importPluginJsdoc, importPluginJsonc, importPluginMarkdown, importPluginReact, importPluginReactHooks, importPluginReactRefresh, importPluginStylistic, importPluginTailwind, importPluginTsdoc, importPluginUnicorn, importReactPlugins, importYmlLibs, interopDefault, isCI, isInEditor, jsse, jsseReact, parserPlain, renameRules, safeImportPluginTailwind, turnOffRules, uniqueStrings, warn2error };
27957
+ export { type Awaitable, type Config, type EslintConfigFn, type LanguageOptions, type OptionsCommon, type OptionsComponentExts, type OptionsConfig, type OptionsFiles, type OptionsHasTypeScript, type OptionsIsInEditor, type OptionsOverrides, type OptionsPrefix, type OptionsReact, type OptionsStylistic, type OptionsTypeScriptParserOptions, type OptionsTypeScriptWithTypes, type OptionsTypescript, type RenamePefix, type RuleName, SLOW_RULES, type StylisticConfig, type TailwindEslintSettings, type TailwindOptions, type TypedFlatConfigItemWithId, type UnPromise, VERSION, changeRuleEntrySeverity, combine, combineAsync, jsse as default, defineConfig, error2warn, globs, importJsoncLibs, importParserJsonc, importPluginJsdoc, importPluginJsonc, importPluginMarkdown, importPluginReact, importPluginReactHooks, importPluginReactRefresh, importPluginStylistic, importPluginTsdoc, importPluginUnicorn, importReactPlugins, importYmlLibs, interopDefault, isCI, isInEditor, jsse, jsseReact, parserPlain, renameRules, turnOffRules, uniqueStrings, warn2error };