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/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 [email protected] 2012-05-22 for node.js and explicit /bin/bash | |
if git rev-parse --verify HEAD >/dev/null 2>&1 |