如何自己配置eslint 与 Vscode 自动修复

安装

npm install eslint

如何初始化

初始化eslint 运行 ./node_modules/.bin/eslint --init

接下来会弹出选项

how would you like to configure Eslint | 您希望如何配置 eslint
选择 use popular style guide

which style guide do you want to follow | 您要遵循哪种风格指南
可以选择 airbnb , 相对严格

do you use React ? | 你是否使用 react?
不需要的话就填n

接下来就是安装依赖

VScode 安装 eslint 插件

插件商店搜索 Eslint 插件, 重启编辑器, 如果代码中有出现报红, 说明已经配置成功

如何自己配置eslint 与 Vscode 自动修复

如何开启vscode 自动修复

打开vscode 配置项, 搜索 autofix , 勾选 auto Fix On Save
如何自己配置eslint 与 Vscode 自动修复

嘿嘿 每次按 ctrl + s 都会自动修复代码了

相关推荐