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,
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM