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
This commit is contained in:
nuluh
2024-08-12 19:59:49 +07:00
parent 72bc0f5f91
commit fe457f7427

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

@@ -0,0 +1,3 @@
{
"python.analysis.extraPaths": ["./code/src/features"]
}