Skip to content
Merged
Show file tree
Hide file tree
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: 6 additions & 5 deletions docs/DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ Automatically run quality checks before each commit using pre-commit hooks.

2. **Install the git hooks:**
```bash
pre-commit install
uv run pre-commit install
```

3. **Run on all files (one-time init):**
```bash
pre-commit run --all-files
uv run pre-commit run --all-files
```

### What It Does
Expand All @@ -91,15 +91,16 @@ Hooks run automatically on `git commit`. If checks fail, the commit is blocked u
### Manual Hook Execution

Run hooks manually without committing:

```bash
# Run on all files
pre-commit run --all-files
uv run pre-commit run --all-files

# Run on staged files only
pre-commit run
uv run pre-commit run

# Run specific hook
pre-commit run ruff-check
uv run pre-commit run ruff-check
```

## Build Project
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ dev = [
"langchain-community>=0.3.0",
"litellm>=1.40.0",
"langchain-litellm>=0.6.6",
"pre-commit>=4.6.2",
]

[tool.pytest.ini_options]
Expand Down
106 changes: 98 additions & 8 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading