diff --git a/eslint/buildtools.eslint.config.mjs b/eslint/buildtools.eslint.config.mjs index f2e7e06d..2ca1dc07 100644 --- a/eslint/buildtools.eslint.config.mjs +++ b/eslint/buildtools.eslint.config.mjs @@ -5,16 +5,15 @@ * @author Sam Reid (PhET Interactive Simulations) * @author Michael Kauzmann (PhET Interactive Simulations) */ -export default [ - { - rules: { +export default { + rules: { - // TODO: we only want to turn these off in node code, still run them in the browser, see https://github.com/phetsims/chipper/issues/1451 - '@typescript-eslint/no-require-imports': 'off', - '@typescript-eslint/no-var-requires': 'off', - '@typescript-eslint/no-explicit-any': 'off', // TODO: Use IntentionalAny, https://github.com/phetsims/chipper/issues/1465 - '@typescript-eslint/no-floating-promises': 'off', - 'phet/bad-sim-text': 'off' - } + // TODO: we only want to turn these off in node code, still run them in the browser, see https://github.com/phetsims/chipper/issues/1451 + '@typescript-eslint/no-require-imports': 'off', + '@typescript-eslint/no-var-requires': 'off', + '@typescript-eslint/no-explicit-any': 'off', // TODO: Use IntentionalAny, https://github.com/phetsims/chipper/issues/1465 + '@typescript-eslint/no-floating-promises': 'off', + 'phet/bad-sim-text': 'off' } -]; \ No newline at end of file +} +; \ No newline at end of file