Skip to content

Commit

Permalink
Removed disabling of no-async-promise-executor ↞ [auto-sync from ht…
Browse files Browse the repository at this point in the history
  • Loading branch information
kudo-sync-bot committed Jan 28, 2025
1 parent ab64481 commit 7f3b0c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chatgpt-widescreen/eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ export default [
'ignoreComments': true, 'ignoreStrings': true, // ...trailing/own-line comments, quoted strings...
'ignoreTemplateLiterals': true, 'ignoreRegExpLiterals': true }], // ...or template/regex literals
'js-styles/no-extra-semi': 'error', // disallow unnecessary semicolons
'quotes': ['error', 'single', { 'allowTemplateLiterals': true }], // enforce single quotes except backticks to avoid escaping quotes
'quotes': ['error', 'single', // enforce single quotes...
{ 'allowTemplateLiterals': true }], // ...except backticks to avoid escaping quotes
'comma-dangle': ['error', 'never'], // enforce no trailing commas in arrays or objects
'no-async-promise-executor': 'off', // allow promise executor functions to be async (to accomodate await lines)
'no-constant-condition': 'off', // allow constant conditions
'no-empty': 'off', // allow empty blocks
'no-inner-declarations': 'off', // allow function declarations anywhere
Expand Down

0 comments on commit 7f3b0c6

Please sign in to comment.