-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Fix peer dependency #747
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
You can try to delete folder node modules. And install again " npm i" |
we do not have a dependency on the package, we have a peer dependency on the package. This is on purpose. You are expected to install and manage your own installation of eslint, because we are a plugin of eslint. If every eslint plugin had a hard dependency on eslint at a different version, your node_modules folder would get polluted with extra conflicting installs of eslint. More reading: https://nodejs.org/es/blog/npm/peer-dependencies/ |
ok thx |
@bradzacher does typescript-eslint not support version 6+ of eslint? Just wondering if the peer dependency should be |
@typescript-eslint/eslint-plugin@1.13.0 requires a peer of eslint@^5.0.0 but none is installed. You must install peer dependencies yourself.
The text was updated successfully, but these errors were encountered: