[HELP] How to Disabled Eslint
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
Replies (2)
If you want to disable ESLint or stop it from enforcing specific rules like the "vue/multi-word-component-name" error, you don’t need to delete ESLint entirely. Instead, you can modify the ESLint configuration file to turn off that particular rule. If the issue persists even after turning off ESLint in your IDE, it’s likely because the linter is still active during the build process. Adjusting the configuration or ensuring that your development tools don’t enforce linting during runtime should resolve the issue.