Type νƒ€μž…λͺ… 이λͺ¨μ§€ μ„€λͺ…
feat Feature ✨ :sparkles: μƒˆλ‘œμš΄ κΈ°λŠ₯ μΆ”κ°€
Add, update, or remove feature.
fix Bugfix πŸ› :bug: 버그 μˆ˜μ •
Fix a bug.
refac Refactoring ♻️ :recycle: μ½”λ“œ λ¦¬νŒ©ν† λ§
Refactor code.
test Test βœ… :white_check_mark: ν…ŒμŠ€νŠΈ μ½”λ“œ μˆ˜μ •
Add, update, or pass tests.
style Style πŸ’„ :lipstick: UI, μŠ€νƒ€μΌ 파일 μˆ˜μ •
Add or update the UI and style files.
doc Document πŸ“ :memo: λ¬Έμ„œ μ—…λ°μ΄νŠΈ
Add or update documentation.
build Build πŸ”¨ :wranch: λΉŒλ“œ μ‹œμŠ€ν…œ λ˜λŠ” ꡬ성 κ΄€λ ¨ λ³€κ²½
Add or update CI build system.
dep Dependency Update ⬆️ :arrow_up: μ˜μ‘΄μ„± μ—…λ°μ΄νŠΈ
Upgrade/Downgrade dependencies.
// ~/.vscode/settings.json

{
	"gitmoji.onlyUseCustomEmoji": true,
	"gitmoji.addCustomEmoji": [
	    {
	      "emoji": "πŸ”¨",
	      "code": ":hammer:",
	      "description": "build : Add or update CI build system."
	    },
	    {
	      "emoji": "πŸ“",
	      "code": ":memo:",
	      "description": "doc : Add or update documentation."
	    },
	    {
	      "emoji": "✨",
	      "code": ":sparkles:",
	      "description": "feat : Add, update, or remove feature."
	    },
	    {
	      "emoji": "πŸ›",
	      "code": ":bug:",
	      "description": "fix : Fix a bug."
	    },
	    {
	      "emoji": "♻️",
	      "code": ":recycle:",
	      "description": "refac : Refactor code."
	    },
	    {
	      "emoji": "πŸ’„",
	      "code": ":lipstick:",
	      "description": "style : Add or update the UI and style files."
	    },
	],
}