We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
no-async-promise-executor
1 parent a8f0226 commit 88ff6e0Copy full SHA for 88ff6e0
eslint.config.mjs
@@ -23,7 +23,6 @@ export default [
23
'quotes': ['error', 'single', // enforce single quotes...
24
{ 'allowTemplateLiterals': true }], // ...except backticks to avoid escaping quotes
25
'comma-dangle': ['error', 'never'], // enforce no trailing commas in arrays or objects
26
- 'no-async-promise-executor': 'off', // allow promise executor functions to be async (to accomodate await lines)
27
'no-constant-condition': 'off', // allow constant conditions
28
'no-empty': 'off', // allow empty blocks
29
'no-inner-declarations': 'off', // allow function declarations anywhere
0 commit comments