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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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