Skip to content

Commit 80187d6

Browse files
authored
Change default for reportInformationAsHint to match the current behavior.
1 parent 245ef1e commit 80187d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@
843843
},
844844
"dotnet.diagnostics.reportInformationAsHint": {
845845
"type": "boolean",
846-
"default": false,
846+
"default": true,
847847
"description": "%configuration.dotnet.diagnostics.reportInformationAsHint%",
848848
"order": 30
849849
},

src/shared/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ class LanguageServerOptionsImpl implements LanguageServerOptions {
416416
return readOption<boolean>('dotnet.server.useServerGC', true);
417417
}
418418
public get reportInformationAsHint() {
419-
return readOption<boolean>('dotnet.diagnostics.reportInformationAsHint', false);
419+
return readOption<boolean>('dotnet.diagnostics.reportInformationAsHint', true);
420420
}
421421
}
422422

0 commit comments

Comments
 (0)