@@ -3331,7 +3331,7 @@ export interface RuleOptions {
3331
3331
'no-autofix/@typescript-eslint/no-unused-expressions'?: Linter.RuleEntry<NoAutofixTypescriptEslintNoUnusedExpressions>
3332
3332
/**
3333
3333
* Disallow unused variables
3334
- * @see https://github.com/sweepline/eslint-plugin-unused-imports/blob/master/docs/ rules/no-unused-imports.md
3334
+ * @see https://typescript-eslint.io/ rules/no-unused-vars
3335
3335
*/
3336
3336
'no-autofix/@typescript-eslint/no-unused-vars'?: Linter.RuleEntry<NoAutofixTypescriptEslintNoUnusedVars>
3337
3337
/**
@@ -6519,11 +6519,6 @@ export interface RuleOptions {
6519
6519
* @see https://eslint.org/docs/latest/rules/no-octal-escape
6520
6520
*/
6521
6521
'no-autofix/no-octal-escape'?: Linter.RuleEntry<[]>
6522
- /**
6523
- * disallow .only blocks in tests
6524
- * @see https://github.com/levibuzolic/eslint-plugin-no-only-tests
6525
- */
6526
- 'no-autofix/no-only-tests/no-only-tests'?: Linter.RuleEntry<NoAutofixNoOnlyTestsNoOnlyTests>
6527
6522
/**
6528
6523
* Disallow reassigning `function` parameters
6529
6524
* @see https://eslint.org/docs/latest/rules/no-param-reassign
@@ -9287,26 +9282,6 @@ export interface RuleOptions {
9287
9282
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v53.0.0/docs/rules/throw-new-error.md
9288
9283
*/
9289
9284
'no-autofix/unicorn/throw-new-error'?: Linter.RuleEntry<[]>
9290
- /**
9291
- * Disallow unused variables
9292
- * @see https://github.com/sweepline/eslint-plugin-unused-imports/blob/master/docs/rules/no-unused-imports.md
9293
- */
9294
- 'no-autofix/unused-imports/no-unused-imports'?: Linter.RuleEntry<NoAutofixUnusedImportsNoUnusedImports>
9295
- /**
9296
- * Disallow unused variables
9297
- * @see https://github.com/sweepline/eslint-plugin-unused-imports/blob/master/docs/rules/no-unused-imports.md
9298
- */
9299
- 'no-autofix/unused-imports/no-unused-imports-ts'?: Linter.RuleEntry<NoAutofixUnusedImportsNoUnusedImportsTs>
9300
- /**
9301
- * Disallow unused variables
9302
- * @see https://github.com/sweepline/eslint-plugin-unused-imports/blob/master/docs/rules/no-unused-imports.md
9303
- */
9304
- 'no-autofix/unused-imports/no-unused-vars'?: Linter.RuleEntry<NoAutofixUnusedImportsNoUnusedVars>
9305
- /**
9306
- * Disallow unused variables
9307
- * @see https://github.com/sweepline/eslint-plugin-unused-imports/blob/master/docs/rules/no-unused-imports.md
9308
- */
9309
- 'no-autofix/unused-imports/no-unused-vars-ts'?: Linter.RuleEntry<NoAutofixUnusedImportsNoUnusedVarsTs>
9310
9285
/**
9311
9286
* Require calls to `isNaN()` when checking for `NaN`
9312
9287
* @see https://eslint.org/docs/latest/rules/use-isnan
@@ -12329,7 +12304,7 @@ export interface RuleOptions {
12329
12304
'ts/no-unused-expressions'?: Linter.RuleEntry<TsNoUnusedExpressions>
12330
12305
/**
12331
12306
* Disallow unused variables
12332
- * @see https://github.com/sweepline/eslint-plugin-unused-imports/blob/master/docs/ rules/no-unused-imports.md
12307
+ * @see https://typescript-eslint.io/ rules/no-unused-vars
12333
12308
*/
12334
12309
'ts/no-unused-vars'?: Linter.RuleEntry<TsNoUnusedVars>
12335
12310
/**
@@ -21992,12 +21967,6 @@ type NoAutofixNoMultipleEmptyLines = []|[{
21992
21967
type NoAutofixNoNativeReassign = []|[{
21993
21968
exceptions?: string[]
21994
21969
}]
21995
- // ----- no-autofix/no-only-tests/no-only-tests -----
21996
- type NoAutofixNoOnlyTestsNoOnlyTests = []|[{
21997
- block?: string[]
21998
- focus?: string[]
21999
- fix?: boolean
22000
- }]
22001
21970
// ----- no-autofix/no-param-reassign -----
22002
21971
type NoAutofixNoParamReassign = []|[({
22003
21972
props?: false
@@ -23709,50 +23678,6 @@ type NoAutofixUnicornTemplateIndent = []|[{
23709
23678
selectors?: string[]
23710
23679
comments?: string[]
23711
23680
}]
23712
- // ----- no-autofix/unused-imports/no-unused-imports -----
23713
- type NoAutofixUnusedImportsNoUnusedImports = []|[(("all" | "local") | {
23714
- vars?: ("all" | "local")
23715
- varsIgnorePattern?: string
23716
- args?: ("all" | "after-used" | "none")
23717
- ignoreRestSiblings?: boolean
23718
- argsIgnorePattern?: string
23719
- caughtErrors?: ("all" | "none")
23720
- caughtErrorsIgnorePattern?: string
23721
- destructuredArrayIgnorePattern?: string
23722
- })]
23723
- // ----- no-autofix/unused-imports/no-unused-imports-ts -----
23724
- type NoAutofixUnusedImportsNoUnusedImportsTs = []|[(("all" | "local") | {
23725
- vars?: ("all" | "local")
23726
- varsIgnorePattern?: string
23727
- args?: ("all" | "after-used" | "none")
23728
- ignoreRestSiblings?: boolean
23729
- argsIgnorePattern?: string
23730
- caughtErrors?: ("all" | "none")
23731
- caughtErrorsIgnorePattern?: string
23732
- destructuredArrayIgnorePattern?: string
23733
- })]
23734
- // ----- no-autofix/unused-imports/no-unused-vars -----
23735
- type NoAutofixUnusedImportsNoUnusedVars = []|[(("all" | "local") | {
23736
- vars?: ("all" | "local")
23737
- varsIgnorePattern?: string
23738
- args?: ("all" | "after-used" | "none")
23739
- ignoreRestSiblings?: boolean
23740
- argsIgnorePattern?: string
23741
- caughtErrors?: ("all" | "none")
23742
- caughtErrorsIgnorePattern?: string
23743
- destructuredArrayIgnorePattern?: string
23744
- })]
23745
- // ----- no-autofix/unused-imports/no-unused-vars-ts -----
23746
- type NoAutofixUnusedImportsNoUnusedVarsTs = []|[(("all" | "local") | {
23747
- vars?: ("all" | "local")
23748
- varsIgnorePattern?: string
23749
- args?: ("all" | "after-used" | "none")
23750
- ignoreRestSiblings?: boolean
23751
- argsIgnorePattern?: string
23752
- caughtErrors?: ("all" | "none")
23753
- caughtErrorsIgnorePattern?: string
23754
- destructuredArrayIgnorePattern?: string
23755
- })]
23756
23681
// ----- no-autofix/use-isnan -----
23757
23682
type NoAutofixUseIsnan = []|[{
23758
23683
enforceForSwitchCase?: boolean
0 commit comments