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

anaylsis
pull/31782/head
Justin Newberry 1 year ago committed by GitHub
parent 8ba5d660f3
commit 9f0201bdd4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 12
      .vscode/settings.json

@ -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/**",
]
}
Loading…
Cancel
Save