From b1bc629b83c65c0a3cc0e47a3f55969b9bab950e Mon Sep 17 00:00:00 2001 From: Aleksei Sidorov Date: Mon, 24 Jun 2019 13:33:37 +0300 Subject: Fix tslints --- editors/code/src/commands/cargo_watch.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'editors/code/src/commands') diff --git a/editors/code/src/commands/cargo_watch.ts b/editors/code/src/commands/cargo_watch.ts index db92e03f4..16aac3758 100644 --- a/editors/code/src/commands/cargo_watch.ts +++ b/editors/code/src/commands/cargo_watch.ts @@ -57,9 +57,7 @@ export class CargoWatchProvider implements vscode.Disposable { return; } - let command = Server.config.cargoWatchOptions.checkCommand; - - let args = command + ' --all-targets --message-format json'; + let args = Server.config.cargoWatchOptions.checkCommand + ' --all-targets --message-format json'; if (Server.config.cargoWatchOptions.checkArguments.length > 0) { // Excape the double quote string: args += ' ' + Server.config.cargoWatchOptions.checkArguments; -- cgit v1.2.3