Disable new no-unsafe-argument ESLint rule for tests

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2021-10-13 19:54:38 +02:00
parent 9dc0cf8c9a
commit dc68ecf0e6
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

@ -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',