我正在尝试在这里设置一个 ES6 入门项目/模板/工作流,并且我正在尝试包含 Airbnb 的 ESLint/javascript 样式指南。我目前在项目中设置了 ESLint。
我在Windows 7,节点 v8.11.1,npm v4.1.2 上。
根据https://www.npmjs.com/package/eslint-config-airbnb-base上的说明
我已经通过以下方式安装了 install-peerdeps:
npm install -g install-peerdeps
它看起来像它的版本 1.6.0。
当我然后运行时:
install-peerdeps --dev eslint-config-airbnb-base
我收到以下错误:
'install-peerdeps' is not recognized as an internal or external
command, operable program or batch file.
我的 NODE_PATH 变量设置为:
%AppData%\npm\node_modules
如果我这样做,npm root -g
我会得到:
C:\Users\<username>\AppData\Roaming\npm\node_modules
任何人都知道如何让 install-peerdeps 工作?