From 51200a8e247abe7c278d2c279f29f9d92c7eec67 Mon Sep 17 00:00:00 2001 From: Kevin Deng Date: Sun, 14 Dec 2025 22:39:44 +0800 Subject: [PATCH] chore: update typegen --- eslint-typegen.d.ts | 10 +++++----- package.json | 6 ++++++ 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/eslint-typegen.d.ts b/eslint-typegen.d.ts index 0085f35..77a8296 100644 --- a/eslint-typegen.d.ts +++ b/eslint-typegen.d.ts @@ -19,11 +19,6 @@ export interface RuleOptions { * @see https://github.com/sxzz/eslint-plugin-importer/blob/main/src/rules/first.test.ts */ 'import/first'?: Linter.RuleEntry - /** - * Fix duplication in imports - * @see https://github.com/sxzz/eslint-plugin-importer/blob/main/src/rules/import-dedupe.test.ts - */ - 'import/import-dedupe'?: Linter.RuleEntry<[]> /** * Enforce a newline after import statements. * @see https://github.com/sxzz/eslint-plugin-importer/blob/main/src/rules/newline-after-import.test.ts @@ -39,6 +34,11 @@ export interface RuleOptions { * @see https://github.com/sxzz/eslint-plugin-importer/blob/main/src/rules/no-duplicates.test.ts */ 'import/no-duplicates'?: Linter.RuleEntry + /** + * Fix duplication in imports + * @see https://github.com/sxzz/eslint-plugin-importer/blob/main/src/rules/import-dedupe.test.ts + */ + 'import/no-duplicates-specifier'?: Linter.RuleEntry<[]> /** * Forbid the use of mutable exports with `var` or `let`. * @see https://github.com/sxzz/eslint-plugin-importer/blob/main/src/rules/no-mutable-exports.test.ts diff --git a/package.json b/package.json index ba03052..396cc73 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,12 @@ "bugs": { "url": "https://github.com/sxzz/eslint-plugin-importer/issues" }, + "keywords": [ + "eslint", + "plugin", + "import" + ], + "sideEffects": false, "exports": { ".": "./dist/index.js", "./package.json": "./package.json" -- 2.51.2