Skip to content

Commit

Permalink
feat(eslint): remove no-await-in-loop (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmckeb committed Mar 4, 2024
1 parent 9b1b2b0 commit 2b0ce9d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion eslint/browser.js
@@ -1,5 +1,5 @@
module.exports = {
extends: require.resolve('./_base'),
extends: './_base',
env: {
browser: true,
},
Expand Down
6 changes: 0 additions & 6 deletions eslint/rules/possible-errors.js
@@ -1,11 +1,5 @@
module.exports = {
rules: {
/**
* Disallow await inside of loops.
*
* 🚫 Not fixable - https://eslint.org/docs/rules/no-await-in-loop
*/
'no-await-in-loop': 'error',
/**
* Disallow the use of console.
*
Expand Down

0 comments on commit 2b0ce9d

Please sign in to comment.