Open AntonioVentilii opened 1 week ago
We include rule consistent-type-imports, that, among other things, will change:
import { type CustomType } from 'types.ts' import { type CustomType1, type CustomType2 } from 'types.ts'
to
import type { CustomType } from 'types.ts' import type { CustomType1, CustomType2 } from 'types.ts'
Motivation
We include rule consistent-type-imports, that, among other things, will change:
to