Last active
May 17, 2022 01:53
-
-
Save susatthi/4a00e43a845242f9f31478188a62d8d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"path": "cz-emoji", | |
"config": { | |
"cz-emoji": { | |
"subjectMaxLength": 72, | |
"skipQuestions": ["scope"], | |
"types": [ | |
{ | |
"name": "feat", | |
"code": "🚀 feat:", | |
"emoji": "🚀", | |
"description": "新しい機能" | |
}, | |
{ | |
"name": "fix", | |
"code": "🐛 fix:", | |
"emoji": "🐛", | |
"description": "バグの修正" | |
}, | |
{ | |
"name": "test", | |
"code": "💚 test:", | |
"emoji": "💚", | |
"description": "テスト" | |
}, | |
{ | |
"name": "chore", | |
"code": "🔧 chore:", | |
"emoji": "🔧", | |
"description": "ツール関連の修正" | |
}, | |
{ | |
"name": "upgrade", | |
"code": "📦️ upgrade:", | |
"emoji": "📦️", | |
"description": "SDKやライブラリのバージョンアップ" | |
}, | |
{ | |
"name": "refactor", | |
"code": "♻️ refactor:", | |
"emoji": "♻️", | |
"description": "リファクタリング" | |
}, | |
{ | |
"name": "docs", | |
"code": "📝 docs:", | |
"emoji": "📝", | |
"description": "ドキュメントのみの修正" | |
}, | |
{ | |
"name": "release", | |
"code": "🎉 release:", | |
"emoji": "🎉", | |
"description": "リリース" | |
}, | |
{ | |
"name": "perf", | |
"code": "🐎 perf:", | |
"emoji": "🐎", | |
"description": "パフォーマンス向上" | |
}, | |
{ | |
"name": "style", | |
"code": "✨ style:", | |
"emoji": "✨", | |
"description": "フォーマットのみの修正" | |
}, | |
{ | |
"name": "init", | |
"code": "🌱 init:", | |
"emoji": "🌱", | |
"description": "初回コミット" | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment