@1password/import-sort-style

An import-sort style that groups and sorts by module and sorts members naturally

Usage no npm install needed!

<script type="module">
  import 1passwordImportSortStyle from 'https://cdn.skypack.dev/@1password/import-sort-style';
</script>

README

import-sort-style-ag

A style for import-sort that is focused on modules, and sorts imported members naturally.

// Absolute modules with side effects (not sorted because order may matter)
import "a";
import "c";
import "b";

// Relative modules with side effects (not sorted because order may matter)
import "./a";
import "./c";
import "./b";

// Modules from the Node.js "standard" library sorted by name
import {readFile, writeFile} from "fs";
import * as path from "path";

// Third-party modules sorted by name
import aa from "aa";
import bb from "bb";
import cc from "cc";

// First-party modules sorted by "relative depth" and then by name
import aaa from "../../aaa";
import bbb from "../../bbb";
import aaaa from "../aaaa";
import bbbb from "../bbbb";
import aaaaa from "./aaaaa";
import bbbbb from "./bbbbb";