1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-30 02:21:17 +03:00

Disable no-non-null assertions lint rule (#8699)

This *allows* us to use `variable!.prop` to ensure `variable` is not null/undefined.
This commit is contained in:
Travis Ralston
2022-05-30 00:21:55 -06:00
committed by GitHub
parent 2649c6fd75
commit 150c530850

View File

@ -115,6 +115,8 @@ module.exports = {
"@typescript-eslint/no-explicit-any": "off",
// We'd rather not do this but we do
"@typescript-eslint/ban-ts-comment": "off",
// We're okay with assertion errors when we ask for them
"@typescript-eslint/no-non-null-assertion": "off",
},
},
// temporary override for offending icon require files