-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommity.json
53 lines (53 loc) · 1.23 KB
/
commity.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
52
53
{
"chunks": {
"scope": {
"message": "Select the type of change that you're committing",
"type": "select",
"choices": [
{
"value": "feat",
"description": "New feature implementation or enhancement"
},
{
"value": "fix",
"description": "Bug fix or error resolution"
},
{
"value": "test",
"description": "Testing or test case creation"
},
{
"value": "style",
"description": "Code formatting or style improvement"
},
{
"value": "refactor",
"description": "Code restructuring or optimization"
},
{
"value": "docs",
"description": "Documentation updates or additions"
},
{
"value": "chore",
"description": "Routine or miscellaneous tasks or changes"
}
]
},
"message": {
"message": "Choose the commit message",
"decorations": {
"prefix": ": "
}
},
"issue": {
"message": "What is the issue id",
"required": false
}
},
"render": "{{scope}}{{message}}",
"bodyRender": [{
"if": "issue",
"value": "Fixes #{{issue}}"
}]
}