From 51f4e813c1c38ff1e537f3cfd977c79dade236fb Mon Sep 17 00:00:00 2001 From: Tom French Date: Mon, 4 Mar 2024 12:16:49 +0000 Subject: [PATCH] chore: linter --- src/client.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client.ts b/src/client.ts index ec63426..e00e369 100644 --- a/src/client.ts +++ b/src/client.ts @@ -135,14 +135,14 @@ export default class Client extends LanguageClient { const config = workspace.getConfiguration('noir', uri); const enableCodeLens = config.get('enableCodeLens'); - + const clientOptions: LanguageClientOptions = { documentSelector, workspaceFolder, outputChannel, initializationOptions: { - enableCodeLens - } + enableCodeLens, + }, }; const serverOptions: ServerOptions = {