1{ 2 "files.exclude": { 3 "**/.mypy_cache/**": true, 4 "**/.pytest_cache/**": true, 5 "**/.ruff_cache/**": true, 6 "**/.venv/**": true, 7 "**/node_modules/**": true, 8 "build/**": true, 9 }, 10 "files.watcherExclude": { 11 "**/.mypy_cache/**": true, 12 "**/.pytest_cache/**": true, 13 "**/.ruff_cache/**": true, 14 "**/.venv/**": true, 15 "**/node_modules/**": true, 16 "build/**": true, 17 }, 18 "search.exclude": { 19 "**/.mypy_cache/**": true, 20 "**/.pytest_cache/**": true, 21 "**/.ruff_cache/**": true, 22 "**/.venv/**": true, 23 "**/node_modules/**": true, 24 "build/**": true, 25 }, 26}