mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-01-11 11:48:40 +00:00
30 lines
831 B
Bash
30 lines
831 B
Bash
git diff --cached --name-only | while read FILE; do
|
|
|
|
if [[ "$FILE" =~ ^.+(php|inc|module|install|test)$ ]]; then
|
|
if [[ -f $FILE ]]; then
|
|
|
|
# php lint
|
|
php -l "$FILE" 1> /dev/null
|
|
if [ $? -ne 0 ]; then
|
|
echo -e "\e[1;31m\tPhp linting error.\e[0m" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# phpcs
|
|
./vendor/bin/phpcs --standard="./Build/Config/phpcs.xml" --encoding=utf-8 -n -p $FILE
|
|
if [ $? -ne 0 ]; then
|
|
echo -e "\e[1;31m\tCode Sniffer error.\e[0m" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# phpmd
|
|
./vendor/bin/phpmd $FILE ./Build/Config/phpmd.xml --exclude *tests* --minimumpriority 1
|
|
if [ $? -ne 0 ]; then
|
|
echo -e "\e[1;31m\tMess Detector error.\e[0m" >&2
|
|
exit 1
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
done || exit $?
|