在没有反应插件的情况下使用 eslint-config-airbnb
Use eslint-config-airbnb without react plugins
我想在不安装任何react插件的情况下使用airbnb的eslinter。这可能吗?
基本上,我只想使用这个:eslint-config-airbnb。
但它似乎与一些 React 特定的东西捆绑在一起,因为它需要:
It requires eslint, eslint-plugin-import, eslint-plugin-react, and eslint-plugin-jsx-a11y.
如果我不单独安装那些其他插件,我的 Atom 编辑器会抱怨:
Error: Failed to load plugin react: Cannot find module 'eslint-plugin-react' Referenced from: airbnb Referenced from: /../../.eslintrc
那么,如果没有那些 React 插件,我该如何使用 eslint-config-airbnb? (因为我不会使用 React)。
如果您不关心反应规则,最好的办法是使用 eslint-config-airbnb-base。
我想在不安装任何react插件的情况下使用airbnb的eslinter。这可能吗?
基本上,我只想使用这个:eslint-config-airbnb。 但它似乎与一些 React 特定的东西捆绑在一起,因为它需要:
It requires eslint, eslint-plugin-import, eslint-plugin-react, and eslint-plugin-jsx-a11y.
如果我不单独安装那些其他插件,我的 Atom 编辑器会抱怨:
Error: Failed to load plugin react: Cannot find module 'eslint-plugin-react' Referenced from: airbnb Referenced from: /../../.eslintrc
那么,如果没有那些 React 插件,我该如何使用 eslint-config-airbnb? (因为我不会使用 React)。
如果您不关心反应规则,最好的办法是使用 eslint-config-airbnb-base。