美文网首页
2018-02-25 VS code python配置

2018-02-25 VS code python配置

作者: liyanze | 来源:发表于2018-02-28 16:59 被阅读0次
    {
        "terminal.integrated.shell.windows": "D:\\Program Files\\Git\\bin\\bash.exe",
        "git.path": "D:\\Program Files\\Git\\cmd\\git.exe",
        "editor.wordWrap": "wordWrapColumn",
        "editor.wordWrapColumn": 120,
        "files.autoSave": "onWindowChange",
        "editor.fontSize": 20,
        "git.autofetch": true,
        "files.exclude": {
            "**/.git": true,
            "**/.svn": true,
            "**/.hg": true,
            "**/CVS": true,
            "**/.DS_Store": true,
            "**/*.pyc": true,
        },
        "editor.formatOnSave": true,
        "python.formatting.provider": "autopep8",
        "python.linting.enabled": true,
        "python.linting.pylintArgs": [
            "--load-plugins",
            "pylint_django",
            "--max-line-length=120"
        ],
        "window.menuBarVisibility": "default",
        "pasteImage.path": "${workspaceRoot}/assets",
    }
    

    相关文章

      网友评论

          本文标题:2018-02-25 VS code python配置

          本文链接:https://www.haomeiwen.com/subject/mnhrxftx.html