feat(husky): added husky commit-msg check
This commit is contained in:
@@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
if ! head -1 "$1" | grep -qE "^(feat|fix|chore|docs|test|style|refactor|perf|build|ci|revert)(\(.+?\))?: .{1,}$"; then
|
||||||
|
echo "Aborting commit. Your commit message is invalid." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if ! head -1 "$1" | grep -qE "^.{1,88}$"; then
|
||||||
|
echo "Aborting commit. Your commit message is too long." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user