prettier-plugin-imports
Version:
A prettier plugins to sort imports in provided RegEx order
8 lines (7 loc) • 294 B
text/typescript
import a from './local-file';
import type LocalType from './local-file';
import value from 'third-party';
import {specifier} from 'third-party';
import type ThirdPartyType from 'third-party';
import type {LocalSpecifierType} from './local-file';
import type {SpecifierType} from 'third-party';