我刚刚安装了VSCode(1.30.2版),并将其设置为与Python一起使用。我要启用调试。默认的launch.json
包含以下条目:
{
"name": "Python: Current File (Integrated Terminal)",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
我已经对其进行了修改,使其也包含debugOptions
:
{
"name": "Python: Debug",
"type": "python",
"request": "launch",
"program": "${file}",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
]
}
但是,VSCode向我警告debugOptions
,并显示以下警告:
Property debugOptions is not allowed.
我见过这个question,但答案似乎并没有真正改变警告。此外,我似乎不需要答案指示的行。
调试可以使用我拥有的配置进行,但是我想删除VSCode显示在“ debugOptions”上的警告。我该怎么办?