-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.czvinylrc
54 lines (54 loc) · 1.28 KB
/
.czvinylrc
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
{
"headerFormat": "{type}: {subject}",
"commitTypes": [
{
"description": "一个新的功能",
"value": "feat"
},
{
"description": "一个BUG修复",
"value": "fix"
},
{
"description": "辅助工具更改或者无法分类的提交",
"value": "chore"
},
{
"description": "提高性能的代码更改",
"value": "perf"
},
{
"description": "不修复错误也不增加功能的重构代码",
"value": "refactor"
},
{
"description": "更新代码格式",
"value": "style"
},
{
"description": "添加测试用例",
"value": "test"
},
{
"description": "更新文档",
"value": "docs"
},
{
"description": "更新CI发版代码",
"value": "ci"
},
{
"description": "更新构建依赖等模块",
"value": "build"
}
],
"skipScope": true,
"skipTicketId": true,
"subjectMaxLength": 70,
"subjectMinLength": 3,
"typeQuestion": "请选择一个提交类型:",
"scopeQuestion": "请输入一个改动范围(可跳过):",
"ticketIdQuestion": "请输入一个Ticket ID:",
"subjectQuestion": "请输入一个提交信息:",
"bodyQuestion": "请输入一个提交详细内容(可跳过):"
}