Update eslint plugin & fix silly indenting

As per matrix-org/eslint-plugin-matrix-org#15
this caused a bunch of silly indenting to creep in, so this fixes it
back to the previous style.
This commit is contained in:
David Baker
2021-08-03 17:12:28 +01:00
parent 4ceb91b3ae
commit f174abb8b0
3 changed files with 5 additions and 5 deletions

View File

@@ -28,7 +28,7 @@ function runUpdateExe(args: string[]): Promise<void> {
console.log(`Spawning '${updateExe}' with args '${args}'`);
return new Promise(resolve => {
spawn(updateExe, args, {
detached: true,
detached: true,
}).on('close', resolve);
});
}