-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.czrc
51 lines (51 loc) · 1.13 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
{
"path": "./node_modules/cz-emoji",
"config": {
"cz-emoji": {
"skipQuestions": [
"scope",
"body",
"issues",
"breaking"
],
"types": [
{
"name": "breaking",
"code": ":boom:",
"emoji": "💥",
"description": "Introduce a breaking change"
},
{
"name": "feat",
"code": ":sparkles:",
"emoji": "✨",
"description": "Introduce a new feature"
},
{
"name": "fix",
"code": ":bug:",
"emoji": "🐛",
"description": "Fix a bug"
},
{
"name": "chore",
"code": ":wrench:",
"emoji": "🔧",
"description": "Changes that don't modify any source or test files"
},
{
"name": "release",
"code": ":bookmark:",
"emoji": "🔖",
"description": "Release the next version"
},
{
"name": "wip",
"code": ":construction:",
"emoji": "🚧",
"description": "Work in progress"
}
]
}
}
}