pub const NOISE_DIRS: &[&str] = &[
"node_modules",
".git",
"target",
"__pycache__",
".next",
"dist",
"build",
".cache",
".turbo",
".vercel",
".pytest_cache",
".mypy_cache",
".tox",
".venv",
"venv",
"env", // Python legacy virtualenv dir — noise. .env (dotenv) is intentionally NOT here: agents must see it.
"coverage",
".nyc_output",
".DS_Store",
"Thumbs.db",
".idea",
".vscode",
".vs",
"*.egg-info",
".eggs",
];