|
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"
|
|
69 | 69 | "properties": {
|
70 | 70 | "haskell.hlintOn": {
|
71 | 71 | "title": "Hlint",
|
| 72 | + "markdownDeprecationMessage": "**Deprecated**: Please use `#haskell.plugin.hlint.globalOn#` instead.", |
72 | 73 | "scope": "resource",
|
73 | 74 | "type": "boolean",
|
74 | 75 | "default": true,
|
|
86 | 87 | "default": true,
|
87 | 88 | "description": "Compute diagnostics continuously as you type. Turn off to only generate diagnostics on file save."
|
88 | 89 | },
|
89 |
| - "haskell.liquidOn": { |
90 |
| - "scope": "resource", |
91 |
| - "type": "boolean", |
92 |
| - "default": false, |
93 |
| - "description": "Get diagnostics from liquid haskell" |
94 |
| - }, |
95 | 90 | "haskell.completionSnippetsOn": {
|
96 | 91 | "title": "Completion Snippets",
|
97 | 92 | "scope": "resource",
|
|
117 | 112 | "none"
|
118 | 113 | ],
|
119 | 114 | "default": "ormolu",
|
120 |
| - "description": "The formatter to use when formatting a document or range" |
| 115 | + "description": "The formatter to use when formatting a document or range. Ensure the plugin is enabled." |
121 | 116 | },
|
122 | 117 | "haskell.trace.server": {
|
123 | 118 | "scope": "resource",
|
|
139 | 134 | "scope": "resource",
|
140 | 135 | "type": "string",
|
141 | 136 | "enum": [
|
142 |
| - "haskell-ide-engine", |
143 | 137 | "haskell-language-server",
|
144 | 138 | "ghcide"
|
145 | 139 | ],
|
|
173 | 167 | ],
|
174 | 168 | "default": "keep-up-to-date",
|
175 | 169 | "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."
|
| 170 | + }, |
| 171 | + "haskell.plugin.importLens.codeActionsOn": { |
| 172 | + "scope": "resource", |
| 173 | + "type": "boolean", |
| 174 | + "default": true, |
| 175 | + "description": "Enables explicit imports code actions" |
| 176 | + }, |
| 177 | + "haskell.plugin.importLens.codeLensOn": { |
| 178 | + "scope": "resource", |
| 179 | + "type": "boolean", |
| 180 | + "default": true, |
| 181 | + "description": "Enables explicit imports code lenses" |
| 182 | + }, |
| 183 | + "haskell.plugin.hlint.codeActionsOn": { |
| 184 | + "scope": "resource", |
| 185 | + "type": "boolean", |
| 186 | + "default": true, |
| 187 | + "description": "Enables hlint code actions (apply hints)" |
| 188 | + }, |
| 189 | + "haskell.plugin.hlint.diagnosticsOn": { |
| 190 | + "scope": "resource", |
| 191 | + "type": "boolean", |
| 192 | + "default": true, |
| 193 | + "description": "Enables hlint diagnostics" |
| 194 | + }, |
| 195 | + "haskell.plugin.eval.globalOn": { |
| 196 | + "scope": "resource", |
| 197 | + "type": "boolean", |
| 198 | + "default": true, |
| 199 | + "description": "Enables eval plugin" |
| 200 | + }, |
| 201 | + "haskell.plugin.moduleName.globalOn": { |
| 202 | + "scope": "resource", |
| 203 | + "type": "boolean", |
| 204 | + "default": true, |
| 205 | + "description": "Enables module name plugin" |
| 206 | + }, |
| 207 | + "haskell.plugin.splice.globalOn": { |
| 208 | + "scope": "resource", |
| 209 | + "type": "boolean", |
| 210 | + "default": true, |
| 211 | + "description": "Enables splice plugin (expand template haskell definitions)" |
| 212 | + }, |
| 213 | + "haskell.plugin.haddockComments.globalOn": { |
| 214 | + "scope": "resource", |
| 215 | + "type": "boolean", |
| 216 | + "default": true, |
| 217 | + "description": "Enables haddock comments plugin" |
| 218 | + }, |
| 219 | + "haskell.plugin.class.globalOn": { |
| 220 | + "scope": "resource", |
| 221 | + "type": "boolean", |
| 222 | + "default": true, |
| 223 | + "description": "Enables type class plugin" |
| 224 | + }, |
| 225 | + "haskell.plugin.retrie.globalOn": { |
| 226 | + "scope": "resource", |
| 227 | + "type": "boolean", |
| 228 | + "default": true, |
| 229 | + "description": "Enables retrie plugin" |
| 230 | + }, |
| 231 | + "haskell.plugin.tactic.globalOn": { |
| 232 | + "scope": "resource", |
| 233 | + "type": "boolean", |
| 234 | + "default": true, |
| 235 | + "description": "Enables wingman (tactic) plugin" |
| 236 | + }, |
| 237 | + "haskell.plugin.tactic.config.max_use_ctor_actions": { |
| 238 | + "title": "Max number of constructors", |
| 239 | + "scope": "resource", |
| 240 | + "type": "boolean", |
| 241 | + "default": true, |
| 242 | + "markdownDescription": "Maximum number of `Use constructor <x>` code actions that can appear" |
| 243 | + }, |
| 244 | + "haskell.plugin.tactic.config.features": { |
| 245 | + "scope": "resource", |
| 246 | + "type": "Object", |
| 247 | + "default": true, |
| 248 | + "markdownDescription": "Features set used by wingman (tactic) plugin" |
| 249 | + }, |
| 250 | + "haskell.plugin.pragmas.codeActionsOn": { |
| 251 | + "scope": "resource", |
| 252 | + "type": "boolean", |
| 253 | + "default": true, |
| 254 | + "description": "Enables pragmas code actions" |
| 255 | + }, |
| 256 | + "haskell.plugin.pragmas.completionOn": { |
| 257 | + "scope": "resource", |
| 258 | + "type": "boolean", |
| 259 | + "default": true, |
| 260 | + "description": "Enables pragmas completions" |
| 261 | + }, |
| 262 | + "haskell.plugin.ghcide-type-lenses.globalOn": { |
| 263 | + "scope": "resource", |
| 264 | + "type": "boolean", |
| 265 | + "default": true, |
| 266 | + "description": "Enables type lenses plugin" |
| 267 | + }, |
| 268 | + "haskell.plugin.ghcide-type-lenses.config.mode": { |
| 269 | + "scope": "resource", |
| 270 | + "type": "string", |
| 271 | + "default": true, |
| 272 | + "description": "Control how type lenses are shown", |
| 273 | + "enum": [ |
| 274 | + "always", |
| 275 | + "exported", |
| 276 | + "diagnostics" |
| 277 | + ], |
| 278 | + "enumDescriptions": [ |
| 279 | + "Always displays type lenses of global bindings", |
| 280 | + "Only display type lenses of exported global bindings", |
| 281 | + "Follows error messages produced by GHC about missing signatures" |
| 282 | + ] |
176 | 283 | }
|
177 | 284 | }
|
178 | 285 | },
|
|
0 commit comments