Differences between revisions 1 and 4 (spanning 3 versions)
Revision 1 as of 2010-11-26 23:14:53
Size: 884
Comment:
Revision 4 as of 2010-11-26 23:18:52
Size: 1527
Comment: Better section levels
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
= CheckFielsExtension = = CheckFilesExtension =
Line 12: Line 12:
''Author: Marcus Lindblom '' ''Author: MarcusLindblom ''
Line 18: Line 18:
== Configuration == === Configuration ===
Line 31: Line 31:
=== 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: 8 or checkfiles.tab_size)

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

CheckFilesExtension

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.

1. Status

This extension is/is not distributed with Mercurial.

Author: MarcusLindblom

Download site: https://bitbucket.org/marcusl/ml-hgext/src/tip/checkfiles.py

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

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: 8 or checkfiles.tab_size)

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


CategoryExtension CategoryExtensionsByOthers

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