Skip to content

Commit 16b7b8a

Browse files
committed
fix: fix config
1 parent 1c0a221 commit 16b7b8a

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

commitlint.config.js

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
module.exports = {
22
extends: ['@commitlint/config-conventional'],
33
rules: {
4-
'header-max-length': [2, 'always', 72],
4+
'type-enum': [
5+
2,
6+
'always',
7+
[
8+
'feat',
9+
'fix',
10+
'docs',
11+
'chore',
12+
'style',
13+
'refactor',
14+
'ci',
15+
'test',
16+
'revert',
17+
'perf',
18+
'vercel',
19+
],
20+
],
521
},
622
};

0 commit comments

Comments
 (0)