# mpx/no-dupe-keys

不允许重复字段名

  • ⚙️ 这条规则包含在"plugin:mpx/mpx-essential"

# 📖 规则详情

此规则禁止使用重复的名称。

<script> /* ✗ BAD */ createComponent({ properties: { foo: String }, computed: { foo: { get () {} } }, data: { foo: null }, methods: { foo () {} } }) </script>
Now loading...

# 🔧 选项

{
  "mpx/no-dupe-keys": ["error", {
    "groups": []
  }]
}
  • "groups" (string[]) 用于搜索重复项的其他组的数组。默认值为空。

# "groups": ["firebase"]

<script> /* ✗ BAD */ createComponent({ computed: { foo () {} }, firebase: { foo () {} } }) </script>
Now loading...

# 🔍 具体实现