Skip to content

Instantly share code, notes, and snippets.

@coderfi
Created February 13, 2019 03:19
Show Gist options
  • Save coderfi/60f2cf50b8ea5e9f38f5edb5898044f5 to your computer and use it in GitHub Desktop.
Save coderfi/60f2cf50b8ea5e9f38f5edb5898044f5 to your computer and use it in GitHub Desktop.
Sample Visual Studio Code [PROJECT_DIR]/.vscode/settings.json file
{
"python.pythonPath": "~/.virtualenvs/myvenv/bin/python",
"python.venvPath": "~/.virtualenvs",
"python.unitTest.pyTestEnabled": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.pyc": {"when": "$(basename).py"},
"**/__pycache__": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment