-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconventionalcommit.json
More file actions
41 lines (41 loc) · 1.1 KB
/
conventionalcommit.json
File metadata and controls
41 lines (41 loc) · 1.1 KB
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
{
"types": {
"refactor": {
"description": "Changes which neither fix a bug nor add a feature"
},
"fix": {
"description": "Changes which patch a bug"
},
"feat": {
"description": "Changes which introduce a new feature"
},
"build": {
"description": "Changes which affect the build system or external dependencies."
},
"chore": {
"description": "Changes which are not user-facing"
},
"style": {
"description": "Changes which do not affect code logic, such as whitespaces, formatting, missing semicolons"
},
"test": {
"description": "Changes which add missing tests or fix existing ones"
},
"docs": {
"description": "Changes which affect documentation"
},
"perf": {
"description": "Changes which improve performance"
},
"ci": {
"description": "Changes which affect CI configuration files and scripts"
},
"revert": {
"description": "Changes which revert a previous commit"
},
"localize": {
"description": "Changes to localization"
}
},
"footerTypes": []
}