Created
March 23, 2017 17:26
-
-
Save aniav/19f185cfb2dd84fb4c09e0691f9f27bb to your computer and use it in GitHub Desktop.
My almost generic .vscode/settings.json for python/Django projects
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": "${workspaceRoot}/.venv/bin/python", | |
"python.linting.pylintEnabled": false, | |
"python.linting.flake8Enabled": true, | |
"python.linting.pep8Enabled": true, | |
"python.formatting.autopep8Path": "${workspaceRoot}/.venv/bin/autopep8", | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/.DS_Store": true, | |
"**/*.pyc": true, | |
"**/__pycache__/": true | |
}, | |
"search.exclude": { | |
"**/.git": true, | |
"**/.venv": true, | |
"**/.venv3": true, | |
"**/tmp": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment