vscode环境配置

    "go.goroot": "/home/ken/go",
    "go.gopath": "/home/ken/gopath",
    "go.formatTool": "goimports",
    "go.docsTool": "gogetdoc",
    "go.gotoSymbol.includeImports": true,
    "go.useCodeSnippetsOnFunctionSuggestWithoutType": true,
    "go.useCodeSnippetsOnFunctionSuggest": true,
    "go.autocompleteUnimportedPackages": true,
    "python.pythonPath": "${workspaceRoot}/venv/bin/python",
    "python.linting.enabled": true,
    "python.linting.pylintEnabled": false,
    "python.linting.pep8Enabled": false,
    "python.linting.lintOnSave": true,
    "python.formatting.provider": "autopep8",
    "python.formatting.autopep8Args": [
        "--max-line-length",
        "120",
        "--experimental"
    ],

猜你喜欢

转载自www.cnblogs.com/liujitao79/p/9429244.html