Created
March 13, 2023 20:28
-
-
Save rudyryk/17644da54042f0cd9ead43e8604203b5 to your computer and use it in GitHub Desktop.
Minimal .vscode/settings.json for Python project
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.defaultInterpreterPath": "./.venv/bin/python", | |
"python.linting.enabled": true, | |
"[python]": { | |
"editor.insertSpaces": true, | |
"editor.tabSize": 4 | |
}, | |
"files.exclude": { | |
".ruff_cache": true, | |
".pytest_cache": true, | |
".git/**": true, | |
".venv/**": true, | |
"dist/**": true, | |
"build/**": true, | |
"*.egg-info": true, | |
"**/__pycache__": true, | |
"**/*.pyc": true, | |
"**/*.pyo": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment