import-sort-style-eslint
TypeScript icon, indicating that this package has built-in type declarations

6.0.0 • Public • Published

import-sort-style-eslint

A style for import-sort that conforms to the ESLint rule sort-imports.

// Modules with side effects (not sorted because order may matter)
import "a";
import "c";
import "b";
 
// Modules with only namespace member sorted by member
import * as aa from "aa";
import * as bb from "bb";
 
// Modules with multiple members sorted by first member
import aaa, {bbb} from "aaa";
import {ccc, ddd} from "ccc";
import eee, * as fff from "eee";
 
// Modules with single member sorted by member
import aaaa from "aaaa";
import {bbbb} from "bbbb";
 

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
6.0.015,738latest
2.4.0-alpha.59e197030canary

Version History

VersionDownloads (Last 7 Days)Published
6.0.015,738
5.0.00
4.2.017
4.1.00
4.0.00
3.0.04
2.4.0-alpha.59e197030
2.4.0-alpha.33c2ea460
2.4.00
2.3.00
2.0.140
2.0.90
2.0.60
2.0.40
2.0.30
2.0.10
2.0.00

Package Sidebar

Install

npm i import-sort-style-eslint

Weekly Downloads

13,491

Version

6.0.0

License

ISC

Unpacked Size

5.35 kB

Total Files

6

Last publish

Collaborators

  • renke