forked from commitizen/cz-conventional-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommitTypes.json
44 lines (44 loc) · 1.11 KB
/
commitTypes.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
38
39
40
41
42
43
44
{
"types": {
"New feature": {
"description": "A new feature",
"emoji": "✨"
},
"Bugfix": {
"description": "A bug fix",
"emoji": "🐛"
},
"Refactor code": {
"description": "An improvement to a current feature",
"emoji": "🔨"
},
"Styles": {
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
"emoji": "💄"
},
"Configuration files": {
"description": "Changes a configuration file or code",
"emoji": "🔧"
},
"Tests": {
"description": "Adding missing tests or correcting existing tests",
"emoji": "🚨"
},
"Removing code/files": {
"description": "Removes codes or files",
"emoji": "🔥"
},
"Reverting changes": {
"description": "Reverts a previous commit",
"emoji": "⏪"
},
"Documentation": {
"description": "Documentation only changes",
"emoji": "📚"
},
"Package.json in JS": {
"description": "Changes package(s) in package.json",
"emoji": "📦"
}
}
}