# ── Rust ──────────────────────────────────────────────────────────────────────
target/
**/*.rs.bk
*.pdb
**/mutants.out*/

# ── Python ────────────────────────────────────────────────────────────────────
__pycache__/
**/__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.egg-info/
dist/
build/
.eggs/
.venv/
venv/
.pytest_cache/
.mypy_cache/
.ruff_cache/
htmlcov/
.coverage
coverage.xml

# ── Go ────────────────────────────────────────────────────────────────────────
*.exe
*.test
*.out
vendor/

# ── JavaScript / Node ─────────────────────────────────────────────────────────
node_modules/
dist/
*.tsbuildinfo
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm/

# ── Java / Maven ──────────────────────────────────────────────────────────────
java/target/
*.class
*.jar
*.war
*.ear
.mvn/wrapper/maven-wrapper.jar
hs_err_pid*.log

# ── C# / .NET ─────────────────────────────────────────────────────────────────
csharp/*/bin/
csharp/*/obj/
*.user
*.suo
*.vs/
.vs/
*.nupkg

# ── IDE / Editor ──────────────────────────────────────────────────────────────
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
Thumbs.db

# ── Secrets / Environment ─────────────────────────────────────────────────────
.env
.env.*
*.pem
*.key
secrets/
