I have eslint (of Airbnb coding style) setup for my React project, which has dependency of "eslint-plugin-jsx-a11y", which I do not want for my current project.
My question how to remove this specific plugin "eslint-plugin-jsx-a11y".
When I uninstall "eslint-plugin-jsx-a11y" it gives error following error:
"Failed to load plugin jsx-a11y: Cannot find module 'eslint-plugin-jsx-a11y'"
Is there any way to solve above issue ?
eslint-config-airbnb-base
which will give you the base eslint airbnb package and then installeslint-plugin-react
. This way you don't have to installeslint-plugin-jsx-a11y
. Hope that helps!! – Np