aboutsummaryrefslogtreecommitdiffstats
path: root/validate-commit-msg.js
diff options
context:
space:
mode:
authorIgor Minar2012-11-11 12:06:05 +0100
committerIgor Minar2012-11-11 12:06:05 +0100
commitf5b567d44b93d3885cf4ee7be5480d66ce2d4fb0 (patch)
treec2faea7fe227aecb4ec84517aa1a68a0a24448cf /validate-commit-msg.js
parent5ee3bbee909fa8e5b89cd1098ba8295e05fc16c3 (diff)
downloadangular.js-f5b567d44b93d3885cf4ee7be5480d66ce2d4fb0.tar.bz2
chore(validate-commit-msg): recognize 'revert' as valid commit type
Diffstat (limited to 'validate-commit-msg.js')
-rwxr-xr-xvalidate-commit-msg.js3
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
};