禁止对非空断言使用空值合并运算符
禁止在空值合并运算符的左操作数中使用非空断言。
🔒
在 "plugin:@typescript-eslint/strict"
的 ESLint 配置文件 中扩展此规则。
💡
此规则报告的一些问题可以通过编辑器 建议 手动修复。
??
空值合并运行时运算符允许在处理 null
或 undefined
时提供默认值。在空值合并运算符的左操作数中使用 !
非空断言类型运算符是多余的,并且可能是程序员错误或对这两个运算符的混淆的迹象。
.eslintrc.cjs
module.exports = {
"rules": {
"@typescript-eslint/no-non-null-asserted-nullish-coalescing": "error"
}
};
在 playground 中试用此规则 ↗
示例
- ❌ 错误
- ✅ 正确
foo! ?? bar;
foo.bazz! ?? bar;
foo!.bazz! ?? bar;
foo()! ?? bar;
let x!: string;
x! ?? '';
let x: string;
x = foo();
x! ?? '';
在 Playground 中打开foo ?? bar;
foo ?? bar!;
foo!.bazz ?? bar;
foo!.bazz ?? bar!;
foo() ?? bar;
// This is considered correct code because there's no way for the user to satisfy it.
let x: string;
x! ?? '';
在 Playground 中打开选项
此规则不可配置。
何时不使用它
如果您的项目的类型尚未完全描述某些值是否可以为空,例如,如果您正在过渡到 strictNullChecks
,则此规则可能会产生许多错误报告。您可能考虑使用 ESLint 禁用注释 来处理这些特定情况,而不是完全禁用此规则。