Skip to content

Instantly share code, notes, and snippets.

@joshuacrass
Last active September 10, 2018 13:43
Show Gist options
  • Save joshuacrass/6a6882178313b056b22706bd113fcd32 to your computer and use it in GitHub Desktop.
Save joshuacrass/6a6882178313b056b22706bd113fcd32 to your computer and use it in GitHub Desktop.
react-eslint-prettier husky in package.json
"husky": {
"hooks": {
"pre-commit": "lint-staged",
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint"
],
"*.{js,jsx,json,md}": [
"prettier --list-different"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment