1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 04:34:43 +04:00

VSCode: Reduce file watcher resource usage (#4292)

This commit is contained in:
WillyJL
2025-10-08 13:13:36 +02:00
committed by GitHub
parent 85b6b2b896
commit 8ae710edec

View File

@@ -19,5 +19,13 @@
"--compile-commands-dir=${workspaceFolder}/build/latest",
"--clang-tidy",
"--header-insertion=never"
]
],
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/**/modules/**/objects/**": true,
"**/.git/**/subtree-cache/**": true,
"**/.git/**/rr-cache/**": true,
"build/**": true,
"toolchain/**": true
}
}