Last active
July 25, 2018 09:25
-
-
Save kenvontucky/f78c2e6b3ec172e47a2ba3c5d83cd50b to your computer and use it in GitHub Desktop.
Visual Studio Code Python workspace settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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