Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/tasks.ts')
-rw-r--r--editors/code/src/tasks.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/code/src/tasks.ts b/editors/code/src/tasks.ts
index f451e738d5..1d5ab82aa0 100644
--- a/editors/code/src/tasks.ts
+++ b/editors/code/src/tasks.ts
@@ -48,7 +48,7 @@ class CargoTaskProvider implements vscode.TaskProvider {
`cargo ${def.command}`,
[def.command],
this.config.problemMatcher,
- this.config.cargoRunner
+ this.config.cargoRunner,
);
vscodeTask.group = def.group;
tasks.push(vscodeTask);
@@ -73,7 +73,7 @@ class CargoTaskProvider implements vscode.TaskProvider {
task.name,
args,
this.config.problemMatcher,
- this.config.cargoRunner
+ this.config.cargoRunner,
);
}
@@ -88,7 +88,7 @@ export async function buildCargoTask(
args: string[],
problemMatcher: string[],
customRunner?: string,
- throwOnError: boolean = false
+ throwOnError: boolean = false,
): Promise<vscode.Task> {
let exec: vscode.ProcessExecution | vscode.ShellExecution | undefined = undefined;
@@ -133,7 +133,7 @@ export async function buildCargoTask(
name,
TASK_SOURCE,
exec,
- problemMatcher
+ problemMatcher,
);
}