We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
reportInformationAsHint
1 parent 245ef1e commit 80187d6Copy full SHA for 80187d6
package.json
@@ -843,7 +843,7 @@
843
},
844
"dotnet.diagnostics.reportInformationAsHint": {
845
"type": "boolean",
846
- "default": false,
+ "default": true,
847
"description": "%configuration.dotnet.diagnostics.reportInformationAsHint%",
848
"order": 30
849
src/shared/options.ts
@@ -416,7 +416,7 @@ class LanguageServerOptionsImpl implements LanguageServerOptions {
416
return readOption<boolean>('dotnet.server.useServerGC', true);
417
}
418
public get reportInformationAsHint() {
419
- return readOption<boolean>('dotnet.diagnostics.reportInformationAsHint', false);
+ return readOption<boolean>('dotnet.diagnostics.reportInformationAsHint', true);
420
421
422
0 commit comments