Skip to content

Instantly share code, notes, and snippets.

@JustenRickert
Created August 27, 2019 22:20
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 JustenRickert/fe9cedf60d1e6499123e5275901a0266 to your computer and use it in GitHub Desktop.
Save JustenRickert/fe9cedf60d1e6499123e5275901a0266 to your computer and use it in GitHub Desktop.
{
"scripts": {
"test": "jest"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"devDependencies": {
"husky": "^3.0.4",
"jest": "^24.9.0",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment