-
Notifications
You must be signed in to change notification settings - Fork 8
/
.cz-config.js
59 lines (58 loc) · 1.97 KB
/
.cz-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
const czConfig = {
types: [
{ value: 'feat', name: '特性: 新增一个功能' },
{ value: 'fix', name: '修复: 修复一个Bug' },
{ value: 'docs', name: '文档: 文档变更' },
{ value: 'style', name: '格式: 代码格式' },
{ value: 'refactor', name: '重构: 代码重构' },
{ value: 'perf', name: '性能: 改善性能' },
{ value: 'test', name: '测试: 测试代码' },
{ value: 'wip', name: '半成品: 开发中' },
{
value: 'build',
name:
'工具: 变更项目构建或外部依赖(例如scopes: webpack、gulp、npm等)',
},
{
value: 'ci',
name:
'集成: 更改持续集成软件的配置文件和package中的scripts命令,例如scopes: Travis, Circle等',
},
{
value: 'style',
name: '代码格式(不影响功能,例如空格、分号等格式修正)',
},
{
value: 'chore',
name: '构建: 变更构建流程或辅助工具',
},
{
value: 'revert',
name: '回退: 代码回退',
},
],
scopes: [
{ name: 'config' },
{ name: 'src/core' },
{ name: 'static' },
{ name: 'tests' },
{ name: 'views' },
{ name: 'readme' },
{ name: 'line' },
],
messages: {
type: '选择一种你的提交类型:',
scope: '选择一个scope (可选):',
customScope: '选择更改范围:',
subject: '短说明:\n',
body: '长说明,使用"|"换行(可选):\n',
breaking: '非兼容性说明 (可选):\n',
footer: '关联关闭的issue,例如:#31, #34(可选):\n',
confirmCommit: '确定提交说明?',
},
allowCustomScopes: true,
allowBreakingChanges: ['feat', 'fix', 'wip'],
// 限制主题长度
subjectLimit: 100,
}
module.exports = czConfig