Skip to content

Instantly share code, notes, and snippets.

@kailden
kailden / .ackrc
Created June 17, 2012 16:49
sample ackrc
--ignore-dir=gems
--ignore-dir=public
--ignore-dir=.jhw-cache
--ignore-dir=vendor
--type-set=haml=.haml
--type-set=sass=.sass
--type-set=scss=.scss
--type-set=rb=.rb
@kailden
kailden / pre-commit
Created December 2, 2010 17:01
Git pre commit hook for running jslint (installed as /usr/bin/jsl)
#!/bin/sh
# based on sample pre-commit hook distributed with git
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