Skip to content
This repository was archived by the owner on Jan 17, 2026. It is now read-only.

Commit 38afe39

Browse files
committed
Format
1 parent 1c70351 commit 38afe39

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

src/extension.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ export function deactivate(): void {
4343
async function maybeAutoInstall(
4444
context: ExtensionContext,
4545
): Promise<string | undefined> {
46-
const releasePathOverride = Configuration.getReleasePathOverride(getConfig, workspace);
46+
const releasePathOverride = Configuration.getReleasePathOverride(
47+
getConfig,
48+
workspace,
49+
);
4750

4851
if (releasePathOverride !== undefined && releasePathOverride !== "") {
4952
Logger.info(
@@ -116,11 +119,9 @@ async function start(
116119
);
117120

118121
if (fs.existsSync(startScriptPath)) {
119-
Logger.info(
120-
`Starting lexical at "${startScriptPath}"`,
121-
);
122+
Logger.info(`Starting lexical at "${startScriptPath}"`);
122123
} else {
123-
Logger.error(`Lexical start script not found: ${startScriptPath}`)
124+
Logger.error(`Lexical start script not found: ${startScriptPath}`);
124125
}
125126

126127
try {

0 commit comments

Comments
 (0)