adding
"@typescript-eslint/strict-boolean-expressions": [
2,
{
"ignoreRhs": true,
"allow-boolean-or-undefined": true
}
],
to my eslintrc.json gives me the following error Error: .eslintrc.json: Configuration for rule "@typescript-eslint/strict-boolean-expressions" is invalid: Value {"ignoreRhs":true,"allow-boolean-or-undefined":true} should NOT have additional properties.
What is the right way to mention options for this rule?