我使用 CTRL + S 命令时遇到问题,它会创建空行,并且不会像 React 代码预期的那样保存内容。看来我应该编辑我的 settings.json 文件
提示无法写入用户设置。请打开用户设置以更正其中的错误/警告,然后重试。
用户设置如下
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll.eslint": true,
"source.fixAll": true
},
"window.zoomLevel": 1,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.autoSave": "afterDelay",
"eslint.codeActionsOnSave.mode": "all",
"debug.javascript.autoAttachFilter": "always",
"cSpell.userWords": [
"addcomment",
"loggedin"
],
"javascript.format.insertSpaceAfterSemicolonInForStatements": false,
"editor.rulers": [
"editor.formatOnPaste": false,
"editor.formatOnSAve": false
]
我应该改变什么?
答案1
config.json 文件必须包含一个对象 - 您的文件包含多个对象。尝试将整个内容包装在 中{}
。