-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cz-config.json
51 lines (51 loc) · 1.64 KB
/
.cz-config.json
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
{
"types": [
{
"value": "🌟 feat",
"name": "🌟 feat: 機能追加",
"title": "Features"
},
{
"value": "🔧 fix",
"name": "🔧 fix: バグの修正",
"title": "Bug Fixes"
},
{
"value": "🗒 docs",
"name": "🗒 docs: ドキュメントのみの変更",
"title": "Documentation"
},
{
"value": "🎨 style",
"name": "🎨 style: コードの動作に影響しない、見た目だけの変更(スペース、フォーマット、欠落の修正、セミコロンなど)",
"title": "Styles"
},
{
"value": "♻️ refactor",
"name": "♻️ refactor: バグの修正や機能の追加ではないコードの変更",
"title": "Code Refactoring"
},
{
"value": "⏫ perf",
"name": "⏫ perf: パフォーマンスを向上させるコードの変更",
"title": "Performance"
},
{
"value": "🧪 test",
"name": "🧪 test: 不足しているテストの追加や既存のテストの修正",
"title": "Tests"
},
{
"value": "🐧 chore",
"name": "🐧 chore: ビルドプロセスやドキュメント生成などの補助ツールやライブラリの変更",
"title": "Chores"
}
],
"messages": {
"type": "コミットする変更タイプを選択してください:\n",
"subject": "コミット内容について入力してください:\n",
"confirmCommit": "こちらの内容でコミットを実行してよろしいですか?:\n"
},
"skipQuestions": ["scope", "body", "breaking", "footer"],
"allowBreakingChanges": ["feat", "fix"]
}