|
2 | 2 | "name": "haskell",
|
3 | 3 | "displayName": "Haskell",
|
4 | 4 | "description": "Haskell language support powered by the Haskell Language Server and ghcide",
|
5 |
| - "version": "1.2.0", |
| 5 | + "version": "1.3.0", |
6 | 6 | "license": "MIT",
|
7 | 7 | "publisher": "haskell",
|
8 | 8 | "engines": {
|
|
30 | 30 | "Linters",
|
31 | 31 | "Other"
|
32 | 32 | ],
|
33 |
| - "icon": "images/haskell-logo.png", |
| 33 | + "icon": "images/hls-logo.png", |
34 | 34 | "galleryBanner": {
|
35 | 35 | "color": "#22172A",
|
36 | 36 | "theme": "dark"
|
|
86 | 86 | "default": true,
|
87 | 87 | "description": "Compute diagnostics continuously as you type. Turn off to only generate diagnostics on file save."
|
88 | 88 | },
|
89 |
| - "haskell.liquidOn": { |
90 |
| - "scope": "resource", |
91 |
| - "type": "boolean", |
92 |
| - "default": false, |
93 |
| - "description": "Get diagnostics from liquid haskell" |
94 |
| - }, |
95 | 89 | "haskell.completionSnippetsOn": {
|
96 | 90 | "title": "Completion Snippets",
|
97 | 91 | "scope": "resource",
|
|
117 | 111 | "none"
|
118 | 112 | ],
|
119 | 113 | "default": "ormolu",
|
120 |
| - "description": "The formatter to use when formatting a document or range" |
| 114 | + "description": "The formatter to use when formatting a document or range. Ensure the plugin is enabled." |
121 | 115 | },
|
122 | 116 | "haskell.trace.server": {
|
123 | 117 | "scope": "resource",
|
|
139 | 133 | "scope": "resource",
|
140 | 134 | "type": "string",
|
141 | 135 | "enum": [
|
142 |
| - "haskell-ide-engine", |
143 | 136 | "haskell-language-server",
|
144 | 137 | "ghcide"
|
145 | 138 | ],
|
|
173 | 166 | ],
|
174 | 167 | "default": "keep-up-to-date",
|
175 | 168 | "markdownDescription": "Only applicable with `#haskell.languageServerVariant#` set to `haskell-language-server`. Determine what to do when a new version of the language server is available."
|
| 169 | + }, |
| 170 | + "haskell.plugin.importLens.globalOn": { |
| 171 | + "scope": "resource", |
| 172 | + "type": "boolean", |
| 173 | + "default": true, |
| 174 | + "description": "Enables or disables the plugin entirely" |
| 175 | + }, |
| 176 | + "haskell.plugin.importLens.codeActionsOn": { |
| 177 | + "scope": "resource", |
| 178 | + "type": "boolean", |
| 179 | + "default": true, |
| 180 | + "description": "Enables or disables plugin code actions" |
| 181 | + }, |
| 182 | + "haskell.plugin.importLens.codeLensOn": { |
| 183 | + "scope": "resource", |
| 184 | + "type": "boolean", |
| 185 | + "default": true, |
| 186 | + "description": "Enables or disables plugin code lenses" |
| 187 | + }, |
| 188 | + "haskell.plugin.importLens.diagnosticsOn": { |
| 189 | + "scope": "resource", |
| 190 | + "type": "boolean", |
| 191 | + "default": true, |
| 192 | + "description": "Enables or disables plugin diagnostics" |
| 193 | + }, |
| 194 | + "haskell.plugin.importLens.hoverOn": { |
| 195 | + "scope": "resource", |
| 196 | + "type": "boolean", |
| 197 | + "default": true, |
| 198 | + "description": "Enables or disables plugin info on hover" |
| 199 | + }, |
| 200 | + "haskell.plugin.importLens.symbolsOn": { |
| 201 | + "scope": "resource", |
| 202 | + "type": "boolean", |
| 203 | + "default": true, |
| 204 | + "description": "Enables or disables specific symbols of the plugin" |
| 205 | + }, |
| 206 | + "haskell.plugin.importLens.formattingOn": { |
| 207 | + "scope": "resource", |
| 208 | + "type": "boolean", |
| 209 | + "default": true, |
| 210 | + "description": "Enables or disables the plugin formatting capacity" |
| 211 | + }, |
| 212 | + "haskell.plugin.importLens.completionOn": { |
| 213 | + "scope": "resource", |
| 214 | + "type": "boolean", |
| 215 | + "default": true, |
| 216 | + "description": "Enables or disables plugin completions" |
| 217 | + }, |
| 218 | + "haskell.plugin.importLens.renameOn": { |
| 219 | + "scope": "resource", |
| 220 | + "type": "boolean", |
| 221 | + "default": true, |
| 222 | + "description": "Enables or disables plugin renaming capacity" |
| 223 | + }, |
| 224 | + "haskell.plugin.hlint.globalOn": { |
| 225 | + "scope": "resource", |
| 226 | + "type": "boolean", |
| 227 | + "default": true, |
| 228 | + "description": "Enables or disables the plugin entirely" |
| 229 | + }, |
| 230 | + "haskell.plugin.hlint.codeActionsOn": { |
| 231 | + "scope": "resource", |
| 232 | + "type": "boolean", |
| 233 | + "default": true, |
| 234 | + "description": "Enables or disables plugin code actions" |
| 235 | + }, |
| 236 | + "haskell.plugin.hlint.codeLensOn": { |
| 237 | + "scope": "resource", |
| 238 | + "type": "boolean", |
| 239 | + "default": true, |
| 240 | + "description": "Enables or disables plugin code lenses" |
| 241 | + }, |
| 242 | + "haskell.plugin.hlint.diagnosticsOn": { |
| 243 | + "scope": "resource", |
| 244 | + "type": "boolean", |
| 245 | + "default": true, |
| 246 | + "description": "Enables or disables plugin diagnostics" |
| 247 | + }, |
| 248 | + "haskell.plugin.hlint.hoverOn": { |
| 249 | + "scope": "resource", |
| 250 | + "type": "boolean", |
| 251 | + "default": true, |
| 252 | + "description": "Enables or disables plugin info on hover" |
| 253 | + }, |
| 254 | + "haskell.plugin.hlint.symbolsOn": { |
| 255 | + "scope": "resource", |
| 256 | + "type": "boolean", |
| 257 | + "default": true, |
| 258 | + "description": "Enables or disables specific symbols of the plugin" |
| 259 | + }, |
| 260 | + "haskell.plugin.hlint.formattingOn": { |
| 261 | + "scope": "resource", |
| 262 | + "type": "boolean", |
| 263 | + "default": true, |
| 264 | + "description": "Enables or disables the plugin formatting capacity" |
| 265 | + }, |
| 266 | + "haskell.plugin.hlint.completionOn": { |
| 267 | + "scope": "resource", |
| 268 | + "type": "boolean", |
| 269 | + "default": true, |
| 270 | + "description": "Enables or disables plugin completions" |
| 271 | + }, |
| 272 | + "haskell.plugin.hlint.renameOn": { |
| 273 | + "scope": "resource", |
| 274 | + "type": "boolean", |
| 275 | + "default": true, |
| 276 | + "description": "Enables or disables plugin renaming capacity" |
176 | 277 | }
|
177 | 278 | }
|
178 | 279 | },
|
|
0 commit comments