aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands/runnables.ts
diff options
context:
space:
mode:
authorEdwin Cheng <[email protected]>2019-03-31 14:21:14 +0100
committerEdwin Cheng <[email protected]>2019-04-02 08:03:30 +0100
commitc894a3e19b0e658622a03a7d0539a78a433b42ae (patch)
tree687f625980861712afb024aec8af4718c1c900a7 /editors/code/src/commands/runnables.ts
parent6971c7f1185fb7c1c0ce5f19867b999de71b5937 (diff)
Fix prettier error
Diffstat (limited to 'editors/code/src/commands/runnables.ts')
-rw-r--r--editors/code/src/commands/runnables.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/code/src/commands/runnables.ts b/editors/code/src/commands/runnables.ts
index 0adb85d5f..7bba6f9cb 100644
--- a/editors/code/src/commands/runnables.ts
+++ b/editors/code/src/commands/runnables.ts
@@ -134,8 +134,9 @@ export async function handleSingle(runnable: Runnable) {
134 * provide inline diagnostics; the user is met with a series of dialog boxes 134 * provide inline diagnostics; the user is met with a series of dialog boxes
135 * that, when accepted, allow us to `cargo install cargo-watch` and then run it. 135 * that, when accepted, allow us to `cargo install cargo-watch` and then run it.
136 */ 136 */
137export async function interactivelyStartCargoWatch(context: vscode.ExtensionContext) { 137export async function interactivelyStartCargoWatch(
138 138 context: vscode.ExtensionContext
139) {
139 if (Server.config.enableCargoWatchOnStartup === 'disabled') { 140 if (Server.config.enableCargoWatchOnStartup === 'disabled') {
140 return; 141 return;
141 } 142 }
@@ -195,7 +196,6 @@ export async function interactivelyStartCargoWatch(context: vscode.ExtensionCont
195 } 196 }
196 } 197 }
197 198
198
199 const validater = new CargoWatchProvider(); 199 const validater = new CargoWatchProvider();
200 validater.activate(context.subscriptions); 200 validater.activate(context.subscriptions);
201} 201}