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
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1875,6 +1875,12 @@
1875
1875
"default": false,
1876
1876
"scope": "resource"
1877
1877
},
1878
+
"build.experimentalUseInvalidMetadata": {
1879
+
"type": "boolean",
1880
+
"markdownDescription": "(Experimental) experimentalUseInvalidMetadata enables gopls to fall back on outdated\npackage metadata to provide editor features if the go command fails to\nload packages for some reason (like an invalid go.mod file). This will\neventually be the default behavior, and this setting will be removed.\n",
1881
+
"default": false,
1882
+
"scope": "resource"
1883
+
},
1878
1884
"build.experimentalWorkspaceModule": {
1879
1885
"type": "boolean",
1880
1886
"markdownDescription": "(Experimental) experimentalWorkspaceModule opts a user into the experimental support\nfor multi-module workspaces.\n",
@@ -2222,12 +2228,18 @@
2222
2228
}
2223
2229
}
2224
2230
},
2225
-
"ui.diagnostic.experimentalDiagnosticsDelay": {
2231
+
"ui.diagnostic.diagnosticsDelay": {
2226
2232
"type": "string",
2227
-
"markdownDescription": "(Experimental) experimentalDiagnosticsDelay controls the amount of time that gopls waits\nafter the most recent file modification before computing deep diagnostics.\nSimple diagnostics (parsing and type-checking) are always run immediately\non recently modified packages.\n\nThis option must be set to a valid duration string, for example `\"250ms\"`.\n",
2233
+
"markdownDescription": "(Advanced) diagnosticsDelay controls the amount of time that gopls waits\nafter the most recent file modification before computing deep diagnostics.\nSimple diagnostics (parsing and type-checking) are always run immediately\non recently modified packages.\n\nThis option must be set to a valid duration string, for example `\"250ms\"`.\n",
2228
2234
"default": "250ms",
2229
2235
"scope": "resource"
2230
2236
},
2237
+
"ui.diagnostic.experimentalWatchedFileDelay": {
2238
+
"type": "string",
2239
+
"markdownDescription": "(Experimental) experimentalWatchedFileDelay controls the amount of time that gopls waits\nfor additional workspace/didChangeWatchedFiles notifications to arrive,\nbefore processing all such notifications in a single batch. This is\nintended for use by LSP clients that don't support their own batching of\nfile system notifications.\n\nThis option must be set to a valid duration string, for example `\"100ms\"`.\n",
2240
+
"default": "0s",
2241
+
"scope": "resource"
2242
+
},
2231
2243
"ui.diagnostic.staticcheck": {
2232
2244
"type": "boolean",
2233
2245
"markdownDescription": "(Experimental) staticcheck enables additional analyses from staticcheck.io.\n",
0 commit comments