-
Notifications
You must be signed in to change notification settings - Fork 0
/
sublime-package.json
72 lines (72 loc) · 2.2 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
{
"contributions": {
"settings": [
{
"schema": {
"$id": "sublime://settings/LSP-leo",
"definitions": {
"PluginConfig": {
"properties": {
"settings": {
"additionalProperties": false,
"properties": {
"leo.validate": {
"type": "boolean",
"default": true,
"description": "Enable/disable validation feature"
},
"leo.completion": {
"type": "boolean",
"default": true,
"description": "Enable/disable completion feature"
},
"leo.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"leo.trace.server": {
"scope": "window",
"type": "string",
"enum": ["off", "messages", "verbose"],
"default": "verbose",
"description": "Traces the communication between VS Code and the language server."
}
}
}
}
}
},
"allOf": [
{
"$ref": "sublime://settings/LSP-plugin-base"
},
{
"$ref": "sublime://settings/LSP-leo#/definitions/PluginConfig"
}
]
},
"file_patterns": ["/LSP-leo.sublime-settings"]
},
{
"schema": {
"properties": {
"settings": {
"properties": {
"LSP": {
"properties": {
"LSP-leo": {
"$ref": "sublime://settings/LSP-leo#/definitions/PluginConfig"
}
}
}
}
}
}
},
"file_patterns": ["/*.sublime-project"]
}
]
}
}