forked from ibwei/vue3-ts-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.czrc
62 lines (62 loc) · 1.42 KB
/
.czrc
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
{
"path": "cz-conventional-changelog",
"disableScopeLowerCase": false,
"disableSubjectLowerCase": false,
"maxHeaderWidth": 100,
"maxLineWidth": 100,
"defaultType": "",
"defaultScope": "",
"defaultSubject": "",
"defaultBody": "",
"defaultIssues": "",
"types": {
"feat": {
"description": "新功能",
"title": "新增"
},
"fix": {
"description": "bug 修复",
"title": "修复"
},
"wip": {
"description": "功能正在开发中,提交以切换其他分支进行其他开发",
"title": "进行中"
},
"style": {
"description": "UI相关",
"title": "UI"
},
"refactor": {
"description": "代码重构",
"title": "重构"
},
"docs": {
"description": "文档更新",
"title": "文档"
},
"build": {
"description": "构建系统或者包依赖更新",
"title": "构建系统或者包依赖更新"
},
"ci": {
"description": "CI/CD,自动构建,持续集成相关",
"title": "CI/CD"
},
"test": {
"description": "测试用例相关",
"title": "测试"
},
"perf": {
"description": "优化",
"title": "优化"
},
"chore": {
"description": "非src或者测试文件的更新",
"title": "非 src 或者 测试文件的更新"
},
"revert": {
"description": "回到上一个版本",
"title": "回溯"
}
}
}