From fe457f7427959bc8648203669363f772251c7ea5 Mon Sep 17 00:00:00 2001 From: nuluh Date: Mon, 12 Aug 2024 19:59:49 +0700 Subject: [PATCH] feat: Add python.analysis.extraPaths setting to VSCode This commit adds the "python.analysis.extraPaths" setting to the VSCode settings.json file. The setting includes the "./code/src/features" directory as an additional path for Python analysis. This change improves the analysis capabilities within the VSCode environment. Closes #3 --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a1299c3 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "python.analysis.extraPaths": ["./code/src/features"] +}