Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Claude.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Bash commands
- `ruff check --fix --exit-non-zero-on-fix --config=pyproject.toml .`: Run the linter
- `ruff format .`: Run the formatter
- `mypy --non-interactive --config-file pyproject.toml @mypy_allowlist.txt`: mypy typechecker

# Running tests
- Run tests with `pytest tests/`
Comment on lines +1 to +7
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these will all fail because we're using uv in order to run these commands, maybe using hooks is a better approach https://docs.anthropic.com/en/docs/claude-code/hooks-guide


# Workflow
- Be sure to typecheck when you’re done making a series of code changes
- Prefer running single tests, and not the whole test suite, for performance
Loading