Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Arcticae committed Nov 13, 2024
1 parent 9623499 commit 3153786
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vscode-cairo/src/cairols.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ async function allFoldersHaveSameLSProvider(
export async function setupLanguageServer(ctx: Context): Promise<lc.LanguageClient> {
const executables = (
await Promise.all(
(vscode.workspace.workspaceFolders || []).map(
(workspaceFolder) => getLanguageServerExecutable(workspaceFolder, ctx),
(vscode.workspace.workspaceFolders || []).map((workspaceFolder) =>
getLanguageServerExecutable(workspaceFolder, ctx),
),
)
).filter((x) => !!x) as LSExecutable[];
Expand Down

0 comments on commit 3153786

Please sign in to comment.