diff --git a/googlegpt/eslint.config.mjs b/googlegpt/eslint.config.mjs index a570d9aee2..0cdb18835c 100644 --- a/googlegpt/eslint.config.mjs +++ b/googlegpt/eslint.config.mjs @@ -33,7 +33,6 @@ export default [ 'quotes': ['error', 'single', // enforce single quotes... { 'allowTemplateLiterals': true }], // ...except backticks to avoid escaping quotes 'comma-dangle': ['error', 'never'], // enforce no trailing commas in arrays or objects - 'no-async-promise-executor': 'off', // allow promise executor functions to be async (to accommodate await lines) 'no-constant-condition': 'off', // allow constant conditions 'no-empty': 'off', // allow empty blocks 'no-inner-declarations': 'off', // allow function declarations anywhere