Skip to content

Commit 93994e1

Browse files
committed
Fix biome formatting in extension.ts
1 parent c72f862 commit 93994e1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

VSCode/vscode-extension/src/extension.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,9 @@ async function startLanguageServer(context: vscode.ExtensionContext): Promise<vo
580580
if (e.affectsConfiguration('strideShaderTools.shaderPaths')) {
581581
const updatedConfig = vscode.workspace.getConfiguration('strideShaderTools');
582582
const paths = updatedConfig.get<string[]>('shaderPaths') ?? [];
583-
client.sendNotification('stride/updateShaderPaths', { additionalShaderPaths: paths });
583+
client.sendNotification('stride/updateShaderPaths', {
584+
additionalShaderPaths: paths,
585+
});
584586
}
585587
})
586588
);

0 commit comments

Comments
 (0)