Skip to content

Commit

Permalink
fix(commitlint): fix type-enum options (#99)
Browse files Browse the repository at this point in the history
fixes #94, #98
  • Loading branch information
pi0 authored and joshwiens committed Mar 28, 2018
1 parent 47a5997 commit c301bbc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion templates/commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Configuration = {
'subject-full-stop': [2, 'never', '.'],
'type-case': [2, 'always', 'lower-case'],
'type-empty': [2, 'never'],
'type-enum': [
'type-enum': [2, 'always', [
'build',
'chore',
'ci',
Expand All @@ -24,6 +24,7 @@ const Configuration = {
'revert',
'style',
'test',
]
],
},
};
Expand Down

0 comments on commit c301bbc

Please sign in to comment.