我试图使用ESLint + Airbnb,我收到错误消息:
无法加载插件反应:无法找到模块' eslint-plugin-react'
但我没有使用eslint-plugin-react
查看我的.eslintrc.js
module.exports = {
extends: 'airbnb-base',
rules: {
'no-console': 0,
'linebreak-style': [2, 'windows'],
'no-new': 0,
'eslint eol-last': ['error', 'never'],
},
};
但不幸的是,我之前收到了错误消息。我不知道错误。我没有使用eslint-plugin-react
。告诉我为什么这个插件需要
答案 0 :(得分:0)
根据their thread on git,将{ "extends": "airbnb/base" }
添加到您的配置中。
编辑:以上内容已弃用。同一个主题建议使用此包:https://www.npmjs.com/package/eslint-config-airbnb-base
答案 1 :(得分:0)