Skip to content
Closed
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
9 changes: 8 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,17 @@ source .venv/bin/activate # Windows: .venv\Scripts\activate
# 3. Install the package in editable mode with dev dependencies
pip install -e ".[dev]"

# 4. Verify the CLI is available
# 4. Install the local pre-commit hooks
pip install pre-commit
pre-commit install

# 5. Verify the CLI is available
anglerfish --version
```

The pre-commit hooks run `ruff check --fix` and `ruff-format`, mirroring the
style gates enforced in CI.

---

## Running Tests and Linting
Expand Down