-
Notifications
You must be signed in to change notification settings - Fork 3
/
gittey-config.json
55 lines (55 loc) · 1.96 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
{
"branchPrefix": {
"separator": "",
"validator": "",
"prefixes": {}
},
"commitPrefix": {
"separator": " ",
"validator": "^.{1,45}$",
"prefixes": {}
},
"verboseMode": false,
"aliases": [
{
"name": "docsMain",
"command": "booklisp ./documentation/readme/_main.md ./README.md && booklisp ./documentation/contrib/_main.md ./contributing.md",
"description": "generates the main documentation"
},
{
"name": "docsTests",
"command": "booklisp ./documentation/tests/_main.md ./test_cases.md",
"description": "generates the documentation for the C# exercise"
},
{
"name": "docsNew",
"command": "booklisp ./documentation/newlang/_main.md ./new_exercises.md"
},
{
"name": "docsTS",
"command": "booklisp ./Languages/TypeScript/documentation/_main.md ./Languages/TypeScript/readme.md",
"description": "generates the documentation for the Type Script exercise"
},
{
"name": "docsCS",
"command": "booklisp ./Languages/CSharp/documentation/_main.md ./Languages/CSharp/readme.md",
"description": "generates the documentation for the C# exercise"
},
{
"name": "docs",
"command": "gittey docsMain; gittey docsTests; gittey docsNew; gittey docsTS; gittey docsCS",
"description": "generates all the documentations"
},
{
"name": "contrib",
"command": "cls && npx all-contributors && gittey docs",
"description": "sets project state to that of the last committed state"
},
{
"name": "undo",
"command": "cls && git checkout . && git clean -f",
"description": "sets project state to that of the last committed state"
}
],
"collaborators": []
}