-
Notifications
You must be signed in to change notification settings - Fork 1
/
sublime-package.json
146 lines (146 loc) · 5.98 KB
/
sublime-package.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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"contributions": {
"settings": [
{
"file_patterns": [
"/LSP-yaml.sublime-settings"
],
"schema": {
"$id": "sublime://settings/LSP-yaml",
"allOf": [
{
"$ref": "sublime://settings/LSP-plugin-base"
},
{
"$ref": "sublime://settings/LSP-yaml#/definitions/PluginConfig"
}
],
"definitions": {
"PluginConfig": {
"properties": {
"settings": {
"additionalProperties": false,
"properties": {
"http.proxy": {
"default": null,
"description": "The URL of the proxy server that will be used when attempting to download a schema. If it is not set or it is undefined no proxy server will be used.",
"type": [
"string",
"null"
],
},
"http.proxyStrictSSL": {
"default": false,
"description": "If true the proxy server certificate should be verified against the list of supplied CAs",
"type": "boolean"
},
"yaml.completion": {
"default": true,
"description": "Enable/disable completion feature.",
"type": "boolean"
},
"yaml.customTags": {
"default": [],
"markdownDescription": "Array of custom tags that the parser will validate against. It has two ways to be used. Either an item in the array is a custom tag such as `\"!Ref\"` and it will automatically map `!Ref` to scalar or you can specify the type of the object !Ref should be e.g. `\"!Ref sequence\"`. The type of object can be either scalar (for strings and booleans), sequence (for arrays), map (for objects).",
"type": "array"
},
"yaml.disableAdditionalProperties": {
"default": false,
"markdownDescription": "Globally set `additionalProperties` to false for all objects. So if its `true`, no extra properties are allowed inside yaml.",
"type": "boolean"
},
"yaml.editor.tabSize": {
"default": 2,
"description": "The number of spaces to use when autocompleting",
"type": "integer"
},
"yaml.format.bracketSpacing": {
"default": true,
"description": "Print spaces between brackets in objects",
"type": "boolean"
},
"yaml.format.enable": {
"default": true,
"description": "Enable/disable default YAML formatter",
"type": "boolean"
},
"yaml.format.printWidth": {
"default": 120,
"description": "Specify the line length that the printer will wrap on",
"type": "integer"
},
"yaml.format.proseWrap": {
"default": "preserve",
"description": "Always: wrap prose if it exeeds the print width, Never: never wrap the prose, Preserve: wrap prose as-is",
"enum": [
"preserve",
"never",
"always"
],
"type": "string"
},
"yaml.format.singleQuote": {
"default": false,
"description": "Use single quotes instead of double quotes",
"type": "boolean"
},
"yaml.hover": {
"default": true,
"description": "Enable/disable hover feature",
"type": "boolean"
},
"yaml.maxItemsComputed": {
"default": 5000,
"description": "The maximum number of outline symbols and folding regions computed (limited for performance reasons).",
"type": "integer"
},
"yaml.schemaStore.enable": {
"default": true,
"description": "Automatically pull available YAML schemas from JSON Schema Store",
"type": "boolean"
},
"yaml.schemaStore.url": {
"default": "https://www.schemastore.org/api/json/catalog.json",
"description": "URL of schema store catalog to use",
"type": "string"
},
"yaml.schemas": {
"default": {},
"description": "Associate schemas to YAML files in the current workspace",
"type": "object"
},
"yaml.validate": {
"default": true,
"description": "Enable/disable validation feature",
"type": "boolean"
}
}
}
}
}
}
}
},
{
"file_patterns": [
"/*.sublime-project"
],
"schema": {
"properties": {
"settings": {
"properties": {
"LSP": {
"properties": {
"LSP-yaml": {
"$ref": "sublime://settings/LSP-yaml#/definitions/PluginConfig"
}
}
}
}
}
}
}
}
]
}
}