space-in-parens

This commit is contained in:
Alexander T
2019-06-14 10:33:03 +03:00
parent 1cc0ff22c1
commit d7f5def5a3
2 changed files with 2 additions and 2 deletions

View File

@@ -119,7 +119,7 @@
"radix": "off",
"sort-keys": "off",
"space-before-function-paren": "off",
"space-in-parens": "off",
"space-in-parens": "error",
"unicode-bom": ["error", "never"],
"use-isnan": "error",
"valid-typeof": "off"

View File

@@ -46,7 +46,7 @@ function copyFileSync(source: string, destination: string) {
fs.writeFileSync(destination, text);
}
function importDefinitelyTypedTest(tscPath: string, rwcTestPath: string, testCaseName: string, testFiles: string[], responseFile: string ) {
function importDefinitelyTypedTest(tscPath: string, rwcTestPath: string, testCaseName: string, testFiles: string[], responseFile: string) {
let cmd = "node " + tscPath + " --module commonjs " + testFiles.join(" ");
if (responseFile) {
cmd += " @" + responseFile;