vscode如何根据.eslintrc.js文件进行格式化
时间: 2023-09-11 15:10:55 浏览: 104
vscode配置setting.json文件实现eslint自动格式代码
在 VS Code 中,可以使用以下步骤根据 .eslintrc.js 文件进行格式化:
1. 确保已安装 ESLint 插件。
2. 打开 VS Code 设置,搜索 "eslint"。
3. 找到 "Eslint: Options" 选项,并确保其设置为 "Use Eslint"。
4. 找到 "Editor: Format On Save" 选项,并将其设置为 "true"。
5. 在项目根目录中创建 .vscode/settings.json 文件。
6. 在 settings.json 文件中添加以下配置:
```
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
```
7. 保存文件并重新启动 VS Code。
现在,每当你保存 .js 文件时,VS Code 将根据 .eslintrc.js 文件自动进行格式化。
阅读全文