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
|
{
"$schema": "http://json-schema.org/draft-04/schema",
"additionalProperties": false,
"properties": {
"blacklist": {
"items": {
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"type": "array"
},
"cmd": {
"items": {
"type": "string"
},
"type": "array"
},
"config": {
"type": "object"
},
"disabled": {
"default": true,
"type": "boolean"
},
"initialization_options": {
"type": "object"
},
"root_uri": {
"pattern": "^file://\\S+$",
"type": "string"
},
"whitelist": {
"items": {
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"type": "array"
},
"workspace_config": {
"type": "object"
}
},
"title": "vim-lsp-settings-local",
"type": "object"
}
|