forked from alt-art/commit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommit-default.json
43 lines (43 loc) · 1.39 KB
/
commit-default.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
{
"config": {
"subject_separator": ": ",
"scope_prefix": "(",
"scope_suffix": ")"
},
"commit_types": [
{ "name": "feat", "description": "A new feature" },
{ "name": "fix", "description": "A bug fix" },
{ "name": "docs", "description": "Documentation only changes" },
{
"name": "style",
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)"
},
{
"name": "refactor",
"description": "A code change that neither fixes a bug nor adds a feature"
},
{
"name": "perf",
"description": "A code change that improves performance"
},
{
"name": "test",
"description": "Adding missing tests or correcting existing tests"
},
{
"name": "chore",
"description": "Other changes that don't modify src or test files"
}
],
"commit_scopes": [
{ "name": "custom", "description": "Custom scope" },
{ "name": "none", "description": "No scope" }
],
"msg": {
"commit_type": "What type of commit you will made?",
"commit_scope": "What scope of commit you will made? (Optional)",
"commit_description": "Write a SHORT, IMPERATIVE tense description of the change:",
"commit_body": "Provide a LONGER description of the change (Optional):",
"commit_footer": "List any ISSUES CLOSED by this change E.g.: #31, #34 (Optional):"
}
}