如何在 VSCode vetur Vue 项目中禁用 "vue/custom-event-name-casing" 错误?
How disable "vue/custom-event-name-casing" errors in VSCode vetur Vue project?
我想摆脱我的 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
如何禁用它?
在 .eslintrc.json
中,您可以尝试将值设置为 "off"
而不是 false
{
"rules": {
"vue/custom-event-name-casing": "off"
}
}
我想摆脱我的 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
如何禁用它?
在 .eslintrc.json
中,您可以尝试将值设置为 "off"
而不是 false
{
"rules": {
"vue/custom-event-name-casing": "off"
}
}