Skip to content

Commit 67563ef

Browse files
committed
Removed disabling of no-async-promise-executor
1 parent 1061bf2 commit 67563ef

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

eslint.config.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export default [
2222
'js-styles/no-extra-semi': 'error', // disallow unnecessary semicolons
2323
'quotes': ['error', 'single', { 'allowTemplateLiterals': true }], // enforce single quotes except backticks to avoid escaping quotes
2424
'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)
2625
'no-constant-condition': 'off', // allow constant conditions
2726
'no-empty': 'off', // allow empty blocks
2827
'no-inner-declarations': 'off', // allow function declarations anywhere

0 commit comments

Comments
 (0)