Skip to content

Instantly share code, notes, and snippets.

@kenvontucky
Last active July 25, 2018 09:25
Show Gist options
  • Save kenvontucky/f78c2e6b3ec172e47a2ba3c5d83cd50b to your computer and use it in GitHub Desktop.
Save kenvontucky/f78c2e6b3ec172e47a2ba3c5d83cd50b to your computer and use it in GitHub Desktop.
Visual Studio Code Python workspace settings
{
"python.pythonPath": "./python-virtual-env/bin/python",
"python.autoComplete.extraPaths": [
"./python-virtual-env",
"./python-virtual-env/lib/python3.6/site-packages"
],
"python.linting.pylintArgs": [
"--load-plugins",
"pylint_django",
"--max-line-length=120"
],
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"editor.rulers": [
120
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment