forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheatsheets.json
More file actions
131 lines (131 loc) · 3.54 KB
/
cheatsheets.json
File metadata and controls
131 lines (131 loc) · 3.54 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"$comment": "https://github.com/cheat/cheat",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"editor": {
"description": "An editor to modify cheatsheets\nhttps://github.com/cheat/cheat#cheatpaths",
"$ref": "https://json.schemastore.org/base.json#/definitions/editor"
},
"colorize": {
"description": "Whether cheatsheets should be colorized\nhttps://github.com/cheat/cheat#cheatpaths",
"type": "boolean",
"default": false
},
"style": {
"description": "A color schema applied for cheatsheets\nhttps://github.com/cheat/cheat#cheatpaths",
"type": "string",
"enum": [
"abap",
"algol",
"algol_nu",
"api",
"arduino",
"autumn",
"average",
"base16-snazzy",
"borland",
"bw",
"catppuccin",
"colorful",
"doom-one2",
"doom-one",
"dracula",
"emacs",
"friendly",
"fruity",
"github-dark",
"github",
"gruvbox",
"gruvbox-light",
"hr_dark",
"hr_high_contrast",
"igor",
"lovelace",
"manni",
"modus-operandi",
"modus-vivendi",
"monokai",
"monokailight",
"murphy",
"native",
"nord",
"onesenterprise",
"paraiso-dark",
"paraiso-light",
"pastie",
"perldoc",
"pygments",
"rainbow_dash",
"rose-pine-dawn",
"rose-pine",
"rose-pine-moon",
"rrt",
"solarized-dark256",
"solarized-dark",
"solarized-light",
"swapoff",
"tango",
"trac",
"vim",
"vs",
"vulcan",
"witchhazel",
"xcode-dark",
"xcode"
]
},
"formatter": {
"description": "A formatter to format cheatsheets\nhttps://github.com/cheat/cheat#cheatpaths",
"type": "string",
"enum": ["terminal", "terminal256", "terminal16m"]
},
"pager": {
"description": "A pager to read long cheatsheets\nhttps://github.com/cheat/cheat#cheatpaths",
"type": "string",
"oneOf": [
{
"enum": ["less", "more"]
},
{}
]
},
"cheatpaths": {
"description": "Cheatpaths\nhttps://github.com/cheat/cheat#cheatpaths",
"type": "array",
"items": {
"title": "cheatpath",
"description": "A cheatpath\nhttps://github.com/cheat/cheat#cheatpaths",
"type": "object",
"properties": {
"name": {
"description": "A cheatpath name\nhttps://github.com/cheat/cheat#cheatpaths",
"type": "string",
"minLength": 1
},
"path": {
"description": "A cheatpath path\nhttps://github.com/cheat/cheat#cheatpaths",
"$ref": "https://json.schemastore.org/base.json#/definitions/path"
},
"tags": {
"description": "Cheatpath tags\nhttps://github.com/cheat/cheat#cheatpaths",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string",
"minLength": 1
}
},
"readonly": {
"description": "Whether allow creating cheatsheets in a cheatpath\nhttps://github.com/cheat/cheat#cheatpaths",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
}
}
},
"title": "A cheatsheet config schema",
"type": "object"
}