Skip to content

Commit

Permalink
Merge pull request #416 from jneira/update-config
Browse files Browse the repository at this point in the history
Update config to last hls schema
  • Loading branch information
jneira authored Jul 29, 2021
2 parents 573f898 + ed6fb4c commit a15678e
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,28 +67,12 @@
"type": "object",
"title": "Haskell",
"properties": {
"haskell.hlintOn": {
"title": "Hlint",
"markdownDeprecationMessage": "**Deprecated**: Please use `#haskell.plugin.hlint.globalOn#` instead.",
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Get suggestions from hlint"
},
"haskell.diagnosticsOnChange": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Compute diagnostics continuously as you type. Turn off to only generate diagnostics on file save."
},
"haskell.completionSnippetsOn": {
"title": "Completion Snippets",
"markdownDeprecationMessage": "**Deprecated**: Please use `#haskell.plugin.ghcide-completions.config.snippetsOn#` instead.",
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Show snippets with type information when using code completion"
},
"haskell.formatOnImportOn": {
"scope": "resource",
"type": "boolean",
Expand Down Expand Up @@ -177,6 +161,12 @@
"default": true,
"description": "Enables hlint diagnostics"
},
"haskell.plugin.hlint.config.flags": {
"markdownDescription": "Flags used by hlint",
"scope": "resource",
"default": [],
"type": "array"
},
"haskell.plugin.eval.globalOn": {
"scope": "resource",
"type": "boolean",
Expand Down Expand Up @@ -219,6 +209,12 @@
"default": true,
"description": "Enables Wingman (tactics) plugin"
},
"haskell.plugin.tactics.config.auto_gas": {
"markdownDescription": "The depth of the search tree when performing \"Attempt to fill hole\". Bigger values will be able to derive more solutions, but will take exponentially more time.",
"scope": "resource",
"default": 4,
"type": "integer"
},
"haskell.plugin.tactics.config.hole_severity": {
"enumDescriptions": [
"error",
Expand Down Expand Up @@ -252,6 +248,12 @@
"default": 2,
"type": "integer"
},
"haskell.plugin.tactics.config.proofstate_styling": {
"markdownDescription": "Should Wingman emit styling markup when showing metaprogram proof states?",
"scope": "resource",
"default": true,
"type": "boolean"
},
"haskell.plugin.pragmas.codeActionsOn": {
"scope": "resource",
"type": "boolean",
Expand Down

0 comments on commit a15678e

Please sign in to comment.