-
Notifications
You must be signed in to change notification settings - Fork 1
/
sublime-package.json
119 lines (119 loc) · 6.71 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
{
"contributions": {
"settings": [
{
"file_patterns": [
"/LSP-elm.sublime-settings"
],
"schema": {
"$id": "sublime://settings/LSP-elm",
"definitions": {
"PluginConfig": {
"properties": {
"initializationOptions": {
"type": "object",
"additionalProperties": false,
"properties": {
"trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
},
"elmPath": {
"type": "string",
"default": "",
"description": "The path to your elm executable. Should be empty by default, in that case it will assume the name and try to first get it from a local npm installation or a global one. If you set it manually it will not try to load from the npm folder."
},
"elmReviewPath": {
"type": "string",
"default": "",
"description": "The path to your elm-review executable. Should be empty by default, in that case it will assume the name and try to first get it from a local npm installation or a global one. If you set it manually it will not try to load from the npm folder."
},
"elmReviewDiagnostics": {
"type": "string",
"enum": [
"off",
"warning",
"error"
],
"default": "off",
"description": "Set severity or disable linting diagnostics for elm-review."
},
"elmFormatPath": {
"type": "string",
"default": "",
"description": "The path to your elm-format executable. Should be empty by default, in that case it will assume the name and try to first get it from a local npm installation or a global one. If you set it manually it will not try to load from the npm folder."
},
"elmTestPath": {
"type": "string",
"default": "",
"description": "The path to your elm-test executable. Should be empty by default, in that case it will assume the name and try to first get it from a local npm installation or a global one. If you set it manually it will not try to load from the npm folder."
},
"disableElmLSDiagnostics": {
"type": "boolean",
"default": false,
"description": "Disable linting diagnostics from the language server."
},
"skipInstallPackageConfirmation": {
"type": "boolean",
"default": false,
"description": "Skips confirmation for the Install Package code action"
},
"onlyUpdateDiagnosticsOnSave": {
"type": "boolean",
"default": false,
"description": "Only update compiler diagnostics on save, not on document change."
},
"extendedCapabilities": {
"type": "object",
"properties": {
"moveFunctionRefactoringSupport": {
"type": "boolean",
"default": false
}
}
}
}
}
}
}
},
"type": "object",
"allOf": [
{
"$ref": "sublime://settings/LSP-plugin-base"
},
{
"$ref": "sublime://settings/LSP-elm#/definitions/PluginConfig"
}
]
}
},
{
"file_patterns": [
"/*.sublime-project"
],
"schema": {
"properties": {
"settings": {
"properties": {
"LSP": {
"properties": {
"LSP-elm": {
"$ref": "sublime://settings/LSP-elm#/definitions/PluginConfig"
}
}
}
}
}
}
}
},
]
}
}