美文网首页
VsCode Python 配置

VsCode Python 配置

作者: liyanze | 来源:发表于2018-03-20 11:50 被阅读0次
{
    "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 配置

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