@jsse/eslint-config 0.1.17 → 0.1.19

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.cts CHANGED
@@ -4329,42 +4329,42 @@ interface IgnoresRuleOptions {}
4329
4329
  interface ImportsRuleOptions {
4330
4330
  /**
4331
4331
  * Enforce or ban the use of inline type-only markers for named imports.
4332
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/consistent-type-specifier-style.md
4332
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/consistent-type-specifier-style.md
4333
4333
  */
4334
4334
  "import/consistent-type-specifier-style"?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle$1>;
4335
4335
  /**
4336
4336
  * Ensure a default export is present, given a default import.
4337
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/default.md
4337
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/default.md
4338
4338
  */
4339
4339
  "import/default"?: Linter.RuleEntry<[]>;
4340
4340
  /**
4341
4341
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
4342
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/dynamic-import-chunkname.md
4342
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/dynamic-import-chunkname.md
4343
4343
  */
4344
4344
  "import/dynamic-import-chunkname"?: Linter.RuleEntry<ImportDynamicImportChunkname$1>;
4345
4345
  /**
4346
4346
  * Forbid any invalid exports, i.e. re-export of the same name.
4347
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/export.md
4347
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/export.md
4348
4348
  */
4349
4349
  "import/export"?: Linter.RuleEntry<[]>;
4350
4350
  /**
4351
4351
  * Ensure all exports appear after other statements.
4352
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/exports-last.md
4352
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/exports-last.md
4353
4353
  */
4354
4354
  "import/exports-last"?: Linter.RuleEntry<[]>;
4355
4355
  /**
4356
4356
  * Ensure consistent use of file extension within the import path.
4357
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/extensions.md
4357
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/extensions.md
4358
4358
  */
4359
4359
  "import/extensions"?: Linter.RuleEntry<ImportExtensions$1>;
4360
4360
  /**
4361
4361
  * Ensure all imports appear before other statements.
4362
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/first.md
4362
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/first.md
4363
4363
  */
4364
4364
  "import/first"?: Linter.RuleEntry<ImportFirst$1>;
4365
4365
  /**
4366
4366
  * Prefer named exports to be grouped together in a single export declaration.
4367
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/group-exports.md
4367
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/group-exports.md
4368
4368
  */
4369
4369
  "import/group-exports"?: Linter.RuleEntry<[]>;
4370
4370
  /**
@@ -4375,182 +4375,182 @@ interface ImportsRuleOptions {
4375
4375
  "import/imports-first"?: Linter.RuleEntry<ImportImportsFirst$1>;
4376
4376
  /**
4377
4377
  * Enforce the maximum number of dependencies a module can have.
4378
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/max-dependencies.md
4378
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/max-dependencies.md
4379
4379
  */
4380
4380
  "import/max-dependencies"?: Linter.RuleEntry<ImportMaxDependencies$1>;
4381
4381
  /**
4382
4382
  * Ensure named imports correspond to a named export in the remote file.
4383
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/named.md
4383
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/named.md
4384
4384
  */
4385
4385
  "import/named"?: Linter.RuleEntry<ImportNamed$1>;
4386
4386
  /**
4387
4387
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
4388
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/namespace.md
4388
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/namespace.md
4389
4389
  */
4390
4390
  "import/namespace"?: Linter.RuleEntry<ImportNamespace$1>;
4391
4391
  /**
4392
4392
  * Enforce a newline after import statements.
4393
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/newline-after-import.md
4393
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/newline-after-import.md
4394
4394
  */
4395
4395
  "import/newline-after-import"?: Linter.RuleEntry<ImportNewlineAfterImport$1>;
4396
4396
  /**
4397
4397
  * Forbid import of modules using absolute paths.
4398
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-absolute-path.md
4398
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-absolute-path.md
4399
4399
  */
4400
4400
  "import/no-absolute-path"?: Linter.RuleEntry<ImportNoAbsolutePath$1>;
4401
4401
  /**
4402
4402
  * Forbid AMD `require` and `define` calls.
4403
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-amd.md
4403
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-amd.md
4404
4404
  */
4405
4405
  "import/no-amd"?: Linter.RuleEntry<[]>;
4406
4406
  /**
4407
4407
  * Forbid anonymous values as default exports.
4408
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-anonymous-default-export.md
4408
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-anonymous-default-export.md
4409
4409
  */
4410
4410
  "import/no-anonymous-default-export"?: Linter.RuleEntry<ImportNoAnonymousDefaultExport$1>;
4411
4411
  /**
4412
4412
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
4413
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-commonjs.md
4413
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-commonjs.md
4414
4414
  */
4415
4415
  "import/no-commonjs"?: Linter.RuleEntry<ImportNoCommonjs$1>;
4416
4416
  /**
4417
4417
  * Forbid a module from importing a module with a dependency path back to itself.
4418
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-cycle.md
4418
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-cycle.md
4419
4419
  */
4420
4420
  "import/no-cycle"?: Linter.RuleEntry<ImportNoCycle$1>;
4421
4421
  /**
4422
4422
  * Forbid default exports.
4423
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-default-export.md
4423
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-default-export.md
4424
4424
  */
4425
4425
  "import/no-default-export"?: Linter.RuleEntry<[]>;
4426
4426
  /**
4427
4427
  * Forbid imported names marked with `@deprecated` documentation tag.
4428
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-deprecated.md
4428
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-deprecated.md
4429
4429
  */
4430
4430
  "import/no-deprecated"?: Linter.RuleEntry<[]>;
4431
4431
  /**
4432
4432
  * Forbid repeated import of the same module in multiple places.
4433
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-duplicates.md
4433
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-duplicates.md
4434
4434
  */
4435
4435
  "import/no-duplicates"?: Linter.RuleEntry<ImportNoDuplicates$1>;
4436
4436
  /**
4437
4437
  * Forbid `require()` calls with expressions.
4438
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-dynamic-require.md
4438
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-dynamic-require.md
4439
4439
  */
4440
4440
  "import/no-dynamic-require"?: Linter.RuleEntry<ImportNoDynamicRequire$1>;
4441
4441
  /**
4442
4442
  * Forbid empty named import blocks.
4443
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-empty-named-blocks.md
4443
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-empty-named-blocks.md
4444
4444
  */
4445
4445
  "import/no-empty-named-blocks"?: Linter.RuleEntry<[]>;
4446
4446
  /**
4447
4447
  * Forbid the use of extraneous packages.
4448
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-extraneous-dependencies.md
4448
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-extraneous-dependencies.md
4449
4449
  */
4450
4450
  "import/no-extraneous-dependencies"?: Linter.RuleEntry<ImportNoExtraneousDependencies$1>;
4451
4451
  /**
4452
4452
  * Forbid import statements with CommonJS module.exports.
4453
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-import-module-exports.md
4453
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-import-module-exports.md
4454
4454
  */
4455
4455
  "import/no-import-module-exports"?: Linter.RuleEntry<ImportNoImportModuleExports$1>;
4456
4456
  /**
4457
4457
  * Forbid importing the submodules of other modules.
4458
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-internal-modules.md
4458
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-internal-modules.md
4459
4459
  */
4460
4460
  "import/no-internal-modules"?: Linter.RuleEntry<ImportNoInternalModules$1>;
4461
4461
  /**
4462
4462
  * Forbid the use of mutable exports with `var` or `let`.
4463
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-mutable-exports.md
4463
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-mutable-exports.md
4464
4464
  */
4465
4465
  "import/no-mutable-exports"?: Linter.RuleEntry<[]>;
4466
4466
  /**
4467
4467
  * Forbid use of exported name as identifier of default export.
4468
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-named-as-default.md
4468
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-named-as-default.md
4469
4469
  */
4470
4470
  "import/no-named-as-default"?: Linter.RuleEntry<[]>;
4471
4471
  /**
4472
4472
  * Forbid use of exported name as property of default export.
4473
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-named-as-default-member.md
4473
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-named-as-default-member.md
4474
4474
  */
4475
4475
  "import/no-named-as-default-member"?: Linter.RuleEntry<[]>;
4476
4476
  /**
4477
4477
  * Forbid named default exports.
4478
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-named-default.md
4478
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-named-default.md
4479
4479
  */
4480
4480
  "import/no-named-default"?: Linter.RuleEntry<[]>;
4481
4481
  /**
4482
4482
  * Forbid named exports.
4483
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-named-export.md
4483
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-named-export.md
4484
4484
  */
4485
4485
  "import/no-named-export"?: Linter.RuleEntry<[]>;
4486
4486
  /**
4487
4487
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
4488
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-namespace.md
4488
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-namespace.md
4489
4489
  */
4490
4490
  "import/no-namespace"?: Linter.RuleEntry<ImportNoNamespace$1>;
4491
4491
  /**
4492
4492
  * Forbid Node.js builtin modules.
4493
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-nodejs-modules.md
4493
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-nodejs-modules.md
4494
4494
  */
4495
4495
  "import/no-nodejs-modules"?: Linter.RuleEntry<ImportNoNodejsModules$1>;
4496
4496
  /**
4497
4497
  * Forbid importing packages through relative paths.
4498
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-relative-packages.md
4498
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-relative-packages.md
4499
4499
  */
4500
4500
  "import/no-relative-packages"?: Linter.RuleEntry<ImportNoRelativePackages$1>;
4501
4501
  /**
4502
4502
  * Forbid importing modules from parent directories.
4503
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-relative-parent-imports.md
4503
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-relative-parent-imports.md
4504
4504
  */
4505
4505
  "import/no-relative-parent-imports"?: Linter.RuleEntry<ImportNoRelativeParentImports$1>;
4506
4506
  /**
4507
4507
  * Enforce which files can be imported in a given folder.
4508
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-restricted-paths.md
4508
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-restricted-paths.md
4509
4509
  */
4510
4510
  "import/no-restricted-paths"?: Linter.RuleEntry<ImportNoRestrictedPaths$1>;
4511
4511
  /**
4512
4512
  * Forbid a module from importing itself.
4513
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-self-import.md
4513
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-self-import.md
4514
4514
  */
4515
4515
  "import/no-self-import"?: Linter.RuleEntry<[]>;
4516
4516
  /**
4517
4517
  * Forbid unassigned imports.
4518
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-unassigned-import.md
4518
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-unassigned-import.md
4519
4519
  */
4520
4520
  "import/no-unassigned-import"?: Linter.RuleEntry<ImportNoUnassignedImport$1>;
4521
4521
  /**
4522
4522
  * Ensure imports point to a file/module that can be resolved.
4523
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-unresolved.md
4523
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-unresolved.md
4524
4524
  */
4525
4525
  "import/no-unresolved"?: Linter.RuleEntry<ImportNoUnresolved$1>;
4526
4526
  /**
4527
4527
  * Forbid modules without exports, or exports without matching import in another module.
4528
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-unused-modules.md
4528
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-unused-modules.md
4529
4529
  */
4530
4530
  "import/no-unused-modules"?: Linter.RuleEntry<ImportNoUnusedModules$1>;
4531
4531
  /**
4532
4532
  * Forbid unnecessary path segments in import and require statements.
4533
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-useless-path-segments.md
4533
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-useless-path-segments.md
4534
4534
  */
4535
4535
  "import/no-useless-path-segments"?: Linter.RuleEntry<ImportNoUselessPathSegments$1>;
4536
4536
  /**
4537
4537
  * Forbid webpack loader syntax in imports.
4538
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-webpack-loader-syntax.md
4538
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-webpack-loader-syntax.md
4539
4539
  */
4540
4540
  "import/no-webpack-loader-syntax"?: Linter.RuleEntry<[]>;
4541
4541
  /**
4542
4542
  * Enforce a convention in module import order.
4543
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/order.md
4543
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/order.md
4544
4544
  */
4545
4545
  "import/order"?: Linter.RuleEntry<ImportOrder$1>;
4546
4546
  /**
4547
4547
  * Prefer a default export if module exports a single name or multiple names.
4548
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/prefer-default-export.md
4548
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/prefer-default-export.md
4549
4549
  */
4550
4550
  "import/prefer-default-export"?: Linter.RuleEntry<ImportPreferDefaultExport$1>;
4551
4551
  /**
4552
4552
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
4553
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/unambiguous.md
4553
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/unambiguous.md
4554
4554
  */
4555
4555
  "import/unambiguous"?: Linter.RuleEntry<[]>;
4556
4556
  }
