美文网首页
vscode python setting

vscode python setting

作者: azim | 来源:发表于2018-08-26 10:28 被阅读0次
{
    "python.pythonPath": "/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python",
    "python.formatting.provider": "autopep8",
    "python.linting.flake8Enabled": true,
    "python.autoComplete.extraPaths": [
        "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages",
        "/Library/Python/2.7/site-packages"
    ],
    "editor.formatOnSave": true,
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/*.pyc": true,
        "**/.DS_Store": true
    },
    "python.linting.flake8Args": [
        "--disable=E501"
    ],
    "code-runner.runInTerminal": true,
    "python.autoComplete.addBrackets": true
}

相关文章

网友评论

      本文标题:vscode python setting

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