f9fcc7adab
date: 2026-06-28T09:48:35 master commit: da6313dbe95b3f24bb5d8018b0e5f950f5823ca7
27 lines
560 B
JSON
27 lines
560 B
JSON
{
|
|
"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
|
|
},
|
|
"python.analysis.exclude": [
|
|
"**/.git",
|
|
"**/.venv",
|
|
"**/__pycache__",
|
|
// exclude directories that should be using the symlinked version
|
|
"common/**",
|
|
"selfdrive/**",
|
|
"system/**",
|
|
"tools/**",
|
|
]
|
|
}
|