@@ -5973,6 +5973,18 @@ type JsdocValidTypes =
5973
5973
  /* prettier-ignore */
5974
5974
 
5975
5975
 
5976
+ interface TsdocRuleOptions {
5977
+ /**
5978
+ * Validates that TypeScript documentation comments conform to the TSDoc standard
5979
+ * @see https://tsdoc.org/pages/packages/eslint-plugin-tsdoc
5980
+ */
5981
+ "tsdoc/syntax"?: Linter.RuleEntry<[]>;
5982
+ }
5983
+
5984
+ /* eslint-disable */
5985
+ /* prettier-ignore */
5986
+
5987
+
5976
5988
  interface JsoncRuleOptions {
5977
5989
  /**
5978
5990
  * enforce line breaks after opening and before closing array brackets
@@ -11409,8 +11421,9 @@ interface StylisticRuleOptions {
11409
11421
  */
11410
11422
  "@stylistic/jsx-function-call-newline"?: Linter.RuleEntry<StylisticJsxFunctionCallNewline>;
11411
11423
  /**
11412
- * Enforce JSX indentation
11424
+ * Enforce JSX indentation. Deprecated, use `indent` rule instead.
11413
11425
  * @see https://eslint.style/rules/jsx/jsx-indent
11426
+ * @deprecated
11414
11427
  */
11415
11428
  "@stylistic/jsx-indent"?: Linter.RuleEntry<StylisticJsxIndent>;
11416
11429
  /**
@@ -11595,7 +11608,7 @@ interface StylisticRuleOptions {
11595
11608
  "@stylistic/nonblock-statement-body-position"?: Linter.RuleEntry<StylisticNonblockStatementBodyPosition>;
11596
11609
  /**
11597
11610
  * Enforce consistent line breaks after opening and before closing braces
11598
- * @see https://eslint.style/rules/js/object-curly-newline
11611
+ * @see https://eslint.style/rules/ts/object-curly-newline
11599
11612
  */
11600
11613
  "@stylistic/object-curly-newline"?: Linter.RuleEntry<StylisticObjectCurlyNewline>;
11601
11614
  /**
@@ -11605,7 +11618,7 @@ interface StylisticRuleOptions {
11605
11618
  "@stylistic/object-curly-spacing"?: Linter.RuleEntry<StylisticObjectCurlySpacing>;
11606
11619
  /**
11607
11620
  * Enforce placing object properties on separate lines
11608
- * @see https://eslint.style/rules/js/object-property-newline
11621
+ * @see https://eslint.style/rules/ts/object-property-newline
11609
11622
  */
11610
11623
  "@stylistic/object-property-newline"?: Linter.RuleEntry<StylisticObjectPropertyNewline>;
11611
11624
  /**
@@ -11771,6 +11784,7 @@ type StylisticArrayElementNewline =
11771
11784
  type _StylisticArrayElementNewlineBasicConfig =
11772
11785
  | ("always" | "never" | "consistent")
11773
11786
  | {
11787
+ consistent?: boolean;
11774
11788
  multiline?: boolean;
11775
11789
  minItems?: number | null;
11776
11790
  };
@@ -13031,6 +13045,20 @@ type StylisticObjectCurlyNewline =
13031
13045
  minProperties?: number;
13032
13046
  consistent?: boolean;
13033
13047
  };
13048
+ TSTypeLiteral?:
13049
+ | ("always" | "never")
13050
+ | {
13051
+ multiline?: boolean;
13052
+ minProperties?: number;
13053
+ consistent?: boolean;
13054
+ };
13055
+ TSInterfaceBody?:
13056
+ | ("always" | "never")
13057
+ | {
13058
+ multiline?: boolean;
13059
+ minProperties?: number;
13060
+ consistent?: boolean;
13061
+ };
13034
13062
  },
13035
13063
  ];
13036
13064
  // ----- @stylistic/object-curly-spacing -----
@@ -14317,6 +14345,11 @@ interface TypescriptRuleOptions {
14317
14345
  * @see https://typescript-eslint.io/rules/no-empty-interface
14318
14346
  */
14319
14347
  "@typescript-eslint/no-empty-interface"?: Linter.RuleEntry<TypescriptEslintNoEmptyInterface>;
14348
+ /**
14349
+ * Disallow accidentally using the "empty object" type
14350
+ * @see https://typescript-eslint.io/rules/no-empty-object-type
14351
+ */
14352
+ "@typescript-eslint/no-empty-object-type"?: Linter.RuleEntry<TypescriptEslintNoEmptyObjectType>;
14320
14353
  /**
14321
14354
  * Disallow the `any` type
14322
14355
  * @see https://typescript-eslint.io/rules/no-explicit-any
@@ -14827,42 +14860,42 @@ interface TypescriptRuleOptions {
14827
14860
  >;
14828
14861
  /**
14829
14862
  * Enforce or ban the use of inline type-only markers for named imports.
14830
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/consistent-type-specifier-style.md
14863
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/consistent-type-specifier-style.md
14831
14864
  */
14832
14865
  "import/consistent-type-specifier-style"?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>;
14833
14866
  /**
14834
14867
  * Ensure a default export is present, given a default import.
14835
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/default.md
14868
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/default.md
14836
14869
  */
14837
14870
  "import/default"?: Linter.RuleEntry<[]>;
14838
14871
  /**
14839
14872
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
14840
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/dynamic-import-chunkname.md
14873
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/dynamic-import-chunkname.md
14841
14874
  */
14842
14875
  "import/dynamic-import-chunkname"?: Linter.RuleEntry<ImportDynamicImportChunkname>;
14843
14876
  /**
14844
14877
  * Forbid any invalid exports, i.e. re-export of the same name.
14845
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/export.md
14878
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/export.md
14846
14879
  */
14847
14880
  "import/export"?: Linter.RuleEntry<[]>;
14848
14881
  /**
14849
14882
  * Ensure all exports appear after other statements.
14850
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/exports-last.md
14883
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/exports-last.md
14851
14884
  */
14852
14885
  "import/exports-last"?: Linter.RuleEntry<[]>;
14853
14886
  /**
14854
14887
  * Ensure consistent use of file extension within the import path.
14855
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/extensions.md
14888
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/extensions.md
14856
14889
  */
14857
14890
  "import/extensions"?: Linter.RuleEntry<ImportExtensions>;
14858
14891
  /**
14859
14892
  * Ensure all imports appear before other statements.
14860
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/first.md
14893
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/first.md
14861
14894
  */
14862
14895
  "import/first"?: Linter.RuleEntry<ImportFirst>;
14863
14896
  /**
14864
14897
  * Prefer named exports to be grouped together in a single export declaration.
14865
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/group-exports.md
14898
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/group-exports.md
14866
14899
  */
14867
14900
  "import/group-exports"?: Linter.RuleEntry<[]>;
14868
14901
  /**
@@ -14873,182 +14906,182 @@ interface TypescriptRuleOptions {
14873
14906
  "import/imports-first"?: Linter.RuleEntry<ImportImportsFirst>;
14874
14907
  /**
14875
14908
  * Enforce the maximum number of dependencies a module can have.
14876
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/max-dependencies.md
14909
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/max-dependencies.md
14877
14910
  */
14878
14911
  "import/max-dependencies"?: Linter.RuleEntry<ImportMaxDependencies>;
14879
14912
  /**
14880
14913
  * Ensure named imports correspond to a named export in the remote file.
14881
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/named.md
14914
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/named.md
14882
14915
  */
14883
14916
  "import/named"?: Linter.RuleEntry<ImportNamed>;
14884
14917
  /**
14885
14918
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
14886
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/namespace.md
14919
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/namespace.md
14887
14920
  */
14888
14921
  "import/namespace"?: Linter.RuleEntry<ImportNamespace>;
14889
14922
  /**
14890
14923
  * Enforce a newline after import statements.
14891
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/newline-after-import.md
14924
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/newline-after-import.md
14892
14925
  */
14893
14926
  "import/newline-after-import"?: Linter.RuleEntry<ImportNewlineAfterImport>;
14894
14927
  /**
14895
14928
  * Forbid import of modules using absolute paths.
14896
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-absolute-path.md
14929
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-absolute-path.md
14897
14930
  */
14898
14931
  "import/no-absolute-path"?: Linter.RuleEntry<ImportNoAbsolutePath>;
14899
14932
  /**
14900
14933
  * Forbid AMD `require` and `define` calls.
14901
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-amd.md
14934
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-amd.md
14902
14935
  */
14903
14936
  "import/no-amd"?: Linter.RuleEntry<[]>;
14904
14937
  /**
14905
14938
  * Forbid anonymous values as default exports.
14906
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-anonymous-default-export.md
14939
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-anonymous-default-export.md
14907
14940
  */
14908
14941
  "import/no-anonymous-default-export"?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>;
14909
14942
  /**
14910
14943
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
14911
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-commonjs.md
14944
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-commonjs.md
14912
14945
  */
14913
14946
  "import/no-commonjs"?: Linter.RuleEntry<ImportNoCommonjs>;
14914
14947
  /**
14915
14948
  * Forbid a module from importing a module with a dependency path back to itself.
14916
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-cycle.md
14949
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-cycle.md
14917
14950
  */
14918
14951
  "import/no-cycle"?: Linter.RuleEntry<ImportNoCycle>;
14919
14952
  /**
14920
14953
  * Forbid default exports.
14921
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-default-export.md
14954
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-default-export.md
14922
14955
  */
14923
14956
  "import/no-default-export"?: Linter.RuleEntry<[]>;
14924
14957
  /**
14925
14958
  * Forbid imported names marked with `@deprecated` documentation tag.
14926
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-deprecated.md
14959
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-deprecated.md
14927
14960
  */
14928
14961
  "import/no-deprecated"?: Linter.RuleEntry<[]>;
14929
14962
  /**
14930
14963
  * Forbid repeated import of the same module in multiple places.
14931
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-duplicates.md
14964
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-duplicates.md
14932
14965
  */
14933
14966
  "import/no-duplicates"?: Linter.RuleEntry<ImportNoDuplicates>;
14934
14967
  /**
14935
14968
  * Forbid `require()` calls with expressions.
14936
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-dynamic-require.md
14969
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-dynamic-require.md
14937
14970
  */
14938
14971
  "import/no-dynamic-require"?: Linter.RuleEntry<ImportNoDynamicRequire>;
14939
14972
  /**
14940
14973
  * Forbid empty named import blocks.
14941
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-empty-named-blocks.md
14974
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-empty-named-blocks.md
14942
14975
  */
14943
14976
  "import/no-empty-named-blocks"?: Linter.RuleEntry<[]>;
14944
14977
  /**
14945
14978
  * Forbid the use of extraneous packages.
14946
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-extraneous-dependencies.md
14979
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-extraneous-dependencies.md
14947
14980
  */
14948
14981
  "import/no-extraneous-dependencies"?: Linter.RuleEntry<ImportNoExtraneousDependencies>;
14949
14982
  /**
14950
14983
  * Forbid import statements with CommonJS module.exports.
14951
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-import-module-exports.md
14984
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-import-module-exports.md
14952
14985
  */
14953
14986
  "import/no-import-module-exports"?: Linter.RuleEntry<ImportNoImportModuleExports>;
14954
14987
  /**
14955
14988
  * Forbid importing the submodules of other modules.
14956
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-internal-modules.md
14989
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-internal-modules.md
14957
14990
  */
14958
14991
  "import/no-internal-modules"?: Linter.RuleEntry<ImportNoInternalModules>;
14959
14992
  /**
14960
14993
  * Forbid the use of mutable exports with `var` or `let`.
14961
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-mutable-exports.md
14994
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-mutable-exports.md
14962
14995
  */
14963
14996
  "import/no-mutable-exports"?: Linter.RuleEntry<[]>;
14964
14997
  /**
14965
14998
  * Forbid use of exported name as identifier of default export.
14966
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-named-as-default.md
14999
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-named-as-default.md
14967
15000
  */
14968
15001
  "import/no-named-as-default"?: Linter.RuleEntry<[]>;
14969
15002
  /**
14970
15003
  * Forbid use of exported name as property of default export.
14971
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-named-as-default-member.md
15004
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-named-as-default-member.md
14972
15005
  */
14973
15006
  "import/no-named-as-default-member"?: Linter.RuleEntry<[]>;
14974
15007
  /**
14975
15008
  * Forbid named default exports.
14976
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-named-default.md
15009
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-named-default.md
14977
15010
  */
14978
15011
  "import/no-named-default"?: Linter.RuleEntry<[]>;
14979
15012
  /**
14980
15013
  * Forbid named exports.
14981
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-named-export.md
15014
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-named-export.md
14982
15015
  */
14983
15016
  "import/no-named-export"?: Linter.RuleEntry<[]>;
14984
15017
  /**
14985
15018
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
14986
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-namespace.md
15019
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-namespace.md
14987
15020
  */
14988
15021
  "import/no-namespace"?: Linter.RuleEntry<ImportNoNamespace>;
14989
15022
  /**
14990
15023
  * Forbid Node.js builtin modules.
14991
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-nodejs-modules.md
15024
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-nodejs-modules.md
14992
15025
  */
14993
15026
  "import/no-nodejs-modules"?: Linter.RuleEntry<ImportNoNodejsModules>;
14994
15027
  /**
14995
15028
  * Forbid importing packages through relative paths.
14996
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-relative-packages.md
15029
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-relative-packages.md
14997
15030
  */
14998
15031
  "import/no-relative-packages"?: Linter.RuleEntry<ImportNoRelativePackages>;
14999
15032
  /**
15000
15033
  * Forbid importing modules from parent directories.
15001
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-relative-parent-imports.md
15034
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-relative-parent-imports.md
15002
15035
  */
15003
15036
  "import/no-relative-parent-imports"?: Linter.RuleEntry<ImportNoRelativeParentImports>;
15004
15037
  /**
15005
15038
  * Enforce which files can be imported in a given folder.
15006
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-restricted-paths.md
15039
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-restricted-paths.md
15007
15040
  */
15008
15041
  "import/no-restricted-paths"?: Linter.RuleEntry<ImportNoRestrictedPaths>;
15009
15042
  /**
15010
15043
  * Forbid a module from importing itself.
15011
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-self-import.md
15044
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-self-import.md
15012
15045
  */
15013
15046
  "import/no-self-import"?: Linter.RuleEntry<[]>;
15014
15047
  /**
15015
15048
  * Forbid unassigned imports.
15016
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-unassigned-import.md
15049
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-unassigned-import.md
15017
15050
  */
15018
15051
  "import/no-unassigned-import"?: Linter.RuleEntry<ImportNoUnassignedImport>;
15019
15052
  /**
15020
15053
  * Ensure imports point to a file/module that can be resolved.
15021
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-unresolved.md
15054
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-unresolved.md
15022
15055
  */
15023
15056
  "import/no-unresolved"?: Linter.RuleEntry<ImportNoUnresolved>;
15024
15057
  /**
15025
15058
  * Forbid modules without exports, or exports without matching import in another module.
15026
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-unused-modules.md
15059
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-unused-modules.md
15027
15060
  */
15028
15061
  "import/no-unused-modules"?: Linter.RuleEntry<ImportNoUnusedModules>;
15029
15062
  /**
15030
15063
  * Forbid unnecessary path segments in import and require statements.
15031
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-useless-path-segments.md
15064
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-useless-path-segments.md
15032
15065
  */
15033
15066
  "import/no-useless-path-segments"?: Linter.RuleEntry<ImportNoUselessPathSegments>;
15034
15067
  /**
15035
15068
  * Forbid webpack loader syntax in imports.
15036
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/no-webpack-loader-syntax.md
15069
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/no-webpack-loader-syntax.md
15037
15070
  */
15038
15071
  "import/no-webpack-loader-syntax"?: Linter.RuleEntry<[]>;
15039
15072
  /**
15040
15073
  * Enforce a convention in module import order.
15041
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/order.md
15074
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/order.md
15042
15075
  */
15043
15076
  "import/order"?: Linter.RuleEntry<ImportOrder>;
15044
15077
  /**
15045
15078
  * Prefer a default export if module exports a single name or multiple names.
15046
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/prefer-default-export.md
15079
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/prefer-default-export.md
15047
15080
  */
15048
15081
  "import/prefer-default-export"?: Linter.RuleEntry<ImportPreferDefaultExport>;
15049
15082
  /**
15050
15083
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
15051
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.1/docs/rules/unambiguous.md
15084
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v0.5.3/docs/rules/unambiguous.md
15052
15085
  */
15053
15086
  "import/unambiguous"?: Linter.RuleEntry<[]>;
15054
15087
  }
