0

I have an issue while connecting ESLint airbnb configuration to my React App. I have already tried to remove package-lock.json, node_modules and run a command

npm install

WebStorm says

ESLint: Error: .eslintrc.json >> eslint-config-airbnb-base >> MyApplicationPath\node_modules\eslint-config-airbnb-base\rules\imports.js

My package.json has only 1 devDependency

"devDependencies": {
    "eslint-config-airbnb": "^18.2.1"
  }
TylerH
  • 20,799
  • 66
  • 75
  • 101

1 Answers1

1

Have you installed the peerDependencies? eslint and eslint-plugin-import

eslint-config-airbnb-base

hendrixchord
  • 4,662
  • 4
  • 25
  • 39