跳至内容

oxc/no-rest-spread-properties 限制

功能特点

不允许 对象 Rest/Spread 属性

示例

javascript
let { x, ...y } = z;
let z = { x, ...y };

选项

json
{
  "rules": {
    "no-rest-spread-properties": [
      "error",
      {
        "objectSpreadMessage": "Object spread properties are not allowed.",
        "objectRestMessage": "Object rest properties are not allowed."
      }
    ]
  }
}
  • objectSpreadMessage: 找到对象 spread 属性时显示的消息。
  • objectRestMessage: 找到对象 rest 属性时显示的消息。

参考

以 MIT 许可证发布。