Skip to content

Instantly share code, notes, and snippets.

@rudyryk
Created March 13, 2023 20:28
Show Gist options
  • Save rudyryk/17644da54042f0cd9ead43e8604203b5 to your computer and use it in GitHub Desktop.
Save rudyryk/17644da54042f0cd9ead43e8604203b5 to your computer and use it in GitHub Desktop.
Minimal .vscode/settings.json for Python project
{
"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