aboutsummaryrefslogtreecommitdiffstats
path: root/validate-commit-msg.js
diff options
context:
space:
mode:
authorIgor Minar2012-11-11 12:06:05 +0100
committerIgor Minar2012-11-26 21:05:38 +0100
commitcfe13b5dac3d1260400bb55194f2bc27169fd360 (patch)
tree3a673ded7aeeadf1d21c80412fc4bc2cd2a4e4c4 /validate-commit-msg.js
parentd859dcecea654d1d858cd756c6efb8435a453197 (diff)
downloadangular.js-cfe13b5dac3d1260400bb55194f2bc27169fd360.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
};