Files
arm-trusted-firmware/.vscode/settings.json
T
Chris Kay 52e486f6a6 chore(vscode): ignore noisy directories
Some directories undergo a high level of churn due to developer tooling
and contain little of use to the developer in day-to-day work. Including
them in the VS Code project can cause the editor to consume significant
system resources unnecessarily.

This commit updates the Visual Studio configuration to avoid showing,
watching or searching these directories, reducing resource usage and
improving editor responsiveness.

Change-Id: Icea6362dd928719da0456ca54d87c96d14eb9fcc
Signed-off-by: Chris Kay <chris.kay@arm.com>
2025-10-01 14:39:48 +01:00

26 lines
695 B
JSON

{
"files.exclude": {
"**/.mypy_cache/**": true,
"**/.pytest_cache/**": true,
"**/.ruff_cache/**": true,
"**/.venv/**": true,
"**/node_modules/**": true,
"build/**": true,
},
"files.watcherExclude": {
"**/.mypy_cache/**": true,
"**/.pytest_cache/**": true,
"**/.ruff_cache/**": true,
"**/.venv/**": true,
"**/node_modules/**": true,
"build/**": true,
},
"search.exclude": {
"**/.mypy_cache/**": true,
"**/.pytest_cache/**": true,
"**/.ruff_cache/**": true,
"**/.venv/**": true,
"**/node_modules/**": true,
"build/**": true,
},
}