@@ -18408,6 +18441,16 @@ type TypescriptEslintNoEmptyInterface =
18408
18441
  allowSingleExtends?: boolean;
18409
18442
  },
18410
18443
  ];
18444
+ // ----- @typescript-eslint/no-empty-object-type -----
18445
+ type TypescriptEslintNoEmptyObjectType =
18446
+ | []
18447
+ | [
18448
+ {
18449
+ allowInterfaces?: "always" | "never" | "with-single-extends";
18450
+ allowObjectTypes?: "always" | "in-type-alias-with-name" | "never";
18451
+ allowWithName?: string;
18452
+ },
18453
+ ];
18411
18454
  // ----- @typescript-eslint/no-explicit-any -----
18412
18455
  type TypescriptEslintNoExplicitAny =
18413
18456
  | []
@@ -21184,6 +21227,7 @@ type RuleOptionsUnion = BuiltinsRuleOptions &
21184
21227
  ImportsRuleOptions &
21185
21228
  JavascriptRuleOptions &
21186
21229
  JsdocRuleOptions &
21230
+ TsdocRuleOptions &
21187
21231
  JsoncRuleOptions &
21188
21232
  MarkdownRuleOptions &
21189
21233
  NRuleOptions &
@@ -21312,9 +21356,29 @@ type OptionsConfig = {
21312
21356
  * Enable debug mode.
21313
21357
  */
21314
21358
  debug?: boolean;
21359
+ /**
21360
+ * Enable reporting of unused disable directives.
21361
+ *
21362
+ * @default true
21363
+ */
21315
21364
  reportUnusedDisableDirectives?: boolean;
21365
+ /**
21366
+ * Array of rules to turn off.
21367
+ */
21316
21368
  off?: string[];
21369
+ /**
21370
+ * Enable fast mode.
21371
+ *
21372
+ * This will disable some rules to speed up linting.
21373
+ */
21317
21374
  fast?: boolean;
21375
+ /**
21376
+ * Enable Prettier config rules to disable conflicting ESLint rules
21377
+ *
21378
+ * THIS DOES NOT ENABLE PRETTIER FORMATTING. YOU DO THAT, BUT I
21379
+ * RECOMMEND USING PRETTIER TO FORMAT AND NOT THE ESLINT PRETTIER
21380
+ * PLUGIN!.
21381
+ */
21318
21382
  prettier?: boolean;
21319
21383
  tailwind?: TailwindOptions;
21320
21384
  /**
@@ -22388,6 +22452,13 @@ declare function importPluginJsdoc(): Promise<{
22388
22452
  configs: Record<"recommended" | "recommended-error" | "recommended-typescript" | "recommended-typescript-error" | "recommended-typescript-flavor" | "recommended-typescript-flavor-error" | "flat/recommended" | "flat/recommended-error" | "flat/recommended-typescript" | "flat/recommended-typescript-error" | "flat/recommended-typescript-flavor" | "flat/recommended-typescript-flavor-error", eslint.Linter.FlatConfig>;
22389
22453
  };
22390
22454
  }>;
22455
+ declare function importPluginTsdoc(): Promise<{
22456
+ pluginTsdoc: {
22457
+ rules: {
22458
+ [x: string]: eslint.Rule.RuleModule;
22459
+ };
22460
+ };
22461
+ }>;
22391
22462
  declare function importPluginStylistic(): Promise<{
22392
22463
  pluginStylistic: typeof _stylistic_eslint_plugin;
22393
22464
  }>;
@@ -22413,4 +22484,4 @@ declare function isInEditor(): boolean;
22413
22484
  declare function jssestd(): Promise<TypedFlatConfigItem[]>;
22414
22485
  declare function jsseReact(): Promise<TypedFlatConfigItem[]>;
22415
22486
 
22416
- export { type Awaitable, type EslintConfigFn, GLOB_ALL_SRC, GLOB_CSS, GLOB_EXCLUDE, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_YAML, 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 PromiseFlatConfigItem, type RenamePefix, type Rules, type StylisticConfig, type TailwindEslintSettings, type TailwindOptions, type TypedFlatConfigItem, combine, combineAsync, jsse as default, importJsoncLibs, importParserJsonc, importPluginJsdoc, importPluginJsonc, importPluginMarkdown, importPluginReact, importPluginReactHooks, importPluginReactRefresh, importPluginStylistic, importPluginTailwind, importReactPlugins, importYmlLibs, interopDefault, isCI, isInEditor, jsse, jsseReact, jssestd, renameRules };
22487
+ export { type Awaitable, type EslintConfigFn, GLOB_ALL_SRC, GLOB_CSS, GLOB_EXCLUDE, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_YAML, 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 PromiseFlatConfigItem, type RenamePefix, type Rules, type StylisticConfig, type TailwindEslintSettings, type TailwindOptions, type TypedFlatConfigItem, combine, combineAsync, jsse as default, importJsoncLibs, importParserJsonc, importPluginJsdoc, importPluginJsonc, importPluginMarkdown, importPluginReact, importPluginReactHooks, importPluginReactRefresh, importPluginStylistic, importPluginTailwind, importPluginTsdoc, importReactPlugins, importYmlLibs, interopDefault, isCI, isInEditor, jsse, jsseReact, jssestd, renameRules };