From d1e246c86853d64b7ff44cf9fb86b6bae463c85c Mon Sep 17 00:00:00 2001 From: "Max P." Date: Wed, 30 Apr 2025 12:01:15 +0200 Subject: [PATCH] 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. --- .vscode/settings.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..0284138 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "python.envFile": "${workspaceFolder}/.env", + "python.analysis.extraPaths": [ + "src" + ] +} \ No newline at end of file