禁止使用令人困惑的非空断言
禁止在可能造成混淆的位置使用非空断言。
🎨
在 "plugin:@typescript-eslint/stylistic"
中扩展 ESLint 配置 将启用此规则。
💡
此规则报告的一些问题可以通过编辑器 建议 手动修复。
在赋值或等于检查 (=
或 ==
或 ===
) 旁边使用非空断言 (!
) 会创建令人困惑的代码,因为它看起来类似于不等于检查 (!=
!==
)。
a! == b; // a non-null assertions(`!`) and an equals test(`==`)
a !== b; // not equals test(`!==`)
a! === b; // a non-null assertions(`!`) and an triple equals test(`===`)
此规则会标记令人困惑的 !
断言,并建议将其删除或将断言表达式括在 ()
括号中。
.eslintrc.cjs
module.exports = {
"rules": {
"@typescript-eslint/no-confusing-non-null-assertion": "error"
}
};
在游乐场中尝试此规则 ↗
示例
- ❌ 错误
- ✅ 正确
interface Foo {
bar?: string;
num?: number;
}
const foo: Foo = getFoo();
const isEqualsBar = foo.bar! == 'hello';
const isEqualsNum = 1 + foo.num! == 2;
在游乐场中打开interface Foo {
bar?: string;
num?: number;
}
const foo: Foo = getFoo();
const isEqualsBar = foo.bar == 'hello';
const isEqualsNum = (1 + foo.num!) == 2;
在游乐场中打开选项
此规则不可配置。
何时不使用它
如果您不关心这种混淆,那么您将不需要此规则。