我想摆脱我的 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
我怎样才能取消这个?