-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cz-config.js
68 lines (66 loc) Β· 1.91 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
60
61
62
63
64
65
66
67
68
module.exports = {
types: [
{
value: ':sparkles: feat',
name: 'β¨ feat:\tAdding a new feature',
},
{
value: ':bug: fix',
name: 'π fix:\tFixing a bug',
},
{
value: ':memo: docs',
name: 'π docs:\tAdd or update documentation',
},
{
value: ':lipstick: style',
name: 'π style:\tAdd or update styles, ui or ux',
},
{
value: ':recycle: refactor',
name: 'β»οΈ refactor:\tCode change that neither fixes a bug nor adds a feature',
},
{
value: ':zap: perf',
name: 'β‘οΈ perf:\tCode change that improves performance',
},
{
value: ':white_check_mark: test',
name: 'β
test:\tAdding tests cases',
},
{
value: ':truck: chore',
name: 'π chore:\tChanges to the build process or auxiliary tools\n\t\tand libraries such as documentation generation',
},
{
value: ':rewind: revert',
name: 'βͺοΈ revert:\tRevert to a commit',
},
{
value: ':construction: wip',
name: 'π§ wip:\tWork in progress',
},
{
value: ':construction_worker: build',
name: 'π· build:\tAdd or update regards to build process',
},
{
value: ':green_heart: ci',
name: 'π ci:\tAdd or update regards to build process',
},
],
scopes: [],
scopeOverrides: {
fix: [
{ name: 'merge' },
{ name: 'style' },
{ name: 'test' },
{ name: 'hotfix' },
],
},
allowCustomScopes: true,
allowBreakingChanges: ['feat', 'fix'],
// skip any questions you want
skipQuestions: ['footer', 'breaking'],
subjectLimit: 100,
};