背景
在我们配置vscode自动依据eslint格式化代码的时候,报错Auto Fix is enabled by default. Use the single string form
,意思是:默认情况下启用自动修复。 使用单字符串形式
解决办法
解决方案如提示所示,删除"autoFix": true,
,用单字符串形式配置需要校验的文件类型即可
{ "search.followSymlinks": false, "editor.tabSize": 2, //配置eslint"eslint.validate": [ "javascript", // 用eslint的规则检测js文件"javascriptreact", "vue", "html", ], // 启用保存时自动修复eslint,默认只支持.js文件"editor.codeActionsOnSave": { "source.fixAll.eslint": true } }