2018-02-25 VS code python配置

{
    "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配置)