diff options
author | Emil Lauridsen <[email protected]> | 2019-04-03 10:01:34 +0100 |
---|---|---|
committer | Emil Lauridsen <[email protected]> | 2019-04-03 10:01:34 +0100 |
commit | b8ea91ae2d94f11f003df6ab36c3761dd2932362 (patch) | |
tree | 9ca28e044e110fba364bbb77d90d08464bd26a2a /editors/code | |
parent | 3a79490187264c5cf11a59d8fd1738f876829f6a (diff) |
Fix eslint errors
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/src/commands/cargo_watch.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands/cargo_watch.ts b/editors/code/src/commands/cargo_watch.ts index 6b6113017..32bd38a1c 100644 --- a/editors/code/src/commands/cargo_watch.ts +++ b/editors/code/src/commands/cargo_watch.ts | |||
@@ -52,7 +52,7 @@ export class CargoWatchProvider { | |||
52 | args += ' ' + Server.config.cargoWatchOptions.checkArguments; | 52 | args += ' ' + Server.config.cargoWatchOptions.checkArguments; |
53 | } | 53 | } |
54 | // Windows handles arguments differently than the unix-likes, so we need to wrap the args in double quotes | 54 | // Windows handles arguments differently than the unix-likes, so we need to wrap the args in double quotes |
55 | if (process.platform == "win32") { | 55 | if (process.platform === 'win32') { |
56 | args = '"' + args + '"'; | 56 | args = '"' + args + '"'; |
57 | } | 57 | } |
58 | 58 | ||