How to disable eslint ? because error of "Component name "Content" should always be multi-word vue/multi-word-component-name" this is annoying for me. Just delete eslint on package.json or ? btw i use phpstrom and i have turned off eslint in php strom, but eslint still appears in the browser
Modifying the ESLint configuration to turn off the vue/multi-word-component-name rule is the best approach, as it allows you to keep ESLint for other important rules while addressing the specific issue that is bothering you and candy clicker
Hi Gusti,
Thank you for contacting our support.
I listed below ways on how you can disable eslint in your project.
// eslint-disable-next-line
/* eslint-disable */
/src/components
**/*
module.exports = {
rules: {
"no-console": "off",
},
}
vue/multi-word-component-names
.