feat(vscode): add Python environment and analysis settings

- Configure `.env` file for environment variables
- Add `src` to Python analysis extra paths for better IntelliSense

Signed-off-by: Max P. <Mail@MPassarello.de>
This commit is contained in:
2025-04-30 12:01:15 +02:00
parent 370155077d
commit d1e246c868

6
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,6 @@
{
"python.envFile": "${workspaceFolder}/.env",
"python.analysis.extraPaths": [
"src"
]
}