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,
    }
  • 相关阅读:
    CentOS7搭建SFTP服务
    MySQL主从异常恢复
    MySQL主从复制配置
    Docker安装MySQL8.0
    CentOS7安装JDK1.8
    RabbitMQ死信队列
    RabbitMQ重试机制
    RabbitMQ消息可靠性传输
    TCP/IP的Socket编程
    c#网络编程使用tcpListener和tcpClient
  • 原文地址:https://www.cnblogs.com/zxpo/p/11847501.html
Copyright © 2011-2022 走看看