vscode+python+flake8+cmder配置
{
"window.zoomLevel": 0,
"[python]": {},
"kite.showWelcomeNotificationOnStartup": false,
"python.pythonPath": "E:\\miniconda\\envs\\envapp\\python.exe",
// "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",
"python.condaPath": "E:\\miniconda",
"python.venvPath": "E:\\miniconda\\envs",
"python.venvFolders": [
"envapp"
],
"terminal.integrated.shell.windows": "cmd.exe",
"terminal.integrated.env.windows": {
"CMDER_ROOT": "D:\\cmder_mini"
},
"terminal.integrated.shellArgs.windows": [
"/k",
"D:\\cmder_mini\\vendor\\init.bat"
],
"python.linting.enabled": true,
"python.formatting.provider": "yapf",
"python.linting.flake8Enabled": true,
"files.autoSave": "onFocusChange",
"editor.formatOnSave": true,
"pythonIndent.useTabOnHangingIndent": true,
}
以上是 vscode+python+flake8+cmder配置 的全部内容, 来源链接: utcz.com/z/388075.html