Skip to content

Instantly share code, notes, and snippets.

@hacklschorsch
Forked from founddrama/gist:1013614
Created May 25, 2012 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hacklschorsch/2788656 to your computer and use it in GitHub Desktop.
Save hacklschorsch/2788656 to your computer and use it in GitHub Desktop.
a jshint pre-commit hook for git
#!/bin/bash
# A pre-commit hook for git to lint JavaScript files with jshint
# @see https://github.com/jshint/jshint/
#
# @see http://blog.founddrama.net/2011/06/jshint-pre-commit-hook-for-git
# @see https://gist.github.com/1013614
#
# Modified by fs@it-agenten.com 2012-05-22 for node.js and explicit /bin/bash
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
REPO=$(pwd)
EXIT_CODE=0
for FILE in `git diff-index --name-only ${against} -- | egrep *.js`; do
jshint ${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