Fix eslint errors

This commit is contained in:
Emil Lauridsen 2019-04-03 11:01:34 +02:00
parent 3a79490187
commit b8ea91ae2d

View file

@ -52,7 +52,7 @@ export class CargoWatchProvider {
args += ' ' + Server.config.cargoWatchOptions.checkArguments;
}
// Windows handles arguments differently than the unix-likes, so we need to wrap the args in double quotes
if (process.platform == "win32") {
if (process.platform === 'win32') {
args = '"' + args + '"';
}