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