Differences between revisions 6 and 7
Revision 6 as of 2010-11-27 15:36:33
Size: 1577
Editor: abuehl
Comment: fix cat
Revision 7 as of 2010-11-29 16:30:38
Size: 1683
Comment: Updated to match recent code changes
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
This extension installs a commit hook to prevent tabs and trailing whitespaces locally. It also provides a command to check the working directory files and optionally to fix problems found. This extension provides two hooks and a command to prevent committing tabs and trailing whitespaces.

The
hooks must be explicitly enabled in the hgrc/mercurial.ini file.
Line 30: Line 32:
autofixup = True # enable precommit hook to cleanup files automatically
commitcheck = True # enable pretxncommit hook to check incoming commits
Line 48: Line 52:
 -t --tabsize set the tab length (default: 8 or checkfiles.tab_size)  -t --tabsize set the tab length (default: 4)

CheckFilesExtension

This extension provides two hooks and a command to prevent committing tabs and trailing whitespaces.

The hooks must be explicitly enabled in the hgrc/mercurial.ini file.

1. Status

This extension is/is not distributed with Mercurial.

Author: MarcusLindblom

2. Overview

2.1. Configuration

Configure your .hgrc to enable the extension by adding following lines:

[extensions]
checkfiles = /path/to/checkfiles.py

[checkfiles]
checked_exts = .c .h .cpp .xml .cs .html .js .css .txt .py .nsi .java .aspx .asp .bat .cmd .glsl
ignored_files = foo/contains_tabs.txt bar/contains_trailing_ws.txt
tab_size = 4
autofixup = True # enable precommit hook to cleanup files automatically
commitcheck = True # enable pretxncommit hook to check incoming commits

2.2. Usage

hg checkfiles [options]

checks changed files in the working directory for tabs or trailing whitespace

    - --verbose shows the location of offending characters in each line
    - --quiet hides filenames and only reports summary information
    - --debug shows settings and details about each file considered for checking

    If problems are found, the command returns 1, otherwise 0.

options:

 -f --fixup    fix files by replacing tabs and removing trailing whitespace
 -t --tabsize  set the tab length (default: 4)

use "hg -v help checkfiles" to show global options


CategoryExtensionsByOthers

CheckFilesExtension (last edited 2012-02-15 19:25:33 by ks3095497)