Skip to content

Instantly share code, notes, and snippets.

@mattmcmanus
Last active May 7, 2025 15:40
Show Gist options
  • Save mattmcmanus/9d57d72ee7c9f0a4a6609f1017de0703 to your computer and use it in GitHub Desktop.
Save mattmcmanus/9d57d72ee7c9f0a4a6609f1017de0703 to your computer and use it in GitHub Desktop.
Snippets JSON to import to allow for conventional comments anywhere:

Conventional Comment Snippets for Raycast

Context: https://conventionalcomments.org/

Having them easily available as snippets is even better. The following JSON file can be imported in raycast to include them as snippets.

  1. Save conventional-comments.json to your computer
  2. Trigger Raycast
  3. Select Import Snippets
  4. Select the conventional-comments.json file
  5. Fin!
[
{
"name": "Conventional Commit: πŸ™Œ praise",
"text": "**πŸ™Œ praise:** ",
"keyword": ";ccp"
},
{
"name": "Conventional Commit: 🧐 nitpick",
"text": "**🧐 nitpick:** ",
"keyword": ";ccn"
},
{
"name": "Conventional Commit: πŸš€ suggestion",
"text": "**πŸš€ suggestion:** ",
"keyword": ";ccs"
},
{
"name": "Conventional Commit: πŸ› οΈ issue",
"text": "**πŸ› οΈ issue: **",
"keyword": ";cci"
},
{
"name": "Conventional Commit: πŸ“Œ todo",
"text": "**πŸ“Œ todo: **",
"keyword": ";cctodo"
},
{
"name": "Conventional Commit: ❓ question",
"text": "**❓ question:** ",
"keyword": ";ccq"
},
{
"name": "Conventional Commit: πŸ’‘ thought",
"text": "**πŸ’‘ thought: **",
"keyword": ";ccth"
},
{
"name": "Conventional Commit: 🧹 chore",
"text": "**🧹 chore: **",
"keyword": ";ccc"
},
{
"name": "Conventional Commit: πŸ—’οΈ note",
"text": "**πŸ—’οΈ note:** ",
"keyword": ";ccn"
},
{
"name": "Conventional Commit: πŸ“ typo",
"text": "**πŸ“ typo:**",
"keyword": ";ccty"
},
{
"name": "Conventional Commit: ✨ polish",
"text": "**✨ polish:** ",
"keyword": ";ccp"
},
{
"name": "Conventional Commit: πŸ€” quibble",
"text": "**πŸ€” quibble: **",
"keyword": ";ccq"
},
{
"name": "Conventional Commit: (non-blocking)",
"text": "(non-blocking)",
"keyword": ";ccnb"
},
{
"name": "Conventional Commit: (blocking)",
"text": "(blocking)",
"keyword": ";ccb"
},
{
"name": "Conventional Commit: (if-minor)",
"text": "(if-minor)",
"keyword": ";ccim"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment