-
-
Notifications
You must be signed in to change notification settings - Fork 681
Cannot find module 'eslint/lib/formatters/stylish' when using ESLint ^6.0 #916
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Yep, can confirm, issue happens with ESLint ^6.0, reverting back to version 5 resolves the issue. - "eslint": "^6.0.1"
+ "eslint": "^5.16.0" |
Thank you for your report. However, this is not related to this plugin. The error came from eslint-loader. |
I upgraded my Nuxt project with |
In the eslint-loader README file you can see they mention how to override the path... formatter (default: eslint stylish formatter) module.exports = {
} |
In the latest build of eslint 6.0.1 they moved the file path to below (so just override the path in your webpack) // default value |
I see "@vue/cli-plugin-eslint" just released v3.9.1 which resolved this issue for me by updating to that version. vuejs/vue-cli@ea91df2 |
Installing the last version of eslint-loader solved me the issue |
I am using "latest" on many deps in my package.json and today I started getting this error
during yarn install:
this package.json was working fine before today:
and as of today it isn't working anymore
I know using next/latest is not the best idea but this is only for development purposes
This works:
this does not:
Here is the printout of
yarn list --depth=0 | grep eslint
on the configuration that does not workThe text was updated successfully, but these errors were encountered: