0a6503e503
version: sunnypilot v2026.002.000 (staging) date: 2026-06-09T18:31:30 master commit: 01a843e0acbe74d566a7eee9fe0f12f227ae81ed
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/**",
|
|
]
|
|
}
|