import-sort-style-vmv
Style for import-sort.
Install:
npm install -save-dev import-sort-style-vmv
Example of sorting:
// 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 React eco-system (react, prop-types, redux modules) library sorted by name
import React from "react";
import PropTypes from "prop-types";
import { connect } from "react-redux";
// 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";
// Scoped modules (@-prefixed), sorted by module name.
import aa from "@a/a";
import { bb } from "@b/b";
// 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";
// Util modules sorted by absolute & relative paths and then by name
import utils from "utils";
import utils from "./utils";
import utils from "./utils/abc";
// Constant modules sorted by absolute & relative paths and then by name
import { ABC } from "constants";
import { ABC } from "./constants";
import { ABC } from "./constants/abc";
// First-party styles modules sorted by "relative depth" and then by name
import styles from "./Component.scss";
// Types & Interfaces
import types from "./types"