forked from commitizen/conventional-commit-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.json
37 lines (37 loc) · 974 Bytes
/
index.json
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
{
"types": {
"component": {
"description": "A new component"
},
"prop": {
"description": "A new react prop"
},
"theme": {
"description": "Changes to a component's look and feel"
},
"fix": {
"description": "A bug fix"
},
"docs": {
"description": "Documentation only changes"
},
"formatting": {
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)"
},
"refactor": {
"description": "A code change that neither fixes a bug or adds a feature"
},
"perf": {
"description": "A code change that improves performance"
},
"test": {
"description": "Adding missing tests"
},
"chore": {
"description": "Changes to the build process or auxiliary tools and libraries such as documentation generation"
},
"revert": {
"description": "Reverts a previous commit"
}
}
}