You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+18-16
Original file line number
Diff line number
Diff line change
@@ -67,28 +67,12 @@
67
67
"type": "object",
68
68
"title": "Haskell",
69
69
"properties": {
70
-
"haskell.hlintOn": {
71
-
"title": "Hlint",
72
-
"markdownDeprecationMessage": "**Deprecated**: Please use `#haskell.plugin.hlint.globalOn#` instead.",
73
-
"scope": "resource",
74
-
"type": "boolean",
75
-
"default": true,
76
-
"description": "Get suggestions from hlint"
77
-
},
78
70
"haskell.diagnosticsOnChange": {
79
71
"scope": "resource",
80
72
"type": "boolean",
81
73
"default": true,
82
74
"description": "Compute diagnostics continuously as you type. Turn off to only generate diagnostics on file save."
83
75
},
84
-
"haskell.completionSnippetsOn": {
85
-
"title": "Completion Snippets",
86
-
"markdownDeprecationMessage": "**Deprecated**: Please use `#haskell.plugin.ghcide-completions.config.snippetsOn#` instead.",
87
-
"scope": "resource",
88
-
"type": "boolean",
89
-
"default": true,
90
-
"description": "Show snippets with type information when using code completion"
91
-
},
92
76
"haskell.formatOnImportOn": {
93
77
"scope": "resource",
94
78
"type": "boolean",
@@ -177,6 +161,12 @@
177
161
"default": true,
178
162
"description": "Enables hlint diagnostics"
179
163
},
164
+
"haskell.plugin.hlint.config.flags": {
165
+
"markdownDescription": "Flags used by hlint",
166
+
"scope": "resource",
167
+
"default": [],
168
+
"type": "array"
169
+
},
180
170
"haskell.plugin.eval.globalOn": {
181
171
"scope": "resource",
182
172
"type": "boolean",
@@ -219,6 +209,12 @@
219
209
"default": true,
220
210
"description": "Enables Wingman (tactics) plugin"
221
211
},
212
+
"haskell.plugin.tactics.config.auto_gas": {
213
+
"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.",
0 commit comments