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

相关文章:

  • 2021-08-19
  • 2022-12-23
  • 2021-08-18
  • 2021-07-15
  • 2021-10-19
  • 2021-12-09
  • 2021-11-27
  • 2022-02-19
猜你喜欢
  • 2021-12-15
  • 2022-12-23
  • 2021-10-12
  • 2021-09-02
  • 2021-07-24
  • 2021-10-30
  • 2021-06-13
相关资源
相似解决方案