Skip to content

Commit 8f6e5a3

Browse files
committed
Fixed invalid default value.
1 parent f68eac9 commit 8f6e5a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/omnisharp/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class Options {
6262
const defaultLaunchSolution = omnisharpConfig.get<string>('defaultLaunchSolution', undefined);
6363
const useEditorFormattingSettings = omnisharpConfig.get<boolean>('useEditorFormattingSettings', true);
6464

65-
const enableRoslynAnalyzers = omnisharpConfig.get<boolean>('enableRoslynAnalyzers', true);
65+
const enableRoslynAnalyzers = omnisharpConfig.get<boolean>('enableRoslynAnalyzers', false);
6666

6767
const useFormatting = csharpConfig.get<boolean>('format.enable', true);
6868

0 commit comments

Comments
 (0)