我使用npm:npm install -g eslint
全局安装 eslint ,然后通过回答以下问题设置配置文件eslint --init
:
? How would you like to configure ESLint? Use a popular style guide
? Which style guide do you want to follow? Airbnb
? Do you use React? No
? What format do you want your config file to be in? JavaScript
我尝试在我的app.js文件上运行eslint eslint app.js
它不起作用
我尝试运行它:node_modules\.bin\eslint app.js
但是我可以在\ node_modules.bin下找到文件
5.6.0
8.10.0
答案 0 :(得分:1)
在尝试后看到您刚才提到的错误:
eslint --debug app.js
您需要全局安装eslint插件导入和eslint airbnb配置插件。
npm -g install eslint-plugin-import eslint-config-airbnb-base
您需要安装所述插件,因为在eslint --init
配置中您选择了Airbnb样式指南。