From 1fe0c4fed350a88353ded1ed7ad36af28d9c7099 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Wed, 13 Oct 2021 19:54:38 +0200 Subject: [PATCH] Disable new no-unsafe-argument ESLint rule for tests Signed-off-by: David Mehren --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index b268f3de2..d30b165f3 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -15,6 +15,7 @@ module.exports = { rules: { '@typescript-eslint/unbound-method': 'off', '@typescript-eslint/no-unsafe-assignment': 'off', + '@typescript-eslint/no-unsafe-argument': 'off', '@typescript-eslint/no-unsafe-member-access': 'off', '@typescript-eslint/require-await': 'off', 'jest/unbound-method': 'error',