You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The only fix I see is to to downgrade @eslint/compat to v1.1.1, the last version which did not have this peer dependency.
The problem only affects package managers that handle peer dependencies strictly like npm does without legacy-peer-deps. It's not an issue with pnpm for example.
Oh and there's one more option of course: drop eslint 8 support.
This package depends on
"@eslint/compat": "^1.2.3"
which specifies:which is incompatible with the module's peer dependencies:
eslint-plugin-github/package.json
Line 60 in abcfc3b
This results in a npm warning upon installation when
eslint@8
is present:The peer dependency was added in eslint/rewrite#106.
The text was updated successfully, but these errors were encountered: