Git Commit Templates
git
workflow
productivity
GIgitmaster
Description
Standardized git commit message templates following conventional commits specification. Helps maintain consistent commit history.
json
{
"rules": [
{
"name": "Conventional Commit",
"pattern": "COMMIT_EDITMSG",
"commands": [
{
"title": "Insert Conventional Commit Template",
"command": "editor.action.insertSnippet",
"args": {
"snippet": "${1|feat,fix,docs,style,refactor,perf,test,build,ci,chore,revert|}(${2:scope}): ${3:subject}\n\n${4:body}\n\n${5:footer}"
},
"when": "editorTextFocus"
}
]
}
]
}
About the Author
GI
gitmaster
Rule Creator
Related Rules
Auto Import
Automatically imports modules when referenced in your code. This rule detects undefined variables and tries to find matching imports from your project or installed packages.
productivity
imports
typescript
Format on Save
Automatically format your code when you save a file. Works with various languages and respects your project's formatting settings.
formatting
productivity
Code Folding
Smart code folding rules to help organize and navigate large files. Automatically folds code sections for better readability.
editor
productivity
navigation