Skip to content

Commit 6ec4059

Browse files
fix lint
1 parent b528e1d commit 6ec4059

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/extension/debugger/configuration/launch.json/launchJsonReader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export async function getConfigurationsForWorkspace(workspace: WorkspaceFolder):
2929
if (!parsed.version) {
3030
throw Error('Missing field in launch.json: version');
3131
}
32-
traceLog("Using configuration in launch.json");
32+
traceLog('Using configuration in launch.json');
3333
return parsed.configurations;
3434
}
3535

src/extension/debugger/configuration/resolvers/base.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,17 @@ export abstract class BaseConfigurationResolver<T extends DebugConfiguration>
6363
const workspaceFolders = getWorkspaceFolders();
6464

6565
if (!Array.isArray(workspaceFolders) || workspaceFolders.length === 0) {
66-
traceLog("No workspace folder found");
66+
traceLog('No workspace folder found');
6767
return program ? Uri.file(path.dirname(program)) : undefined;
6868
}
6969
if (workspaceFolders.length === 1) {
70-
traceLog("Using the only workspaceFolder found: ", workspaceFolders[0].uri.fsPath);
70+
traceLog('Using the only workspaceFolder found: ', workspaceFolders[0].uri.fsPath);
7171
return workspaceFolders[0].uri;
7272
}
7373
if (program) {
7474
const workspaceFolder = getVSCodeWorkspaceFolder(Uri.file(program));
7575
if (workspaceFolder) {
76-
traceLog("Using workspaceFolder found for the program: ", workspaceFolder.uri.fsPath);
76+
traceLog('Using workspaceFolder found for the program: ', workspaceFolder.uri.fsPath);
7777
return workspaceFolder.uri;
7878
}
7979
}

0 commit comments

Comments
 (0)