mirror of
https://github.com/MoreTore/openpilot.git
synced 2026-08-04 15:56:08 +08:00
81da8ac9f4
date: 2024-06-11T01:36:39 master commit: f8cb04e4a8b032b72a909f68b808a50936184bee
28 lines
582 B
JSON
28 lines
582 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/**",
|
|
"third_party/**",
|
|
"tools/**",
|
|
]
|
|
}
|