diff options
| author | Igor Minar | 2012-11-11 12:06:05 +0100 | 
|---|---|---|
| committer | Igor Minar | 2012-11-11 12:06:05 +0100 | 
| commit | f5b567d44b93d3885cf4ee7be5480d66ce2d4fb0 (patch) | |
| tree | c2faea7fe227aecb4ec84517aa1a68a0a24448cf /validate-commit-msg.js | |
| parent | 5ee3bbee909fa8e5b89cd1098ba8295e05fc16c3 (diff) | |
| download | angular.js-f5b567d44b93d3885cf4ee7be5480d66ce2d4fb0.tar.bz2 | |
chore(validate-commit-msg): recognize 'revert' as valid commit type
Diffstat (limited to 'validate-commit-msg.js')
| -rwxr-xr-x | validate-commit-msg.js | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/validate-commit-msg.js b/validate-commit-msg.js index dad507d1..7e8df6be 100755 --- a/validate-commit-msg.js +++ b/validate-commit-msg.js @@ -22,7 +22,8 @@ var TYPES = {    style: true,    refactor: true,    test: true, -  chore: true +  chore: true, +  revert: true  }; | 
