From b8c26b2b7fab97f20d97f5d0d6a967c26d71eea9 Mon Sep 17 00:00:00 2001 From: Sam Reid Date: Wed, 25 Sep 2024 20:38:41 -0600 Subject: [PATCH] Upgrade to ESLint 9 and flat config, see https://github.com/phetsims/chipper/issues/1474 --- js/grunt/Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/grunt/Gruntfile.js b/js/grunt/Gruntfile.js index fa07409..0a80a37 100644 --- a/js/grunt/Gruntfile.js +++ b/js/grunt/Gruntfile.js @@ -161,7 +161,7 @@ module.exports = grunt => { winston.info( `Config: ${JSON.stringify( options )}` ); ( async () => { - while ( true ) { // eslint-disable-line no-constant-condition + while ( true ) { // TODO: no-constant-condition, see https://github.com/phetsims/chipper/issues/1451 await runNextTest( options ); } } )();