Turn off no-await-in-loop everywhere.
This commit is contained in:
parent
2ca4aeefb7
commit
4cbe31c63a
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue