Dotfiles/site-modules/core/files/vim/UltiSnips/gitcommit.snippets
Ade Attwood 80239af169 refactor(core): start to make dotfiles public
This is the first commit that brings the privet dotfiles to a public
reop previously this was all one puppet module. Now this has been split
out so I can put all of the private files in a private puppet module
2020-09-20 06:22:17 +01:00

45 lines
917 B
Text

snippet fix "Bug fix commit message" b
fix(${1:category}): ${2:title}
${3:description}
fixes issue ${4:issue number}
endsnippet
snippet feat "Feature commit message" b
feat(${1:category}): ${2:title}
endsnippet
snippet chore "Chore commit message" b
chore(${1:category}): ${2:title}
endsnippet
snippet ci "Continuous intergration commit message" b
ci(${1:category}): ${2:title}
endsnippet
snippet docs "Documentation commit message" b
docs(${1:category}): ${2:title}
endsnippet
snippet test "Test commit message" b
test(${1:category}): ${2:title}
endsnippet
snippet style "Code styling commit message" b
style(${1:category}): ${2:title}
endsnippet
snippet perf "Performance commit message" b
perf(${1:category}): ${2:title}
endsnippet
snippet refactor "Refactor commit message" b
refactor(${1:category}): ${2:title}
endsnippet
snippet bc "Breaking change" b
BREAKING CHANGE: ${0:Description}
endsnippet