Skip to content

Instantly share code, notes, and snippets.

@githendrik
Created March 13, 2019 07:55
Show Gist options
  • Save githendrik/a064f38e2b7c4616eb123356db0a7786 to your computer and use it in GitHub Desktop.
Save githendrik/a064f38e2b7c4616eb123356db0a7786 to your computer and use it in GitHub Desktop.
Import Sort Precommit Hook
{
".ts": {
"parser": "typescript",
"style": "angular-alternative"
}
}
{
...
"devDependencies": {
"husky": "^1.3.1",
"import-sort": "^5.2.0",
"import-sort-cli": "^5.2.0",
"import-sort-parser-typescript": "^5.0.0",
"import-sort-style-angular-alternative": "^1.0.0",
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"import-sort --write",
"tslint --fix",
"git add"
]
},
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment