Skip to content

Commit f1c940a

Browse files
committed
style: prettier
1 parent 4e06f1d commit f1c940a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/extension.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,11 @@ function registerCommands(
209209
commands.registerCommand("sourcery.chat.toggleCodeLens", () => {
210210
const config = vscode.workspace.getConfiguration();
211211
const currentValue = config.get("sourcery.codeLens");
212-
config.update("sourcery.codeLens", !currentValue, vscode.ConfigurationTarget.Global);
212+
config.update(
213+
"sourcery.codeLens",
214+
!currentValue,
215+
vscode.ConfigurationTarget.Global
216+
);
213217
})
214218
);
215219

0 commit comments

Comments
 (0)