-
Notifications
You must be signed in to change notification settings - Fork 119
/
.git-czrc.json
55 lines (51 loc) · 1.59 KB
/
.git-czrc.json
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
40
41
42
43
44
45
46
47
48
49
50
51
{
"message": {
"items": [
{
"name": "type",
"desc": "Select the type of change that you're committing:",
"form": "select",
"options": [
{ "name": "feat", "desc": "feat: A new feature" },
{ "name": "fix", "desc": "fix: A bug fix" },
{ "name": "docs", "desc": "docs: Documentation only changes" },
{
"name": "refactor",
"desc": "refactor: A code change that neither fixes a bug nor adds a feature"
},
{ "name": "test", "desc": "test: Adding missing tests" },
{
"name": "chore",
"desc":
"chore: Changes to the build process or auxiliary tools\n and libraries such as documentation generation"
},
{ "name": "revert", "desc": "revert: Revert to a commit" },
{ "name": "WIP", "desc": "WIP: Work in progress" }
],
"required": true
},
{
"name": "scope",
"desc": "Scope. Could be anything specifying place of the commit change (users, db, poll):",
"form": "input"
},
{
"name": "subject",
"desc": "Subject. Concise description of the changes. Imperative, lower case and no final dot:",
"form": "input",
"required": true
},
{
"name": "body",
"desc": "Body. Motivation for the change and contrast this with previous behavior:",
"form": "multiline"
},
{
"name": "footer",
"desc": "Footer. Information about Breaking Changes and reference issues that this commit closes:",
"form": "multiline"
}
],
"template": "{{.type}}{{with .scope}}({{.}}){{end}}: {{.subject}}{{with .body}}\n\n{{.}}{{end}}{{with .footer}}\n\n{{.}}{{end}}"
}
}