Metadata-Version: 1.0
Name: hgspellcheck
Version: 1.0rc1
Summary: Hook and extension to spellcheck Mercurial commit messages
Home-page: http://bitbucket.org/ilowe/hgspellcheck/downloads
Author: Iain Lowe
Author-email: me@ilowe.net
License: MIT
Description: To check all commits for spelling mistakes, and interactively edit them when
        they occur, add the extension to the "extensions" section of your .hgrc.
        
        [extensions]
        hgspellcheck=
        
        To reject all inbound commits that have spelling mistakes, add the hook
        on "pretxnchangegroup".
        
        [hooks]
        # Reject all inbound changesets with spelling errors in their commit
        # messages
        pretxnchangegroup = python:hgspellcheck.hook
        
        # Refuse to create changesets in the local repository if their commit
        # messages contain spelling errors; this works for any commands that
        # create changesets (e.g. commit, qnew, qrecord)
        pretxncommit = python:hgspellcheck.hook
Keywords: mercurial hg scm spelling spellcheck spellchecker
Platform: UNKNOWN
