VsCode Python 配置

{
    "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.linting.pylintEnabled": false,
    "python.formatting.provider": "yapf",
    "python.linting.flake8Enabled": true,
    "python.linting.flake8Args": [
        "--max-line-length=120",
    ],
}

你可能感兴趣的:(VsCode Python 配置)