1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| module.exports = {
| extends: ['@commitlint/config-conventional'],
| rules: {
| 'type-enum': [
| 2,
| 'always',
| [
| 'feat', // 新功能 feature
| 'fix', // 修复 bug
| 'docs', // 文档注释
| 'style', // 代码格式
| 'refactor', // 重构
| 'perf', // 性能优化
| 'test', // 增加测试
| 'chore', // 构建过程或辅助工具的变动
| 'revert', // 回退
| 'build' // 打包
| ]
| ],
| 'subject-case': [0]
| }
| };
|
|