refactor: Update Python interpreter path and enhance environment configuration for better development setup

This commit is contained in:
Julian Pawlowski 2025-11-09 12:49:22 +00:00
parent 232a090c67
commit cecffed4db

View file

@ -40,7 +40,11 @@
"files.trimTrailingWhitespace": true, "files.trimTrailingWhitespace": true,
"python.analysis.typeCheckingMode": "basic", "python.analysis.typeCheckingMode": "basic",
"python.analysis.autoImportCompletions": true, "python.analysis.autoImportCompletions": true,
"python.defaultInterpreterPath": "/usr/local/bin/python", "python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
"python.analysis.extraPaths": [
"${workspaceFolder}/.venv/lib/python3.13/site-packages"
],
"python.terminal.activateEnvironment": true,
"python.linting.enabled": true, "python.linting.enabled": true,
"python.linting.ruffEnabled": true, "python.linting.ruffEnabled": true,
"python.terminal.activateEnvInCurrentTerminal": true, "python.terminal.activateEnvInCurrentTerminal": true,