aboutsummaryrefslogtreecommitdiffstats
path: root/.husky/commit-msg
blob: 6ce506d3069d75beb38e9c4ba1e2881ec4d825dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

FILE_NAME="$(dirname "$0")/_/husky.sh"

# Conditionally invoke so as to avoid running npm commands if this is a clean checkout (ie before installing node modules)
if [ -f $FILE_NAME ]; then
  . $FILE_NAME

  npx --no-install commitlint --edit "$1"
fi