tools: enable linter in test/fixtures/eval

PR-URL: https://github.com/nodejs/node/pull/57699
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Antoine du Hamel 2025-04-04 10:39:36 +02:00 committed by GitHub
parent 9de01cc4d1
commit 633ba0079e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 36 additions and 35 deletions

View File

@ -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',
]),

View File

@ -18,7 +18,7 @@ const queue = [
for (const cmd of queue) {
const args = ['--disable-warning=ExperimentalWarning', '-p', cmd];
const result = spawnSync(process.execPath, args, {
stdio: 'pipe'
stdio: 'pipe',
});
process.stdout.write(result.stdout);
process.stdout.write(result.stderr);

View File

@ -30,7 +30,7 @@ const queue =
function go() {
const c = queue.shift();
if (!c) return console.log('done');
run(c, false, function () {
run(c, false, function() {
run(c, true, go);
});
}