diff --git a/vue.js b/vue.js index 2e90c39..8596665 100644 --- a/vue.js +++ b/vue.js @@ -74,10 +74,6 @@ module.exports = { * 禁止重复的键名 */ "vue/no-dupe-keys": "error", - /** - * 禁止在一个v-if / v-else-if 链中使用相同的判断条件 - */ - "vue/no-dupe-v-else-if": "error", /** * 禁止出现重复的属性 */ @@ -92,10 +88,6 @@ module.exports = { * 允许在生命周期钩子中使用异步函数 */ "vue/no-lifecycle-after-await": "off", - /** - * 禁止直接修改props - */ - "vue/no-mutating-props": "error", /** * 禁止出现语法错误 */ @@ -188,10 +180,6 @@ module.exports = { * v-if 指令必须合法 */ "vue/valid-v-if": "error", - /** - * v-is指令必须合法 - */ - "vue/valid-v-is": "error", /** * v-model 指令必须合法 */