You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Cédric Pasteur 747c2aaad5 New convention: 100 columns per line
Please follow this rule
13 years ago
..
README Added git hooks for lexical syntax checking. 14 years ago
pre-commit New convention: 100 columns per line 13 years ago
update Added git hooks for lexical syntax checking. 14 years ago

README

This directory holds two shell scripts that can be used in conjunction with git
to reject commits containing ill-formed .ml / .mli files. Are considered
ill-formed files that contain:

* Trailing whitespace.
* Lines spanning more than 80 columns.
* Tab characters.

The "pre-commit" and "update" scripts respectively handle local commits ("git
commit") and remote calls to "git push". To enable a script, just copy it to
$GIT_DIR/hooks/.

For more information, refer to the githooks manual page.

-- Adrien Guatto