Created
February 13, 2019 03:19
-
-
Save coderfi/60f2cf50b8ea5e9f38f5edb5898044f5 to your computer and use it in GitHub Desktop.
Sample Visual Studio Code [PROJECT_DIR]/.vscode/settings.json file
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.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