Visual Studio 代码 .json 文件 "expected comma" 错误
Visual Studio Code .json file "expected comma" error
我正在尝试更改 VS 代码中的一些设置,但一直收到预期的逗号错误。我在其中一行中遇到了这个错误,所以我复制它并将其移到底部,然后它就给我一个错误,只是将它移到下一行。
我试过查找这个,但所有答案似乎都非常小众,vs 代码告诉我没有办法解决它,即使他们告诉我有错误
{
"python.pythonPath": "/usr/local/bin/python3",
"workbench.editorAssociations": [
{
"viewType": "jupyter.notebook.ipynb",
"filenamePattern": "*.ipynb"
}
],
"files.autoSave": "afterDelay",
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 17,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.fontLigatures": true,
"workbench.sideBar.location": "right",
"window.title": "${activeEditorShort}${separator}${rootName}${rootPath}",
"tabnine.experimentalAutoImports": true,
"kite.showWelcomeNotificationOnStartup": false,
"AREPL.pythonPath": "python3",
"code-runner.runInTerminal": true,
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"workbench.colorTheme": "Cobalt2"
"files.trimTrailingWhitespace": true,
"editor.fontWeight": "400",
"prettier.eslintIntegration": true,
"editor.cursorStyle": "line",
"editor.cursorWidth": 5,
"editor.cursorBlinking": "solid",
"editor.renderWhitespace": "all",
"editor.lineHeight": 25,
"editor.letterSpacing": 0.5,
"editor.semanticHighlighting.enabled": false
}
不知道为什么结尾的“}”出现在底部,但它在我的代码中。
第 22 行末尾缺少逗号 "workbench.colorTheme": "Cobalt2"
我正在尝试更改 VS 代码中的一些设置,但一直收到预期的逗号错误。我在其中一行中遇到了这个错误,所以我复制它并将其移到底部,然后它就给我一个错误,只是将它移到下一行。
我试过查找这个,但所有答案似乎都非常小众,vs 代码告诉我没有办法解决它,即使他们告诉我有错误
{
"python.pythonPath": "/usr/local/bin/python3",
"workbench.editorAssociations": [
{
"viewType": "jupyter.notebook.ipynb",
"filenamePattern": "*.ipynb"
}
],
"files.autoSave": "afterDelay",
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 17,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.fontLigatures": true,
"workbench.sideBar.location": "right",
"window.title": "${activeEditorShort}${separator}${rootName}${rootPath}",
"tabnine.experimentalAutoImports": true,
"kite.showWelcomeNotificationOnStartup": false,
"AREPL.pythonPath": "python3",
"code-runner.runInTerminal": true,
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"workbench.colorTheme": "Cobalt2"
"files.trimTrailingWhitespace": true,
"editor.fontWeight": "400",
"prettier.eslintIntegration": true,
"editor.cursorStyle": "line",
"editor.cursorWidth": 5,
"editor.cursorBlinking": "solid",
"editor.renderWhitespace": "all",
"editor.lineHeight": 25,
"editor.letterSpacing": 0.5,
"editor.semanticHighlighting.enabled": false
}
不知道为什么结尾的“}”出现在底部,但它在我的代码中。
第 22 行末尾缺少逗号 "workbench.colorTheme": "Cobalt2"