mirror of
https://git.zavage.net/Zavage-Software/skrill-frontend.git
synced 2025-01-18 16:25:28 -07:00
10 lines
215 B
Plaintext
10 lines
215 B
Plaintext
|
#!/bin/sh
|
||
|
. "$(dirname "$0")/_/husky.sh"
|
||
|
|
||
|
npx --no-install commitlint --edit "$1" --quiet ||
|
||
|
(
|
||
|
echo -e "\n❌ Please check commit message format! \n"
|
||
|
false;
|
||
|
)
|
||
|
|
||
|
echo -e "✅ Commit message format correct! \n"
|