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

anaylsis
old-commit-hash: 9f0201bdd42e87c15c8d822da12c19f757ea2017
This commit is contained in:
Justin Newberry
2024-03-07 17:41:58 -05:00
committed by GitHub
parent fd2a03b1c2
commit ed8e7ef866
+11 -1
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/**",
]
}