Recommends some extensions and sets the default interpreter path

This commit is contained in:
Trenton Holmes 2024-06-01 18:21:43 -07:00 committed by Trenton H
parent 5fc6736666
commit dac7384aca

View File

@ -31,6 +31,11 @@
"**/.venv": true, "**/.venv": true,
"**/.coverage": true, "**/.coverage": true,
"**/coverage.json": true "**/coverage.json": true
} },
"python.defaultInterpreterPath": ".venv/bin/python3",
},
"extensions": {
"recommendations": ["ms-python.python", "charliermarsh.ruff", "editorconfig.editorconfig"],
"unwantedRecommendations": ["ms-python.black-formatter"]
} }
} }