Skip to content

Commit 711347b

Browse files
committed
Fix codestyle issues
1 parent a17fc3a commit 711347b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ exports.activate = (context: ExtensionContext) => {
2525

2626
const clientOptions = {
2727
documentSelector: [{ language: 'elixir', scheme: 'file' }, { language: 'elixir', scheme: 'untitled' }],
28-
synchronize: { configurationSection: 'elixirLS', fileEvents: [ workspace.createFileSystemWatcher('**/*.{ex,exs,erl,yrl,xrl,eex}') ] }
28+
synchronize: {
29+
configurationSection: 'elixirLS',
30+
fileEvents: [workspace.createFileSystemWatcher('**/*.{ex,exs,erl,yrl,xrl,eex}')],
31+
},
2932
};
3033

3134
const languageClient = new LanguageClient('elixir', 'elixir', serverOptions, clientOptions);

0 commit comments

Comments
 (0)