Remove null-assertion warnings for tests

This commit is contained in:
Franck Royer 2021-05-03 15:52:58 +10:00
parent 9e30627e2b
commit 656227d431
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 9 additions and 1 deletions

View File

@ -31,5 +31,13 @@
"error",
{ "ignoreDeclarationSort": true, "ignoreCase": true }
]
}
},
"overrides": [
{
"files": ["*.spec.ts", "**/test_utils/*.ts"],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off"
}
}
]
}