I would like to get rid of "vue/custom-event-name-casing" warning and errors on my VSCode vetur project.
I alread created a .eslintrc.json
file on the project root with the following content:
{
"rules": {
"vue/custom-event-name-casing": false
}
}
And set the following config on config.json
:
{
"vetur.validation.template": true
}
but i'm still getting errors like:
[vue/custom-event-name-casing]
Custom event name 'editGiftPrice' must be kebab-case.eslint-plugin-vue
How can I desable this?
In
.eslintrc.json
can you try set value to"off"
instead offalse