Created
June 4, 2012 08:57
-
-
Save kapilreddy/2867328 to your computer and use it in GitHub Desktop.
Precommit hook for js and clojure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# A pre-commit hook for js and clojure | |
# It runs jshint on js files. | |
# and runs lein2 midje. | |
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 | |
lein2 midje | |
EXIT_CODE=$((${EXIT_CODE} + $?)) | |
if [ ${EXIT_CODE} -ne 0 ] | |
then | |
echo "" | |
echo "Lein midje failed!" | |
echo "Commit aborted." | |
fi | |
# @see https://github.com/jshint/jshint/ | |
REPO=$(pwd) | |
JSHINT_HOME=jshint | |
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