Skip to content

Instantly share code, notes, and snippets.

@prajwalit
Created July 23, 2012 10:04
Show Gist options
  • Save prajwalit/3162926 to your computer and use it in GitHub Desktop.
Save prajwalit/3162926 to your computer and use it in GitHub Desktop.
pre-commit hook (for mac)
#!/bin/sh
# A pre-commit hook for js
# It runs jshint on js files.
if git rev-parse --verify HEAD >/dev/null 2>&1
then
against=HEAD
else
# Initial commit: diff against an empty tree object
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi
EXIT_CODE=0
# @see https://github.com/jshint/jshint/
REPO=$(pwd)
JSHINT_BIN="/usr/local/bin/node /usr/local/bin/jshint"
for FILE in `git diff-index --name-only ${against} -- | egrep *.js`; do
echo ${REPO}
echo ${FILE}
${JSHINT_BIN} ${REPO}/${FILE}
EXIT_CODE=$((${EXIT_CODE} + $?))
done
if [ ${EXIT_CODE} -ne 0 ]
then
echo ""
echo "JSHint detected syntax problems."
echo "Commit aborted."
fi
exit $((${EXIT_CODE}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment