prettier-plugin-imports
Version:
A prettier plugins to sort imports in provided RegEx order
22 lines (17 loc) • 351 B
text/typescript
// prettier-ignore
import c from "c";
import b from "b";
import a from "a";
// prettier-ignore
import {h} from "h";
// prettier-ignore
import {g} from "g";
import {f} from "f";
import {d} from "d";
import {e} from "e";
// prettier-ignore
// some other comments
import z2 from "z2";
import z3 from "z3";
import z1 from "z1";
export const foo = 42;