We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no-async-promise-executor
1 parent 07b27a5 commit aede599Copy full SHA for aede599
duckduckgpt/eslint.config.mjs
@@ -32,7 +32,6 @@ export default [
32
'js-styles/no-extra-semi': 'error', // disallow unnecessary semicolons
33
'quotes': ['error', 'single', { 'allowTemplateLiterals': true }], // enforce single quotes except backticks to avoid escaping quotes
34
'comma-dangle': ['error', 'never'], // enforce no trailing commas in arrays or objects
35
- 'no-async-promise-executor': 'off', // allow promise executor functions to be async (to accommodate await lines)
36
'no-constant-condition': 'off', // allow constant conditions
37
'no-empty': 'off', // allow empty blocks
38
'no-inner-declarations': 'off', // allow function declarations anywhere
0 commit comments