Differences between revisions 2 and 10 (spanning 8 versions)
Revision 2 as of 2010-11-26 23:16:34
Size: 1524
Comment: Typo
Revision 10 as of 2010-11-29 20:04:50
Size: 2481
Comment: Added ohloh.net link
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 10: Line 11:
'''This extension is/is not distributed with Mercurial.''' '''This extension is not distributed with Mercurial.'''
Line 12: Line 13:
''Author: Marcus Lindblom '' ''Author: MarcusLindblom ''
Line 14: Line 15:
Download site: https://bitbucket.org/marcusl/ml-hgext/src/tip/checkfiles.py  * Download site: https://bitbucket.org/marcusl/ml-hgext/src/tip/checkfiles.py
 * Issue tracker: https://bitbucket.org/marcusl/ml-hgext/issues
Line 17: Line 19:

By avoiding commits with tab characters or trailing whitespace on lines, there is less noise in the diffs and the actual code changes are clearer.

The extensions adds a command {{{checkfiles}}} which reports issues in the working directory. Using --fixup will instead fix these files by replacing tabs with spaces and

There is also two hooks:
 * {{{check_hook}}} - checks and blocks commits with issues, useable in {{{pretxncommit}}} or {{{pretxnchangegroup}}}
 * {{{fixup_hook}}} - automatically fixes issues in files on commit, useable in {{{pre-commit}}}

If you like it, drop a note here: https://www.ohloh.net/p/ml-hgext
Line 25: Line 37:
[hooks]
pretxnchangegroup.checkfiles = python:/path/to/checkfiles.py:check_hook
pretxncommit.checkfiles = python:/path/to/checkfiles.py:check_hook
pre-commit.checkfiles = python:/path/to/checkfiles.py:fixup_hook
Line 31: Line 48:
== Usage == === Usage ===
Line 42: Line 59:
    If problems are found, the command returns 1, otherwise 0.     If problems are found, the command returns 1, otherwise 0.      If --fixup is given, the return value is always 0 (unless an error occurs).
Line 46: Line 64:
 -f --fixup fix files by replacing tabs and removing trailing whitespace
 -t --tabsize set the tab length (default: 8 or checkfiles.tab_size)
 -f --fixup       fix files by replacing tabs and removing trailing whitespace
 -t --tabsize VALUE set the tab length (default: 4)
Line 53: Line 71:
CategoryExtension CategoryExtensionsByOthers CategoryExtensionsByOthers

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 not distributed with Mercurial.

Author: MarcusLindblom

2. Overview

By avoiding commits with tab characters or trailing whitespace on lines, there is less noise in the diffs and the actual code changes are clearer.

The extensions adds a command checkfiles which reports issues in the working directory. Using --fixup will instead fix these files by replacing tabs with spaces and

There is also two hooks:

  • check_hook - checks and blocks commits with issues, useable in pretxncommit or pretxnchangegroup

  • fixup_hook - automatically fixes issues in files on commit, useable in pre-commit

If you like it, drop a note here: https://www.ohloh.net/p/ml-hgext

3. Configuration

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

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

[hooks]
pretxnchangegroup.checkfiles = python:/path/to/checkfiles.py:check_hook
pretxncommit.checkfiles = python:/path/to/checkfiles.py:check_hook
pre-commit.checkfiles = python:/path/to/checkfiles.py:fixup_hook

[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

3.1. 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. 
    If --fixup is given, the return value is always 0 (unless an error occurs).

options:

 -f --fixup          fix files by replacing tabs and removing trailing whitespace
 -t --tabsize VALUE  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)