-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cz-config.js
67 lines (63 loc) · 1.79 KB
/
.cz-config.js
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
module.exports = {
types: [
{ value: ":sparkles: feat", name: "✨ feat:\tAdding a new feature" },
{ value: ":bug: fix", name: "🐛 fix:\tFixing a bug" },
{
value: ":fire: build",
name: "🔥 profile:\tCreating Your Profile",
},
{
value: ":beers: build",
name: "🍻 blog:\tCreating Your Blog",
},
{ value: ":memo: docs", name: "📝 docs:\tAdd or update documentation" },
{
value: ":lipstick: style",
name: "💄 style:\tAdd or update styles, ui or ux",
},
{
value: ":recycle: refactor",
name: "♻️ refactor:\tCode change that neither fixes a bug nor adds a feature",
},
{
value: ":zap: perf",
name: "⚡️ perf:\tCode change that improves performance",
},
{
value: ":white_check_mark: test",
name: "✅ test:\tAdding tests cases",
},
{
value: ":truck: chore",
name: "🚚 chore:\tChanges to the build process or auxiliary tools\n\t\tand libraries such as documentation generation",
},
{ value: ":rewind: revert", name: "⏪️ revert:\tRevert to a commit" },
{ value: ":construction: wip", name: "🚧 wip:\tWork in progress" },
{
value: ":construction_worker: build",
name: "👷 build:\tAdd or update regards to build process",
},
{
value: ":green_heart: ci",
name: "💚 ci:\tAdd or update regards to build process",
},
],
scopes: [],
scopeOverrides: {
fix: [
{ name: "merge" },
{ name: "style" },
{ name: "test" },
{ name: "hotfix" },
],
build: [
{ name: "profile" },
{ name: "blog" },
],
},
allowCustomScopes: true,
allowBreakingChanges: ["feat", "fix"],
// skip any questions you want
skipQuestions: ["footer", "breaking"],
subjectLimit: 100,
};