Sha256: 8dfb183e9d8ecdf5a3cf87a9b3fdddc8bb05c41709250593ed5282b7118bb264
Contents?: true
Size: 1.51 KB
Versions: 1
Compression:
Stored size: 1.51 KB
Contents
A better pre-commit hook for git. ## Installation Install the gem $ gem install pre-commit Use the pre-commit command to generate a stub pre-commit hook # In your git repo $ pre-commit install This creates a .git/hooks/pre-commit script which will check your git config and run checks that are enabled. ## Configuration These are the available checks: * white_space * console_log * debugger * tabs * jshint * js\_lint\_all (Runs JSLint on all staged JS files) * js\_lint\_new (Runs JSLint on all new staged JS files) * closure\_syntax\_check * php (Runs php -l on all staged files) * ruby_symbol_hashrockets (1.9 syntax. BAD :foo => "bar". GOOD foo: "bar") * local (executes `config/pre-commit.rb` with list of changed files) * merge conflict (Will check if you are about to check in a merge conflict) * migrations (Will make sure you check in the proper files after creating a Rails migration) * ci (Will run the `pre_commit:ci` rake task and pass or fail accordingly) To configure which checks you would like to run, simply set the `pre-commit.checks` git configuration setting. To enable `white_space` and `tab` checks: # From your git repo $ git config "pre-commit.checks" "white_space, tabs" To enable `white_space`, `console_log` and `debugger` checks: # From your git repo $ git config "pre-commit.checks" "white_space, console_log, debugger" Note: If no checks are configured, a default set of checks is run: white_space, console_log, debugger, tabs, jshint, migrations, merge_conflict, local
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pre-commit-0.7.0 | README.md |