Skip to content

Instantly share code, notes, and snippets.

@zerdos
Last active February 19, 2019 07:30
Show Gist options
  • Save zerdos/ce1a17b4f1d10d8fdba590e1e6254d53 to your computer and use it in GitHub Desktop.
Save zerdos/ce1a17b4f1d10d8fdba590e1e6254d53 to your computer and use it in GitHub Desktop.
Precommit hook with husky + lint-staged
{
"devDependencies": {
"husky": "^1.3.1",
"prettier": "^1.16.4",
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,css,js,scss,html,yml,md,json}": [
"yarn run prettier --write",
"git add"
]
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment