# san/no-dupe-keys
禁止字段名称重复
- ⚙️ 此规则包含于
"plugin:san/essential"
,"plugin:san/strongly-recommended"
和"plugin:san/recommended"
.
此规则防止使用重复名称。
# 📖 规则细节
此规则目的是防止在 san 实例的"this.data"
中出现重复的属性名称。
<script>
/* ✗ BAD */
export default {
computed: {
foo() {
return this.data.get('a')
}
},
initData() {
return {
foo: null
}
},
foo () {}
}
</script>
# 🔧 配置
暂无。