Skip to content

Instantly share code, notes, and snippets.

@attaboy
attaboy / pre-commit
Last active October 6, 2015 07:08
git pre-commit hook for jshinting before you commit
#!/bin/sh
# A pre-commit hook for git to lint JavaScript files with jshint
# @see https://github.com/jshint/jshint/
if git rev-parse --verify HEAD >/dev/null 2>&1
then
against=HEAD
else
# Initial commit: diff against an empty tree object
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904