Mac WebStorm错误:无法找到模块'eslint-config-airbnb'

Fla*_*ame 10 javascript node.js webstorm eslint eslint-config-airbnb

我正在使用ReactNative项目并且更喜欢使用airbnb.我有npm安装airbnb global:

  1. npm install -g airbnb (以及依赖)
  2. 取得.eslintrc与配置文件"扩展":eslint-config-airbnb
  3. WebStorm启用了ESLint并在上面使用 .eslintrc

得到以下错误:

错误:找不到模块'eslint-config-airbnb'

其他信息:

  • 苹果系统
  • WebStorm 2017.1.2

Gya*_*eep 12

插件和eslint需要安装在同一个位置,即如果eslint是全局的,则插件需要是全局的,如果是本地的则需要是本地的.

有了这个Webstorm使用本地版本的eslint而不是全局(这至少是如何在Windows上工作).因此,请确保使用本地安装eslint和插件npm install.

我希望这有帮助.