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 https://github.com/import-js/eslint-plugin-import/issues/2469 and https://github.com/typescript-eslint/typescript-eslint/pull/5050#discussion_r889606802