-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Description
The proposal here is to improve this rule and handle inline type modifiers
import { type Foo } from 'T';
import { type Bar } from 'T';
//^^^^^^^^^^^^^^^^^^^^ Error: duplicate import from module 'T' (import/no-duplicates)
Fixer
import { type Foo, type Bar } from 'T';
ref #2469 and typescript-eslint/typescript-eslint#5050 (comment)