A JavaScript / Typescript import sorter.
Originally built specifically for JVS.
Just running jisort
will search and sort files recursively from the current folder.
You can alter that behavior by specifying the folder you want to sort with jisort <project-folder>
.
You can also run it against a single file with jisort <file>
.
You can use the --globs
option to override the default ones.
The default globs match every js
, jsx
, ts
or tsx
file.
jisort will include:
- Hidden files
- Files matching the given globs (except if they are in the following category)
jisort will not include:
- Files listed in
.gitignore
(see full list here) - Files under hidden dirs
NOTE: List included files with jisort --list
.
See jisort --help
for all options and documentation.
Method | Command |
---|---|
cargo | cargo install jisort |
source | cargo install --git https://github.com/Valentin271/jisort |
You can download the appropriate binary for your platform on the release page.