forked from s-minoo/algemaploom-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cmt
39 lines (35 loc) · 793 Bytes
/
.cmt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# The input parts
{
# Shows a list of options
"Type" = [
"feat",
"fix",
"docs",
"style",
"refactor",
"test",
"chore"
]
"Scope" = @ # Single line input
"Subject" = @
"Body" = !@ # Multi-line input
"Footer" = !@
}
# predefined messages
# this section is optional
{
deadcode = "chore: remove deadcode"
clippy = "chore: clippy fix warnings"
println = "chore: remove printlns"
style = "style: rustfmt file"
vb = "chore: version bump"
readme = "docs: updated readme"
ignore = "docs: updated .gitignore"
cmt = "chore: update .cmt"
}
# The output format
# Takes the values provided from the input stage
# and interpolates them in
${Type} (${Scope}): ${Subject}
${Body}
${Footer}