Skip to content

Commit d7f5def

Browse files
committed
space-in-parens
1 parent 1cc0ff2 commit d7f5def

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
"radix": "off",
120120
"sort-keys": "off",
121121
"space-before-function-paren": "off",
122-
"space-in-parens": "off",
122+
"space-in-parens": "error",
123123
"unicode-bom": ["error", "never"],
124124
"use-isnan": "error",
125125
"valid-typeof": "off"

scripts/importDefinitelyTypedTests/importDefinitelyTypedTests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function copyFileSync(source: string, destination: string) {
4646
fs.writeFileSync(destination, text);
4747
}
4848

49-
function importDefinitelyTypedTest(tscPath: string, rwcTestPath: string, testCaseName: string, testFiles: string[], responseFile: string ) {
49+
function importDefinitelyTypedTest(tscPath: string, rwcTestPath: string, testCaseName: string, testFiles: string[], responseFile: string) {
5050
let cmd = "node " + tscPath + " --module commonjs " + testFiles.join(" ");
5151
if (responseFile) {
5252
cmd += " @" + responseFile;

0 commit comments

Comments
 (0)