-
Notifications
You must be signed in to change notification settings - Fork 1
/
.czrc
58 lines (58 loc) · 1.35 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
{
"path": "cz-conventional-changelog",
"disableScopeLowerCase": false,
"disableSubjectLowerCase": false,
"maxHeaderWidth": 100,
"maxLineWidth": 100,
"defaultType": "",
"defaultScope": "",
"defaultSubject": "",
"defaultBody": "",
"defaultIssues": "",
"types": {
"feat": {
"title": "feat",
"description": "feature added"
},
"fix": {
"title": "fix",
"description": "bug fixed"
},
"perf": {
"title": "perf",
"description": "feature optimization"
},
"refactor": {
"description": "internal implementation refactoring",
"title": "refactor"
},
"docs": {
"description": "documents updating",
"title": "docs"
},
"ci": {
"description": "continuous integration & continuous deployment",
"title": "ci"
},
"chore": {
"description": "updated for non-src folders",
"title": "chore"
},
"build": {
"description": "system building or package dependency updating",
"title": "build"
},
"test": {
"description": "unit tests updated",
"title": "test"
},
"revert": {
"description": "git version reverted",
"title": "revert"
},
"wip": {
"description": "feature is under development, commit to switch other branches for other development",
"title": "wip"
}
}
}