-
Notifications
You must be signed in to change notification settings - Fork 2
/
commitlint.config.js
75 lines (57 loc) · 1.36 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
/**
* @file commitlint配置文件
* @author fly
* @date 2022.05.30
*/
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',
// 测试
'test',
// 重构
'refactor',
// 编译打包方面的代码提交
'build',
// 持续集成方面的代码提交
'ci',
// 持续部署方面的代码提交
'cd',
// 数据库方面的代码提交
'db',
// 其他修改,比如构建流程,依赖管理
'chore',
// 回滚
'revert',
// 工作流
'workflow',
// 定义类型
'types',
// 配置
'config',
// 依赖管理
'dependency',
],
],
},
};