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

# Rubricon local state
.rubricon/
*.rubricon.db
*.rubricon.db-journal

# Node / dashboard
node_modules/
.next/
out/
# src/rubricon/server/static/ is deliberately NOT ignored. It is the compiled dashboard, and it
# has to be in the wheel: `pip install rubricon-eval[server]` must produce a working dashboard
# on a machine with no node and no network. Hatchling excludes anything git ignores, so ignoring
# the build output ships a server with nothing to serve -- which it silently did once. Committing
# it costs diff noise and buys the guarantee that what is in git is what ships.

# Env
.env
.env.*
!.env.example

# Editors / OS
.vscode/
.idea/
.DS_Store
Thumbs.db

# TypeScript incremental build cache: a local artifact, not a source of truth.
frontend/tsconfig.tsbuildinfo

# The roadmap is planning, not documentation. It changes weekly, it commits nobody to
# anything, and a published one invites "you said v0.5 by week 20". Kept locally instead.
ROADMAP.md
