2024-02-24 20:54:04 -08:00
|
|
|
{
|
|
|
|
|
"editor.tabSize": 2,
|
|
|
|
|
"editor.insertSpaces": true,
|
|
|
|
|
"editor.renderWhitespace": "trailing",
|
|
|
|
|
"files.trimTrailingWhitespace": true,
|
|
|
|
|
"search.exclude": {
|
|
|
|
|
"**/.git": true,
|
|
|
|
|
"**/.venv": true,
|
|
|
|
|
"**/__pycache__": true
|
|
|
|
|
},
|
|
|
|
|
"files.exclude": {
|
|
|
|
|
"**/.git": true,
|
|
|
|
|
"**/.venv": true,
|
|
|
|
|
"**/__pycache__": true
|
2024-03-07 17:41:58 -05:00
|
|
|
},
|
|
|
|
|
"python.analysis.exclude": [
|
|
|
|
|
"**/.git",
|
|
|
|
|
"**/.venv",
|
|
|
|
|
"**/__pycache__",
|
2024-03-07 17:02:11 -08:00
|
|
|
// exclude directories that should be using the symlinked version
|
2024-03-07 17:41:58 -05:00
|
|
|
"common/**",
|
|
|
|
|
"selfdrive/**",
|
|
|
|
|
"system/**",
|
2024-03-13 14:23:16 -04:00
|
|
|
"third_party/**",
|
2024-03-07 17:41:58 -05:00
|
|
|
"tools/**",
|
|
|
|
|
]
|
2024-03-07 17:02:11 -08:00
|
|
|
}
|