-
Notifications
You must be signed in to change notification settings - Fork 1
/
.czrc
114 lines (114 loc) · 3 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"path": "cz-emoji",
"config": {
"cz-emoji": {
"skipQuestions": [
"scope"
],
"types": [
{
"emoji": "✨",
"code": "✨ Feat:",
"description": "A new feature or functionality",
"name": "Feat",
"changelog": {
"section": "✨ Features"
},
"release": "minor"
},
{
"emoji": "🐛",
"code": "🐛 Fix:",
"description": "Fixing code",
"name": "Fix",
"changelog": {
"section": "🐛 Bug Fixes"
},
"release": "patch"
},
{
"emoji": "🚑",
"code": "🚑 Hotfix:",
"description": "Bypassing some safety, this needs to go straight to production!",
"name": "Hotfix",
"changelog": {
"section": "🚑 Critical Fixes"
},
"release": "patch"
},
{
"emoji": "📝",
"code": "📝 Docs:",
"description": "Documentation only changes",
"name": "Docs"
},
{
"emoji": "🎨",
"code": "🎨 Style:",
"description": "Improving the style/structure of the code",
"name": "Style"
},
{
"emoji": "♻️",
"code": "♻️ Refactor:",
"description": "A code change that does not alter public facing APIs",
"name": "Refactor"
},
{
"emoji": "⚡️",
"code": "⚡️ Perf:",
"description": "Improves Performance",
"name": "Perf"
},
{
"emoji": "✅",
"code": "✅ Test:",
"description": "Adds, Removes, or Fixes something related to tests",
"name": "Test"
},
{
"emoji": "⬆️",
"code": "⬆️ Upgrade:",
"description": "Upgrades dependencies",
"name": "Upgrade",
"changelog": {
"section": "⬆️ Dependency Changes"
},
"release": "patch"
},
{
"emoji": "⬇️",
"code": "⬇️ Downgrade:",
"description": "Downgrades or Removes dependencies",
"name": "Downgrade",
"changelog": {
"section": "⬆️ Dependency Changes"
},
"release": "patch"
},
{
"emoji": "📌",
"code": "📌 Pin:",
"description": "Pin a dependency to a specific version",
"name": "Pin",
"changelog": {
"section": "⬆️ Dependency Changes"
},
"release": "patch"
},
{
"emoji": "🧹",
"code": "🧹 Chore:",
"description": "Misc changes, often by automated systems",
"name": "Chore"
},
{
"emoji": "🚧",
"code": "🚧 WIP:",
"description": "Work in Progress (rebase these out!)",
"name": "WIP"
}
]
}
}
}