-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtemplate.json
More file actions
73 lines (73 loc) · 1.75 KB
/
Copy pathtemplate.json
File metadata and controls
73 lines (73 loc) · 1.75 KB
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
{
"meta": {
"title": "template",
"contribs": ["github_username1", "github_username2"]
},
"complexity": ["Basic", "Normal", "Advanced"],
"categories": [
{
"name": "Category 1",
"color": "green",
"commands": [
{
"name": "command1",
"description": "Example command 1",
"url": "https://someurl/command",
"keywords": "category1 command1",
"complexity": 0,
"usage": [
{
"code": "template command1",
"complexity": 0,
"description": "Example usage of command1 for template with basic complexity filter"
},
{
"code": "template command1 -a",
"complexity": 1,
"description": "Example usage of command1 for template with one argument with normal complexity filter"
},
{
"code": "template command1 -la",
"complexity": 2,
"description": "Example usage of command1 for template with 2 arguments with advanced complexity filter"
}
]
},
{
"name": "command2",
"description": "Example command 2",
"url": "https://someurl/command",
"keywords": "category1 command2",
"complexity": 1,
"usage": [
{
"complexity": 1,
"code": "template command2",
"description": "A new command with normal complexity filter"
}
]
}
]
},
{
"name": "Category 2",
"color": "blue",
"commands": [
{
"name": "command3",
"description": "Example command 3",
"url": "https://someurl/command",
"keywords": "category2 command3",
"complexity": 2,
"usage": [
{
"code": "template command3",
"complexity": 0,
"description": "Example usage of command3 for template with advanced complexity filter"
}
]
}
]
}
]
}