Turn off no-await-in-loop everywhere.

This commit is contained in:
Bauke 2022-10-14 18:13:45 +02:00
parent 2ca4aeefb7
commit 4cbe31c63a
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 3 additions and 3 deletions

View File

@ -70,8 +70,7 @@
{ {
"files": "tests/**/*.test.ts", "files": "tests/**/*.test.ts",
"rules": { "rules": {
"@typescript-eslint/triple-slash-reference": "off", "@typescript-eslint/triple-slash-reference": "off"
"no-await-in-loop": "off"
} }
} }
], ],
@ -79,7 +78,8 @@
"rules": { "rules": {
"@typescript-eslint/consistent-type-definitions": "off", "@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/consistent-type-imports": "off", "@typescript-eslint/consistent-type-imports": "off",
"n/file-extension-in-import": "off" "n/file-extension-in-import": "off",
"no-await-in-loop": "off"
}, },
"space": true "space": true
} }