Skip to content

Instantly share code, notes, and snippets.

@hidepin
Last active September 22, 2019 12:12
Show Gist options
  • Save hidepin/6f9d6915a03eecc96010b6b00e5574bd to your computer and use it in GitHub Desktop.
Save hidepin/6f9d6915a03eecc96010b6b00e5574bd to your computer and use it in GitHub Desktop.
vscode

{
    "python.pythonPath": "venv/bin/python",
    "python.linting.pylintEnabled": false,
    "python.linting.flake8Enabled": true,
    "python.formatting.provider": "black",
    "editor.formatOnPaste": false,
    "python.linting.flake8Args": ["--max-line-length", "88"],
    "files.watcherExclude": {
        "**/.git/objects/**": true,
        "**/.git/subtree-cache/**": true,
        "**/venv/*/**": true
    }
}

https://code.visualstudio.com/docs/remote/containers-advanced

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment