Skip to content

Commit 5821926

Browse files
authoredJul 15, 2023
fix(plugin): allow empty type import (#218)
1 parent 3ef955d commit 5821926

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎packages/eslint-plugin-antfu/src/rules/prefer-inline-type-import.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const valids = [
66
'import { type Foo } from \'foo\'',
77
'import type Foo from \'foo\'',
88
'import type * as Foo from \'foo\'',
9+
'import type {} from \'foo\'',
910
]
1011
const invalids = [
1112
['import type { Foo } from \'foo\'', 'import { type Foo } from \'foo\''],

‎packages/eslint-plugin-antfu/src/rules/prefer-inline-type-import.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default createEslintRule<Options, MessageIds>({
3030
// ignore bare type imports
3131
if (node.specifiers.length === 1 && ['ImportNamespaceSpecifier', 'ImportDefaultSpecifier'].includes(node.specifiers[0].type))
3232
return
33-
if (node.importKind === 'type') {
33+
if (node.importKind === 'type' && node.specifiers.length > 0) {
3434
context.report({
3535
*fix(fixer) {
3636
yield * removeTypeSpecifier(fixer, sourceCode, node)

0 commit comments

Comments
 (0)
Please sign in to comment.