Created
February 5, 2018 20:21
-
-
Save eastenluis/170a29359f57538e0355dcc70a7cec5d to your computer and use it in GitHub Desktop.
Basic VSCode Django Workspace Settings
This file contains hidden or 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.linting.pep8Enabled": false, | |
"python.linting.pylintEnabled": true, | |
"python.linting.enabled": true, | |
"python.linting.flake8Enabled": true, | |
"python.linting.pylintArgs": [ | |
"--load-plugins", | |
"pylint_django" | |
], | |
"python.pythonPath": "{Path to python/virtual env}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment