Getting the: warning: React version specified in eslint-plugin-react-settings must be a valid semver version, or “detect”; got “latest”’ while running eslint. What is the reason behind this and how to resolve it? Screenshot of the issue Answer There will be an Object defined in your .eslintr…
Tag: eslint-config-airbnb
How to remove ESlint error no-unresolved from importing ‘react’
no-unresolved https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-unresolved.md After installing eslint-import-resolver-webpack My .eslintrc config My package.json Webpack Answer You can add an option to ignore case: This thread at github also describes how the linter was checking case…