-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommitlint.config.js
84 lines (62 loc) · 1.66 KB
/
commitlint.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
module.exports = {
extends: ['@commitlint/config-conventional'],
// 自定义提交消息规则
rules: {
'body-leading-blank': [2, 'always'],
'footer-leading-blank': [1, 'always'],
'header-max-length': [2, 'always', 108],
'subject-empty': [2, 'never'],
'type-empty': [2, 'never'],
'type-enum': [
2,
'always',
// Git提交的信息,开头可引用以下这些类型
[
// 功能方面的提交
'feat',
// Bug方面的提交
'fix',
// 性能方面的提交
'perf',
// 针对代码样式的提交(不是CSS样式)
'style',
// 文档方面的提交
'docs',
// 数据方面的提交
'data',
// 测试方面的提交
'test',
// 重构方面的提交
'refactor',
// 编译打包方面的提交
'build',
// 持续集成方面的提交
'ci',
// 持续部署方面的提交
'cd',
// 数据库方面的提交
'db',
// 其他修改,比如构建流程,依赖管理
'chore',
// 回滚方面的提交
'revert',
// 工作流方面的提交
'workflow',
// 定义TS类型方面的提交
'types',
// 配置方面的提交
'config',
// 重命名方面的提交
'rename',
// 优化方面的提交
'refine',
// 清除废弃多余无用代码文件的提交
'clean',
// 整理代码及文件方面的提交
'organize',
// 依赖管理方面的提交
'dependency',
],
],
},
};