Skip to content

Instantly share code, notes, and snippets.

@vijayst
Created November 11, 2017 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vijayst/6df8cf86473f4e40e39b8716fceadc9c to your computer and use it in GitHub Desktop.
Save vijayst/6df8cf86473f4e40e39b8716fceadc9c to your computer and use it in GitHub Desktop.
Prettify your code in pre-commit
{
"name": "prettierdemo",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"prettier": "^1.8.2"
},
"scripts": {
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --tab-width 4 --write",
"git add"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment