Vue ESlint error with external libraries
Posted on July 2, 2020
If you got this error when running a Vue project with the Vue-CLI:
No ESLint configuration found.
it's because the library you're using lacks the necessary ESLint config.
To skip that error, put in vue.config.js file the following command:
module.exports = {
    chainWebpack: config => config.resolve.symlinks(false)
}
Found here
