-
Notifications
You must be signed in to change notification settings - Fork 13
/
.czrc
55 lines (55 loc) · 1.09 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
{
"path": "cz-conventional-changelog",
"types": {
"feat": {
"description": "A new feature",
"name": "Feature"
},
"fix": {
"description": "A bug fix",
"name": "Fix"
},
"style": {
"description": "Changes to style files or css",
"name": "Style"
},
"hotfix": {
"description": "A hotfix",
"name": "Hotfix"
},
"refactor": {
"description": "A code change that neither fixes a bug nor adds a feature",
"name": "Refactor"
},
"chore": {
"name": "Chore",
"description": "Changes to the build process, auxiliary tools, libraries or packages"
},
"ci": {
"name": "CI/CD",
"description": "Changes to the CI/CD process"
},
"perf": {
"description": "A code change that improves performance",
"name": "Performance"
},
"docs": {
"description": "Changes to only documentation",
"name": "Documentation"
},
"revert": {
"description": "Reverts a previous commit",
"name": "Revert"
},
"merge": {
"description": "Merges a branch to another",
"name": "Merge"
}
},
"scopes": [
"root",
"webfront",
"ui",
"config"
]
}