A set of useful hooks for Mercurial
Project description
hghooks
hghooks is a simple module that adds several useful hooks for use in Mercurial hooks system.
Right now it includes hooks for:
pep8 checking of python files
pyflakes checking of python files
checking for forgotten pdb statements in python files
Documentation
Installation
hghooks is distributed as a Python egg so is quite easy to install. You just need to type the following command:
easy_install hghooks
And Easy Install will go to the Cheeseshop and grab the last hghooks for you. It will also install it for you at no extra cost :-)
Usage
To use one of the hooks provided by this package edit your hgrc file of your Mercurial repository and add these lines:
[hooks] pretxncommit.pep8 = python:hghooks.pep8hook pretxncommit.pyflakes = python:hghooks.pyflakeshook pretxncommit.pdb = python:hghooks.pdbhook
You can add as many hooks as you need. From version 0.2.0 it supports the pretxnchangegroup hook too.
How to skip the hooks
If you need to avoid a hook for a specific changeset you can add one or more of the following keywords to the commit message: no-pep8, no-pyflakes and no-pdb.
On the other hand, if you want to avoid a hook in a specific file you can add a comment somewhere in the file saying so. For example:
# hghooks: no-pyflakes no-pdb
in this case the pyflakes and pdb hooks will skip this file. The “# hghooks:” prolog is important and you have to type it exactly like that. Then add the skip keyworkds separated by spaces.
Changes
0.2.0 (2010-10-14)
Support for the pretxnchangegroup hook
0.1.2 (2010-08-31)
Fixes issue #2 about erros when removing files
0.1.1 (2010-06-13)
Add documentatin about how to skip the checks
0.1.0 (2010-06-13)
Initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file hghooks-0.2.0.tar.gz
.
File metadata
- Download URL: hghooks-0.2.0.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c95eb473f847d770980040b726b7f35402658c78510b20d2b8b18e54e3a5589 |
|
MD5 | 6f41a74a62e89c6dc4744ae2fe2904cb |
|
BLAKE2b-256 | 7d45d6176dbd1188b01b3b6318bfa995f2edae8b0c3cc02156b22c34365d9eb9 |