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.
1 parent 069e362 commit 538496cCopy full SHA for 538496c
src/inlay-hints.ts
@@ -71,8 +71,8 @@ class InlayHintsFeature implements vscodelc.StaticFeature {
71
var val = vscode.workspace.getConfiguration().get<boolean|string>(
72
enabledSetting, 'on');
73
if (val === true || val === 'on')
74
- val = 'off'
75
- else if (val === false || val === 'off')
+ val = 'off';
+ else if (val === false || val === 'off')
76
val = 'on';
77
else if (val === 'offUnlessPressed')
78
val = 'onUnlessPressed';
0 commit comments