Scripts for use in Git hooks.
$ npm i -D @bluecateng/git-checks husky
The provided scripts are meant to be used as githooks from husky
.
To check commit messages for story numbers use:
# .husky/commit-msg
npx --no-install check-git-msg-story $1
# .husky/pre-push
npx --no-install check-git-commits-story
To check commit messages without story numbers use:
# .husky/commit-msg
npx --no-install check-git-msg $1
# .husky/pre-push
npx --no-install check-git-commits