We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce6275b commit dbb0eb9Copy full SHA for dbb0eb9
1 file changed
.pre-commit-config.yaml
@@ -18,19 +18,19 @@ repos:
18
hooks:
19
- id: black
20
name: Format with Black
21
- entry: poetry run black
+ entry: uv run black
22
language: system
23
types: [python]
24
25
- id: mypy
26
name: Validate types with MyPy
27
- entry: poetry run mypy
+ entry: uv run mypy
28
29
30
31
- id: ruff
32
name: Run ruff lints
33
- entry: poetry run ruff
+ entry: uv run ruff
34
35
pass_filenames: false
36
0 commit comments