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 1061bf2 commit 67563efCopy full SHA for 67563ef
eslint.config.mjs
@@ -22,7 +22,6 @@ export default [
22
'js-styles/no-extra-semi': 'error', // disallow unnecessary semicolons
23
'quotes': ['error', 'single', { 'allowTemplateLiterals': true }], // enforce single quotes except backticks to avoid escaping quotes
24
'comma-dangle': ['error', 'never'], // enforce no trailing commas in arrays or objects
25
- 'no-async-promise-executor': 'off', // allow promise executor functions to be async (to accomodate await lines)
26
'no-constant-condition': 'off', // allow constant conditions
27
'no-empty': 'off', // allow empty blocks
28
'no-inner-declarations': 'off', // allow function declarations anywhere
0 commit comments