Skip to content

Instantly share code, notes, and snippets.

@brianyang
Created January 20, 2014 19:41
Show Gist options
  • Save brianyang/8527576 to your computer and use it in GitHub Desktop.
Save brianyang/8527576 to your computer and use it in GitHub Desktop.
pre-commit hook to run jshint
#!/bin/sh
files=$(git diff --cached --name-only --diff-filter=ACM | grep ".js$")
if [ "$files" = "" ]; then
exit 0
fi
pass=true
echo "\nValidating JavaScript:\n"
for file in ${files}; do
result=$(jshint ${file} | grep "${file} is OK")
if [ "$result" != "" ]; then
echo "\t\033[32mJShint Passed: ${file}\033[0m"
else
echo "\t\033[31mJShint Failed: ${file}\033[0m"
pass=false
fi
done
echo "\nJavaScript validation complete\n"
if ! $pass; then
echo "\033[41mCOMMIT FAILED:\033[0m Your commit contains files that should pass JShint but do not. Please fix the JShint errors and try again.\n"
exit 1
else
echo "\033[42mCOMMIT SUCCEEDED\033[0m\n"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment