vscode Python 运行环境配置

{
"git.ignoreMissingGitWarning": true,
"window.zoomLevel": 1,
"[python]": {},
# 关闭linting提示。
"python.linting.pylintEnabled": false,
# 开启yapf
"python.formatting.provider": "yapf",
# 开启flake8python自动补全工具
"python.linting.flake8Enabled": true,
 
"workbench.colorTheme": "Monokai",
"workbench.iconTheme": "vscode-icons",
"python.autoComplete.addBrackets": true,
 
# 关闭flake8的检测功能。
"python.linting.flake8Args": [
"--select=errors"
],
"files.autoGuessEncoding": true,
 
# code run每次运行代码,清除显示
"code-runner.clearPreviousOutput": true,
# 在终端运行设置。
"code-runner.runInTerminal": true,
}
原文地址:https://www.cnblogs.com/wuzaipei/p/9576900.html