Skip to content

Instantly share code, notes, and snippets.

@syammohanmp
Created September 1, 2023 13:52
Show Gist options
  • Save syammohanmp/27ff9d9f2a63015487de9ba6f18f12fe to your computer and use it in GitHub Desktop.
Save syammohanmp/27ff9d9f2a63015487de9ba6f18f12fe to your computer and use it in GitHub Desktop.
PHP Codesniffer to Git Pre commit
#!/bin/sh
PROJECT=$(php -r "echo dirname(dirname(dirname(realpath('$0'))));")
STAGED_FILES_CMD=$(git diff --cached --name-only --diff-filter=ACMR HEAD | grep \\.php)
UNSTAGED_FILES_CMD=$(git diff --name-only --diff-filter=ACMR | grep \\.php)
# Determine if a file list is passed
if [ "$#" -eq 1 ]
then
oIFS=$IFS
IFS='
'
SFILES="$1"
IFS=$oIFS
fi
SFILES=${SFILES:-$STAGED_FILES_CMD}
STAGED_BUT_MODIFIED_FILES=$(php -r "\$sfiles=(explode(\"\\n\", '$SFILES'));\$usfiles=(explode(\"\\n\", '$UNSTAGED_FILES_CMD'));echo implode(\"\\n\",array_intersect(\$usfiles,\$sfiles));")
if [ -z "$STAGED_BUT_MODIFIED_FILES" ]; then
echo "OK"
else
echo "Files staged but then modified:\n"
echo "${STAGED_BUT_MODIFIED_FILES}"
exit 1
fi
echo "Checking PHP Lint..."
for FILE in $SFILES
do
php -l -d display_errors=0 $PROJECT/$FILE
if [ $? != 0 ]
then
echo "Fix the error before commit."
exit 1
fi
FILES="$FILES $PROJECT/$FILE"
done
if [ "$FILES" != "" ]
then
echo "Running Code Sniffer."
./vendor/bin/phpcs -n -p --standard=Drupal,DrupalPractice $FILES
if [ $? != 0 ]
then
echo "Fix the error before commit!"
echo "Run"
echo " ./vendor/bin/phpcbf --standard=Drupal,DrupalPractice $FILES"
echo "for automatic fix or fix it manually."
exit 1
fi
fi
exit $?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment