-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cz-config.js
59 lines (59 loc) · 1.29 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
module.exports = {
types: [
{
name: "feat: A new feature",
title: "feat",
value: "feat",
},
{
name: "fix: A bug fix",
title: "fix",
value: "fix",
},
{
name: "docs: Documentation only changes",
title: "docs",
value: "docs",
},
{
name:
"style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
title: "style",
value: "style",
},
{
name:
"refactor: A code change that neither fixes a bug nor adds a feature",
title: "refactor",
value: "refactor",
},
{
name: "perf: A code change that improves performance",
title: "perf",
value: "perf",
},
{
name: "test: Adding missing tests or correcting existing tests",
title: "test",
value: "test",
},
{
name:
"chore: Changes to the build process or auxiliary tools and libraries such as documentation generation",
title: "chore",
value: "chore",
},
],
scopes: [
{ name: "html" },
{ name: "css" },
{ name: "script" },
{ name: "image" },
{ name: "env" },
{ name: "docs" },
{ name: "_" }, // その他
],
messages: {
scope: "Scope of changes:\n",
},
};