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

猜你喜欢

转载自www.cnblogs.com/zxpo/p/11847501.html