biome icon indicating copy to clipboard operation
biome copied to clipboard

📎 Integrate `lint/useGroupedTypeImport` in `organizeImports`

Open Conaclos opened this issue 8 months ago • 5 comments

Description

useGroupedTypeImport allows factorizing type imports:

- import { type A, type B } from ""
+ import type { A, B } from ""

This behavior should be integrated into organize-imports action.

Conaclos avatar Oct 19 '23 16:10 Conaclos