0

尝试在 Ubuntu 16.04 上安装 eslint-config-airbnb 时遇到了一些问题

$ npm install eslint-config-airbnb
npm WARN optional Skipping failed optional dependency /chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: fsevents@1.1.2

我尝试安装 fsevents,这会产生此错误:

npm ERR! notsup Not compatible with your operating system or architecture: fsevents@1.1.2
npm ERR! notsup Valid OS:    darwin
npm ERR! notsup Valid Arch:  any
npm ERR! notsup Actual OS:   linux
npm ERR! notsup Actual Arch: x64

linux 支持 eslint-config-airbnb 吗?

4

2 回答 2

0

试试这个->

rm -rf node_modules/ && npm install && npm rebuild

编辑: 递归地从文件夹rm -rf node_modules/中删除东西。将再次安装所有软件包并尝试重建您的项目。node_modulesnpm installnpm rebuild

于 2017-08-24T21:26:17.020 回答
0

我在全球范围内安装了它,出于某种原因,它奏效了。

于 2017-08-24T21:37:12.903 回答