A framework for managing and maintaining multi-language pre-commit hooks.
Find a file
2014-03-29 23:33:12 -07:00
pre_commit Fix python 2.6 2014-03-29 23:33:12 -07:00
scripts Ruby should work now 2014-03-14 10:45:00 -07:00
testing Adds failing test for cwd problem. 2014-03-29 13:00:29 -07:00
tests Fix python 2.6 2014-03-29 23:33:12 -07:00
.coveragerc Initial commit. 2014-03-12 20:25:19 -07:00
.gitignore added basic run single hook implmentation 2014-03-13 23:05:02 -07:00
.pre-commit-config.yaml Autoupdate pre-commit config. 2014-03-23 22:59:43 -07:00
.travis.yml Resolves cwd problem 2014-03-29 23:23:43 -07:00
example_manifest.yaml Use more-standard yaml format 2014-03-22 17:49:57 -07:00
example_pre-commit-config.yaml Use more-standard yaml format 2014-03-22 17:49:57 -07:00
Makefile Simplify requirements.txt 2014-03-22 18:36:59 -07:00
manifest.yaml Add Runner interface. 2014-03-23 16:22:24 -07:00
README.md Oops was using the incorrect travis bling 2014-03-22 18:39:48 -07:00
requirements.txt Simplify requirements.txt 2014-03-22 18:36:59 -07:00
setup.py Add OrderedDict dependency. Make sure hooks are run in a deterministic order 2014-03-23 12:35:29 -07:00

Build Status

pre-commit

A framework for managing and maintaining multi-language pre-commit hooks.

Some out-of-the-box hooks: https://github.com/pre-commit/pre-commit-hooks

What is a "pre-commit"

A pre-commit is some code that runs before commiting code to do some spot-checking for some basic programming mistakes.

Why make this project?

We noticed that when creating a git repo it was not convenient to create pre-commit hooks. Often we resorted to copy/paste to include a set of useful hooks. https://github.com/causes/overcommit is an awesome project, but locked us into ruby and system packages -- which we wanted to avoid.