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?
Advertisement
Answer
There will be an Object defined in your .eslintrc file as settings. And this error is saying that the version of react defined in it is not the version installed in your machine. Please replace settings object with following code so that es lint can detect it automatically on runtime.
"settings": { "react": { "version": "detect" } }