feat(sapling): enable all the commit snippets in hgcommit filetypes
This commit is contained in:
parent
e11deb18fd
commit
5c87f2271b
12 changed files with 17 additions and 17 deletions
|
|
@ -1,6 +1,6 @@
|
|||
# name: Breaking change block in commit message
|
||||
# key: bc
|
||||
# contributor: Ade Attwood <code@adeattwood.co.uk>
|
||||
# filetypes: gitcommit
|
||||
# filetypes: gitcommit,hgcommit
|
||||
# --
|
||||
BREAKING CHANGE: ${0:Description}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# name: Chore commit message
|
||||
# key: chore
|
||||
# contributor: Ade Attwood <code@adeattwood.co.uk>
|
||||
# filetypes: gitcommit
|
||||
# filetypes: gitcommit,hgcommit
|
||||
# --
|
||||
chore(${1:scope}): ${2:title}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# name: Continuous intergration commit message
|
||||
# key: ci
|
||||
# contributor: Ade Attwood <code@adeattwood.co.uk>
|
||||
# filetypes: gitcommit
|
||||
# filetypes: gitcommit,hgcommit
|
||||
# --
|
||||
ci(${1:scope}): ${2:title}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# name: Co-authored-by trailer
|
||||
# key: co
|
||||
# contributor: Ade Attwood <code@adeattwood.co.uk>
|
||||
# filetypes: gitcommit
|
||||
# filetypes: gitcommit,hgcommit
|
||||
# --
|
||||
Co-authored-by: ${0}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# name: Documentation commit message
|
||||
# key: docs
|
||||
# contributor: Ade Attwood <code@adeattwood.co.uk>
|
||||
# filetypes: gitcommit
|
||||
# filetypes: gitcommit,hgcommit
|
||||
# --
|
||||
docs(${1:scope}): ${2:title}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# name: Feature commit message
|
||||
# key: feat
|
||||
# contributor: Ade Attwood <code@adeattwood.co.uk>
|
||||
# filetypes: gitcommit
|
||||
# filetypes: gitcommit,hgcommit
|
||||
# --
|
||||
feat(${1:scope}): ${2:title}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# name: Bug fix commit message
|
||||
# key: fix
|
||||
# contributor: Ade Attwood <code@adeattwood.co.uk>
|
||||
# filetypes: gitcommit
|
||||
# filetypes: gitcommit,hgcommit
|
||||
# --
|
||||
fix(${1:scope}): ${2:title}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# name: Performance commit message
|
||||
# key: perf
|
||||
# contributor: Ade Attwood <code@adeattwood.co.uk>
|
||||
# filetypes: gitcommit
|
||||
# filetypes: gitcommit,hgcommit
|
||||
# --
|
||||
perf(${1:scope}): ${2:title}
|
||||
perf(${1:scope}): ${2:title}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# name: Refactor commit message
|
||||
# key: refactor
|
||||
# contributor: Ade Attwood <code@adeattwood.co.uk>
|
||||
# filetypes: gitcommit
|
||||
# filetypes: gitcommit,hgcommit
|
||||
# --
|
||||
refactor(${1:scope}): ${2:title}
|
||||
refactor(${1:scope}): ${2:title}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# name: Security footer in a commit message
|
||||
# key: sec
|
||||
# contributor: Ade Attwood <code@adeattwood.co.uk>
|
||||
# filetypes: gitcommit
|
||||
# filetypes: gitcommit,hgcommit
|
||||
# --
|
||||
SECURITY: ${0:Description}
|
||||
SECURITY: ${0:Description}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# name: Code styling commit message
|
||||
# key: style
|
||||
# contributor: Ade Attwood <code@adeattwood.co.uk>
|
||||
# filetypes: gitcommit
|
||||
# filetypes: gitcommit,hgcommit
|
||||
# --
|
||||
style(${1:scope}): ${2:title}
|
||||
style(${1:scope}): ${2:title}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# name: Test commit message
|
||||
# key: test
|
||||
# contributor: Ade Attwood <code@adeattwood.co.uk>
|
||||
# filetypes: gitcommit
|
||||
# filetypes: gitcommit,hgcommit
|
||||
# --
|
||||
test(${1:scope}): ${2:title}
|
||||
test(${1:scope}): ${2:title}
|
||||
|
|
|
|||
Loading…
Reference in a new issue