Skip to content

Instantly share code, notes, and snippets.

@aniav
Created March 23, 2017 17:26
Show Gist options
  • Save aniav/19f185cfb2dd84fb4c09e0691f9f27bb to your computer and use it in GitHub Desktop.
Save aniav/19f185cfb2dd84fb4c09e0691f9f27bb to your computer and use it in GitHub Desktop.
My almost generic .vscode/settings.json for python/Django projects
{
"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