Add Husky for proactive checks

This commit is contained in:
Matt Alioto
2020-05-29 20:12:40 -04:00
parent 8388fb6ff7
commit 400e687804
2 changed files with 131 additions and 0 deletions

View File

@ -11,6 +11,12 @@
"test": "jest",
"update-installers": "nwget https://dot.net/v1/dotnet-install.ps1 -O externals/install-dotnet.ps1 && nwget https://dot.net/v1/dotnet-install.sh -O externals/install-dotnet.sh"
},
"husky": {
"hooks": {
"pre-commit": "npm run format",
"pre-push": "npm run test && npm run format-check"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/setup-dotnet.git"
@ -38,6 +44,7 @@
"@types/node": "^12.0.4",
"@types/semver": "^6.0.0",
"@zeit/ncc": "^0.21.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-circus": "^26.0.1",
"prettier": "^1.17.1",