prettier-plugin-imports
Version:
A prettier plugins to sort imports in provided RegEx order
10 lines (8 loc) • 327 B
text/typescript
// I am top level comment
import otherthing from "@core/otherthing";
import abc from "@core/abc";
// I am comment
import twoLevelRelativePath from "../../twoLevelRelativePath";
import component from "@ui/hello";
import fourLevelRelativePath from "../../../../fourLevelRelativePath";
import something from "@server/something";