diff --git a/minify.js/eslint.config.mjs b/minify.js/eslint.config.mjs index ea686918..55fe70a9 100644 --- a/minify.js/eslint.config.mjs +++ b/minify.js/eslint.config.mjs @@ -26,7 +26,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 accomodate await lines) 'no-constant-condition': 'off', // allow constant conditions 'no-empty': 'off', // allow empty blocks 'no-inner-declarations': 'off', // allow function declarations anywhere