I am using eslint
in my project and I'd like to use airbnb
style. The problem I have is I need to install eslint-config-airbnb
dependency which depends on eslint-plugin-jsx-a11y
and some react
plugin. My project is not a react project and I wonder how I can use airbnb
eslint without bring react dependencies.
Below is the configuration in my eslint
to use airbnb
style:
extends: [airbnb, eslint:recommended]