zoukankan      html  css  js  c++  java
  • 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,
    }
  • 相关阅读:
    前缀和问题
    AtCoder Beginner Contest 085(ABCD)
    73.链表的基本操作
    112、文本串的加密
    100.容器List-ArrayList
    GUI颜色、字体设置对话框
    (贪心)多机调度问题
    POJ-1700 Crossing River
    lower_bound() upper_bound()函数
    HDU 1141
  • 原文地址:https://www.cnblogs.com/zxpo/p/11847501.html
Copyright © 2011-2022 走看看