-
Notifications
You must be signed in to change notification settings - Fork 13
/
gittey-config.json
60 lines (60 loc) · 1.54 KB
/
gittey-config.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
54
55
56
57
58
59
60
{
"branchPrefix": {
"separator": "",
"validator": "",
"prefixes": {}
},
"commitPrefix": {
"separator": " ",
"validator": "^.{1,45}$",
"prefixes": {
"feat:": "Feature work",
"refactor:": "Refactoring",
"test:": "Test",
"fix:": "Bug fix",
"chore:": "Chore",
"docs:": "Documentation updated/added",
"style:": "Code style"
}
},
"verboseMode": false,
"aliases": [
{
"name": "undo",
"command": "git checkout . && git clean -xfd && npm i"
},
{
"name": "push",
"command": "gittey docs && gittey commit && git push"
},
{
"name": "docs:form1",
"command": "npm run docs:form1"
},
{
"name": "docs:form2",
"command": "npm run docs:form2"
},
{
"name": "docs:form3",
"command": "npm run docs:form3"
},
{
"name": "docs:form4",
"command": "npm run docs:form4"
},
{
"name": "docs:readme",
"command": "npm run docs:readme"
},
{
"name": "docs:forms",
"command": "npm run docs:forms"
},
{
"name": "docs",
"command": "gittey docs:form1 && gittey docs:form2 && gittey docs:form3 && gittey docs:form4 && gittey docs:forms && gittey docs:readme"
}
],
"collaborators": []
}