From 20134b52d90a3e0a18dc111c7502252204572095 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Tue, 29 Apr 2025 10:25:11 -0400 Subject: [PATCH] Fix build failure due to prettier error Fixes #1117 Signed-off-by: David Thompson --- src/extension.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/extension.ts b/src/extension.ts index f505a76f..f56b691e 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -116,7 +116,12 @@ export function startClient( // Options to control the language client const clientOptions: LanguageClientOptions = { // Register the server for on disk and newly created YAML documents - documentSelector: [{ language: 'yaml' }, { language: 'dockercompose' }, { language: 'github-actions-workflow' }, { pattern: '*.y(a)ml' }], + documentSelector: [ + { language: 'yaml' }, + { language: 'dockercompose' }, + { language: 'github-actions-workflow' }, + { pattern: '*.y(a)ml' }, + ], synchronize: { // Notify the server about file changes to YAML and JSON files contained in the workspace fileEvents: [workspace.createFileSystemWatcher('**/*.?(e)y?(a)ml'), workspace.createFileSystemWatcher('**/*.json')],