-
Notifications
You must be signed in to change notification settings - Fork 0
/
.czrc
76 lines (76 loc) · 2.15 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
{
"path": "cz-emoji",
"config": {
"cz-emoji": {
"subjectMaxLength": 72,
"skipQuestions": [
"scope",
"body",
"breaking",
"footer"
],
"types": [
{
"emoji": "✨",
"name": "feat",
"code": "feat: :sparkles:",
"description": "機能追加"
},
{
"emoji": "🐛",
"name": "fix",
"code": "fix: :bug:",
"description": "バグの修正"
},
{
"emoji": "📚",
"name": "docs",
"code": "docs: :books:",
"description": "ドキュメントのみの変更"
},
{
"emoji": "🎨",
"name": "style",
"code": "style: :art:",
"description": "コードの動作に影響しない、見た目だけの変更(スペース、フォーマット、欠落の修正、セミコロンなど)"
},
{
"emoji": "♻️",
"name": "refactor",
"code": "refactor: :recycle:",
"description": "バグの修正や機能の追加ではないコードの変更"
},
{
"emoji": "🐎",
"name": "perf:",
"code": "perf: :horse:",
"description": "パフォーマンスを向上させるコードの変更"
},
{
"emoji": "✅",
"name": "test: ",
"code": "test: :white_check_mark:",
"description": "不足しているテストの追加や既存のテストの修正"
},
{
"emoji": "👷♂️",
"name": "chore",
"code": "chore: :construction_worker:",
"description": "ビルドプロセスやドキュメント生成などの補助ツールやライブラリの変更"
},
{
"emoji": "🗑",
"name": "remove",
"code": "remove: :wastebasket:",
"description": "コードの削除"
},
{
"emoji": "🚚",
"name": "move",
"code": "move: :truck:",
"description": "リソースの移動や名前の変更"
}
]
}
}
}