forked from jogleasonjr/dainty-vs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration-schema.json
82 lines (82 loc) · 2.33 KB
/
configuration-schema.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"$id": "https://dainty.site/vs/configuration-schema.json",
"properties": {
"editor": {
"$id": "#/properties/editor",
"type": "object",
"default": {},
"additionalProperties": false,
"properties": {
"fontFamily": {
"$id": "#/properties/editor/properties/fontFamily",
"type": "string",
"default": "Consolas"
}
}
},
"environment": {
"$id": "#/properties/environment",
"type": "object",
"default": {},
"additionalProperties": false,
"properties": {
"additionalScrollbarsContrast": {
"$id": "#/properties/environment/properties/additionalScrollbarsContrast",
"type": "boolean",
"default": true
},
"transparentBorders": {
"$id": "#/properties/environment/properties/transparentBorders",
"type": "boolean",
"default": false
},
"transparentScrollbarContainers": {
"$id": "#/properties/environment/properties/transparentScrollbarContainers",
"type": "boolean",
"default": false
},
"transparentToolWindowGrips": {
"$id": "#/properties/environment/properties/transparentToolWindowGrips",
"type": "boolean",
"default": true
}
}
},
"extensions": {
"$id": "#/properties/extensions",
"type": "object",
"default": {},
"additionalProperties": false,
"properties": {
"indentGuides": {
"$id": "#/properties/extensions/properties/indentGuides",
"type": "object",
"default": {},
"additionalProperties": false,
"properties": {
"includeSettings": {
"$id": "#/properties/extensions/properties/indentGuides/properties/includeSettings",
"type": "boolean",
"default": false
}
}
}
}
},
"customizations": {
"default": {},
"properties": {
"__searchReplace": {
"$id": "#/properties/customizations/properties/__searchReplace",
"type": "object",
"default": {}
},
"__categories": {
"$id": "#/properties/customizations/properties/__categories",
"type": "object",
"default": {}
}
}
}
}
}