diff --git a/eslint.config.mjs b/eslint.config.mjs index 45ee3455226cab..17ea9909f26357 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -53,6 +53,7 @@ export default [ // We want to lint only a few specific fixtures folders 'test/fixtures/*', '!test/fixtures/console', + '!test/fixtures/eval', '!test/fixtures/v8', '!test/fixtures/vm', ]), diff --git a/test/fixtures/eval/eval_typescript.js b/test/fixtures/eval/eval_typescript.js index 2c96b66f70dde1..9fd1f3315d4a19 100644 --- a/test/fixtures/eval/eval_typescript.js +++ b/test/fixtures/eval/eval_typescript.js @@ -5,21 +5,21 @@ require('../../common'); const spawnSync = require('child_process').spawnSync; const queue = [ - 'enum Foo{};', - 'throw new SyntaxError("hello")', - 'const foo;', - 'let x: number = 100;x;', - 'const foo: string = 10;', - 'function foo(){};foo(1);', - 'interface Foo{};const foo;', - 'function foo(){ await Promise.resolve(1)};', + 'enum Foo{};', + 'throw new SyntaxError("hello")', + 'const foo;', + 'let x: number = 100;x;', + 'const foo: string = 10;', + 'function foo(){};foo(1);', + 'interface Foo{};const foo;', + 'function foo(){ await Promise.resolve(1)};', ]; for (const cmd of queue) { - const args = ['--disable-warning=ExperimentalWarning', '-p', cmd]; - const result = spawnSync(process.execPath, args, { - stdio: 'pipe' - }); - process.stdout.write(result.stdout); - process.stdout.write(result.stderr); + const args = ['--disable-warning=ExperimentalWarning', '-p', cmd]; + const result = spawnSync(process.execPath, args, { + stdio: 'pipe', + }); + process.stdout.write(result.stdout); + process.stdout.write(result.stderr); } diff --git a/test/fixtures/eval/stdin_typescript.js b/test/fixtures/eval/stdin_typescript.js index d47c495f861fba..e1acaf8a6b391d 100644 --- a/test/fixtures/eval/stdin_typescript.js +++ b/test/fixtures/eval/stdin_typescript.js @@ -5,34 +5,34 @@ require('../../common'); const spawn = require('child_process').spawn; function run(cmd, strict, cb) { - const args = ['--disable-warning=ExperimentalWarning']; - if (strict) args.push('--use_strict'); - args.push('-p'); - const child = spawn(process.execPath, args); - child.stdout.pipe(process.stdout); - child.stderr.pipe(process.stdout); - child.stdin.end(cmd); - child.on('close', cb); + const args = ['--disable-warning=ExperimentalWarning']; + if (strict) args.push('--use_strict'); + args.push('-p'); + const child = spawn(process.execPath, args); + child.stdout.pipe(process.stdout); + child.stderr.pipe(process.stdout); + child.stdin.end(cmd); + child.on('close', cb); } const queue = [ - 'enum Foo{};', - 'throw new SyntaxError("hello")', - 'const foo;', - 'let x: number = 100;x;', - 'const foo: string = 10;', - 'function foo(){};foo(1);', - 'interface Foo{};const foo;', - 'function foo(){ await Promise.resolve(1)};', + 'enum Foo{};', + 'throw new SyntaxError("hello")', + 'const foo;', + 'let x: number = 100;x;', + 'const foo: string = 10;', + 'function foo(){};foo(1);', + 'interface Foo{};const foo;', + 'function foo(){ await Promise.resolve(1)};', ]; function go() { - const c = queue.shift(); - if (!c) return console.log('done'); - run(c, false, function () { - run(c, true, go); - }); + const c = queue.shift(); + if (!c) return console.log('done'); + run(c, false, function() { + run(c, true, go); + }); } go();