Skip to content

Commit

Permalink
Resolve peer dependency errors due to eslint upgrade
Browse files Browse the repository at this point in the history
Now that NPM 7 tries to install peer dependencies, having an old version
of these packages alongside a newer version of eslint will not work with
`npm install` as it used to.

These are the earliest versions that support the installed eslint
version.

Commands used¹:

    npm info eslint-config-airbnb@18 peerDependencies
    npm info eslint-plugin-jsx-a11y@6 peerDependencies
    npm info eslint-plugin-react-hooks@4 peerDependencies

    npm install \
        eslint-config-airbnb@18.2.0 \
        eslint-plugin-jsx-a11y@6.3.0 \
        eslint-plugin-react-hooks@4.0.1
  • Loading branch information
victorlin committed Nov 28, 2022
1 parent dffb3bf commit ab6fc64
Show file tree
Hide file tree
Showing 2 changed files with 277 additions and 190 deletions.
Loading

0 comments on commit ab6fc64

Please sign in to comment.