Skip to content
This repository was archived by the owner on Feb 11, 2025. It is now read-only.

Commit 2b0ce9d

Browse files
authoredMar 4, 2024··
feat(eslint): remove no-await-in-loop (#95)
1 parent 9b1b2b0 commit 2b0ce9d

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed
 

‎eslint/browser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
2-
extends: require.resolve('./_base'),
2+
extends: './_base',
33
env: {
44
browser: true,
55
},

‎eslint/rules/possible-errors.js

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
module.exports = {
22
rules: {
3-
/**
4-
* Disallow await inside of loops.
5-
*
6-
* 🚫 Not fixable - https://eslint.org/docs/rules/no-await-in-loop
7-
*/
8-
'no-await-in-loop': 'error',
93
/**
104
* Disallow the use of console.
115
*

0 commit comments

Comments
 (0)
This repository has been archived.