如何在vscode中配置eslint扩展?
How to configure the eslint extension in vscode?
Configuration Options
eslint.enable
: enable/diable eslint. Is enabled by default.
eslint.options
: an option bag as defined by the ESLint API here. Defaults to an empty option bag.
我不知道在哪里配置 eslint 扩展?在命令中搜索 configure
没有任何结果。
您可以在 VSCode settings.json
文件中添加扩展级配置。通过命令面板打开它:
- 按F1
- 类型"user settings"
- 按输入
这样在eslint.options
中添加规则
// Place your settings in this file to overwrite the default settings
{
"eslint.options": {
"rules": {
"quotes": [2, "double"]
}
}
}
您可以通过命令面板打开 "workspace settings" 将其添加到工作区级配置。这将在您的项目中创建一个 ./vscode/settings.json
文件。
Configuration Options
eslint.enable
: enable/diable eslint. Is enabled by default.eslint.options
: an option bag as defined by the ESLint API here. Defaults to an empty option bag.
我不知道在哪里配置 eslint 扩展?在命令中搜索 configure
没有任何结果。
您可以在 VSCode settings.json
文件中添加扩展级配置。通过命令面板打开它:
- 按F1
- 类型"user settings"
- 按输入
eslint.options
中添加规则
// Place your settings in this file to overwrite the default settings
{
"eslint.options": {
"rules": {
"quotes": [2, "double"]
}
}
}
您可以通过命令面板打开 "workspace settings" 将其添加到工作区级配置。这将在您的项目中创建一个 ./vscode/settings.json
文件。