Skip to content

Commit 538496c

Browse files
committed
Make clang-formate more happy.
1 parent 069e362 commit 538496c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/inlay-hints.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ class InlayHintsFeature implements vscodelc.StaticFeature {
7171
var val = vscode.workspace.getConfiguration().get<boolean|string>(
7272
enabledSetting, 'on');
7373
if (val === true || val === 'on')
74-
val = 'off'
75-
else if (val === false || val === 'off')
74+
val = 'off';
75+
else if (val === false || val === 'off')
7676
val = 'on';
7777
else if (val === 'offUnlessPressed')
7878
val = 'onUnlessPressed';

0 commit comments

Comments
 (0)