跳至內容

oxc/no-rest-spread-properties 限制

作用

禁用 物件剩餘/展開屬性

範例

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:當發現物件展開屬性時顯示的訊息。
  • objectRestMessage:當發現物件剩餘屬性時顯示的訊息。

參考資料

在 MIT 許可證下發布。