-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
.czrc
29 lines (29 loc) · 752 Bytes
/
.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
{
"path": "cz-conventional-changelog",
"types": {
"chore": {
"description": "Any other change that doesn't modify source files",
"title": "Chore"
},
"docs": {
"description": "Documentation only changes",
"title": "Documentation"
},
"release": {
"description": "A commit intended for publishing a new release",
"title": "Release"
},
"feat": {
"description": "A code change that implements a new feature",
"title": "Feature"
},
"fix": {
"description": "A code change that implements a bug fix",
"title": "Fix"
},
"refactor": {
"description": "A code change that neither fixes a bug nor adds a feature",
"title": "Refactor"
}
}
}