跳至内容

oxc/no-optional-chaining 限制

作用

禁止 可选链

示例

javascript
const foo = obj?.foo;
obj.fn?.();

选项

json
{
  "rules": {
    "no-optional-chaining": [
        "error",
        {
            "message": "Our output target is ES2016, and optional chaining results in verbose
            helpers and should be avoided.",
        }
    ]
  }
}
  • message:检测到可选链时显示的自定义帮助消息。

参考文献

在 MIT 许可下发布。