Skip to content

Commit ec0bc66

Browse files
fix format
Signed-off-by: Roman Nikitenko <rnikiten@redhat.com>
1 parent 1ea14fe commit ec0bc66

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

launcher/src/vscode-launcher.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,16 @@ export class VSCodeLauncher {
3232

3333
const host = env.CODE_HOST || '127.0.0.1';
3434

35-
const params = ['out/server-main.js', '--host', host, '--port', '3100', '--without-connection-token', '--allowed-extensions-policy-file', '/checode-config/policies.json'];
35+
const params = [
36+
'out/server-main.js',
37+
'--host',
38+
host,
39+
'--port',
40+
'3100',
41+
'--without-connection-token',
42+
'--allowed-extensions-policy-file',
43+
'/checode-config/policies.json',
44+
];
3645

3746
if (workspaceFile) {
3847
params.push('--default-workspace', workspaceFile);

0 commit comments

Comments
 (0)