0

我想摆脱我的 VSCode vetur 项目中的“vue/custom-event-name-casing”警告和错误。

.eslintrc.json我已经在项目根目录上创建了一个文件,内容如下:

{
    "rules": {
        "vue/custom-event-name-casing": false
    }
}

并设置以下配置config.json

{
    "vetur.validation.template": true
}

但我仍然收到如下错误:

[vue/custom-event-name-casing]
Custom event name 'editGiftPrice' must be kebab-case.eslint-plugin-vue

我怎样才能取消这个?

4

1 回答 1

1

.eslintrc.json您可以尝试将值设置为而"off"不是false

{
    "rules": {
        "vue/custom-event-name-casing": "off"
    }
}
于 2020-11-26T02:01:40.957 回答