-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
.sgcrc
74 lines (74 loc) · 1.76 KB
/
.sgcrc
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"scope": false,
"body": true,
"emoji": false,
"delimiter": ":",
"lowercaseTypes": false,
"addScopeSpace": true,
"initialCommit": {
"isEnabled": true,
"emoji": ":tada:",
"message": "Initial commit"
},
"types": [
{
"emoji": ":wrench:",
"type": "Chore",
"description": "Changes that affect the build system or external dependencies and moving files",
"argKeys": ["c", "chore"]
},
{
"emoji": ":construction_worker:",
"type": "CI",
"description": "Changes to our CI configuration files and scripts",
"argKeys": ["ci"]
},
{
"emoji": ":memo:",
"type": "Docs",
"description": "Documentation only changes",
"argKeys": ["d", "docs"]
},
{
"emoji": ":sparkles:",
"type": "Feat",
"description": "New feature",
"argKeys": ["f", "feat", "feature"]
},
{
"emoji": ":bug:",
"type": "Fix",
"description": "Bug fix",
"argKeys": ["fi", "fix", "bug"]
},
{
"emoji": ":zapr:",
"type": "Perf",
"description": "Code change that improves performance",
"argKeys": ["p", "perf", "performance"]
},
{
"emoji": ":hammer:",
"type": "Refactor",
"description": "Code change that neither fixes a bug nor adds a feature",
"argKeys": ["r", "refactor"]
},
{
"emoji": ":art:",
"type": "Style",
"description": "Changes that do not affect the meaning of the code",
"argKeys": ["s", "style"]
},
{
"emoji": ":white_check_mark:",
"type": "Test",
"description": "Adding missing tests or correcting existing tests",
"argKeys": ["t", "test"]
}
],
"rules": {
"maxChar": 72,
"minChar": 10,
"endWithDot": false
}
}