chore(validate-commit-msg): recognize 'revert' as valid commit type

This commit is contained in:
Igor Minar
2012-11-11 12:06:05 +01:00
parent 5ee3bbee90
commit f5b567d44b
2 changed files with 3 additions and 1 deletions

View File

@@ -22,7 +22,8 @@ var TYPES = {
style: true,
refactor: true,
test: true,
chore: true
chore: true,
revert: true
};