Skip to content

Commit 20134b5

Browse files
committed
Fix build failure due to prettier error
Fixes #1117 Signed-off-by: David Thompson <davthomp@redhat.com>
1 parent 0a252ff commit 20134b5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/extension.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,12 @@ export function startClient(
116116
// Options to control the language client
117117
const clientOptions: LanguageClientOptions = {
118118
// Register the server for on disk and newly created YAML documents
119-
documentSelector: [{ language: 'yaml' }, { language: 'dockercompose' }, { language: 'github-actions-workflow' }, { pattern: '*.y(a)ml' }],
119+
documentSelector: [
120+
{ language: 'yaml' },
121+
{ language: 'dockercompose' },
122+
{ language: 'github-actions-workflow' },
123+
{ pattern: '*.y(a)ml' },
124+
],
120125
synchronize: {
121126
// Notify the server about file changes to YAML and JSON files contained in the workspace
122127
fileEvents: [workspace.createFileSystemWatcher('**/*.?(e)y?(a)ml'), workspace.createFileSystemWatcher('**/*.json')],

0 commit comments

Comments
 (0)