diff options
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r-- | .pre-commit-config.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f24cade..af0c8c9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,7 +17,7 @@ repos: - id: ruff-lint name: ruff linting description: Run ruff linting - entry: poetry run ruff check --force-exclude + entry: uv run ruff check --force-exclude language: system "types_or": [python, pyi] require_serial: true @@ -26,7 +26,7 @@ repos: - id: ruff-format name: ruff formatting description: Run ruff formatting - entry: poetry run ruff format --force-exclude + entry: uv run ruff format --force-exclude language: system "types_or": [python, pyi] require_serial: true |