在ubuntu 16.04上的eslint-config-airbnb

时间:2017-08-24 21:23:31

标签: javascript eslint eslint-config-airbnb

尝试在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?

2 个答案:

答案 0 :(得分:0)

试试这个 - >

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

编辑: rm -rf node_modules/以递归方式从node_modules文件夹中删除内容。 npm install将再次安装所有软件包,并npm rebuild尝试重建您的项目。

答案 1 :(得分:0)

我在全球范围内安装了它,出于某种原因,这种方法很有用。