aboutsummaryrefslogtreecommitdiffstats
path: root/.husky
diff options
context:
space:
mode:
Diffstat (limited to '.husky')
-rwxr-xr-x.husky/commit-msg10
1 files changed, 10 insertions, 0 deletions
diff --git a/.husky/commit-msg b/.husky/commit-msg
new file mode 100755
index 000000000..02f50f1de
--- /dev/null
+++ b/.husky/commit-msg
@@ -0,0 +1,10 @@
1#!/bin/sh
2
3FILE_NAME="$(dirname "$0")/_/husky.sh"
4
5# Conditionally invoke so as to avoid running npm commands if this is a clean checkout (ie before installing npm modules)
6if [ -f $FILE_NAME ]; then
7 . $FILE_NAME
8
9 npx --no-install commitlint --edit "$1"
10fi