vscode: remove non-symlinked openpilot directories from python analysis (#31780)

anaylsis
This commit is contained in:
Justin Newberry
2024-03-07 17:41:58 -05:00
committed by GitHub
parent 8ba5d660f3
commit 9f0201bdd4

12
.vscode/settings.json vendored
View File

@@ -12,5 +12,15 @@
"**/.git": true,
"**/.venv": true,
"**/__pycache__": true
}
},
"python.analysis.exclude": [
"**/.git",
"**/.venv",
"**/__pycache__",
// exclude directories should be using the symlinked version
"common/**",
"selfdrive/**",
"system/**",
"tools/**",
]
}