fea(githooks): hit pre-commit and commit-msg hooks

This commit is contained in:
2024-11-03 18:38:28 +01:00
parent a474783a02
commit 3cc9799bdc
6 changed files with 765 additions and 11 deletions

8
.githooks/commit-msg Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
echo -e "\e[35m➤ [COMMIT]\e[0m Checking message\e[37m - \e[33m$(date +"%H:%M:%S")\e[0m"
# npx commitlint --edit $1
if [[ $? != 0 ]]; then
echo -e "\e[31m➤ [COMMIT]\e[0m Wrong format on message\e[37m - \e[33m$(date +"%H:%M:%S")\e[0m"
exit -1
fi
echo -e "\e[32m➤ [COMMIT]\e[0m Message ok\e[37m - \e[33m$(date +"%H:%M:%S")\e[0m"