Skip to content

Instantly share code, notes, and snippets.

@brunosabot
Created August 16, 2019 08:44
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 brunosabot/4eac55bd532a55a8f02f372050ba840e to your computer and use it in GitHub Desktop.
Save brunosabot/4eac55bd532a55a8f02f372050ba840e to your computer and use it in GitHub Desktop.
{
"name": "pre-commit-worflow",
"version": "0.0.1",
"lint-staged": {
"*.css": [
"prettier --write",
"stylelint --fix",
"git add"
],
"*.{js,jsx}": [
"react-scripts test --findRelatedTests",
"eslint --ext .js,.jsx",
"prettier --write",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment