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 aede599 commit 61270aeCopy full SHA for 61270ae
bravegpt/eslint.config.mjs
@@ -33,7 +33,6 @@ export default [
33
'quotes': ['error', 'single', // enforce single quotes...
34
{ 'allowTemplateLiterals': true }], // ...except backticks to avoid escaping quotes
35
'comma-dangle': ['error', 'never'], // enforce no trailing commas in arrays or objects
36
- 'no-async-promise-executor': 'off', // allow promise executor functions to be async (to accomodate await lines)
37
'no-constant-condition': 'off', // allow constant conditions
38
'no-empty': 'off', // allow empty blocks
39
'no-inner-declarations': 'off', // allow function declarations anywhere
0 commit comments