-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.cz-config.js
60 lines (57 loc) · 1.41 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
'use strict';
module.exports = {
types: [
{
value: 'WIP 💪',
name: '💪 WIP: Work in progress'
},
{
value: 'feat ✨',
name: '✨ feat: 添加新的功能或者特性'
},
{
value: 'fix 🐛',
name: '🐛 fix: 修复 bug'
},
{
value: 'refactor 🛠',
name: '🛠 refactor: 代码重构'
},
{
value: 'docs 📚',
name: '📚 docs: 修改文档'
},
{
value: 'test 🏁',
name: '🏁 test: 添加单元测试'
},
{
value: 'style 💅',
name: '💅 style: 格式化代码'
},
{
value: 'docker 🐳',
name: '🐳 docker: docker 相关'
},
{
value: 'remove ➖',
name: '➖ remove: 减少第三方依赖'
},
{
value: 'add ➕',
name: '➕ add: 添加第三方依赖'
},
{
value: 'CI 👷',
name: '👷 CI: CI/CD 相关'
},
{
value: 'performance 🐎',
name: '🐎 performance: 性能优化'
},
{
value: 'revert ⏪',
name: '⏪ revert: Revert to a commit'
},
]
};