GitXplorerGitXplorer
t

organize-imports-cli

public
100 stars
14 forks
12 issues

Commits

List of commits on branch master.
Unverified
ed5cfc67a14fdbee2d52664c40f1649f503048d9

release v0.10.0

tthorn0 committed 3 years ago
Unverified
3eb93d4897fa3dfd0dda6d68b7087231b5b76524

Add test for grouped imports

tthorn0 committed 3 years ago
Verified
7c0e51f9ff1935a293fe097ffb7250987f19214a

Bump ts-morph from 13.0.2 to 15.0.0 (#191)

ddependabot[bot] committed 3 years ago
Verified
3116554a2ffdbefbe1623d904d57a9ff8e0c683e

Bump jest from 27.4.3 to 28.1.0 (#187)

ddependabot[bot] committed 3 years ago
Verified
85e300490821d325f06b77d798da2e729faa68dc

Bump @types/node from 16.11.11 to 17.0.35 (#189)

ddependabot[bot] committed 3 years ago
Unverified
7ec91f804158cd2347a0f3508b77444eb252462b

release v0.9.0

tthorn0 committed 3 years ago

README

The README file for this repository.

organize-imports-cli

VS Code's 'Organize imports' executable from command line

Plays nicely with Prettier and lint-staged:

"lint-staged": {
  "*.ts": [
    "organize-imports-cli",
    "prettier --write"
  ]
}

Usage

> organize-imports-cli [--list-different] files...

Files can be specific ts and js files or tsconfig[.*].json, in which case the whole project is processed.

Files containing the substring // organize-imports-ignore are skipped.

The --list-different flag prints a list of files with unorganized imports. No files are modified.