Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ repos:
hooks:
- id: ruff-format
name: ruff-format
entry: ruff format
entry: uv run --no-sync ruff format
language: system
types_or: [python, markdown]
require_serial: true
- id: ruff-check
name: ruff-check
entry: ruff check
entry: uv run --no-sync ruff check
language: system
args: [--fix, --exit-non-zero-on-fix]
types_or: [python, pyi]
Expand All @@ -19,7 +19,7 @@ repos:
hooks:
- id: codespell
name: codespell
entry: codespell
entry: uv run --no-sync codespell
language: system
types: [text]
require_serial: true
Expand All @@ -28,15 +28,15 @@ repos:
- id: update-pyi-files
name: update-pyi-files
description: Update pyi files as needed
entry: python3 scripts/make_pyi.py
entry: uv run --no-sync python scripts/make_pyi.py
language: system
always_run: true
require_serial: true
- repo: local
hooks:
- id: pyright
name: pyright
entry: pyright
entry: uv run --no-sync pyright
language: system
types: [python]
require_serial: true
Expand Down
Loading