We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dafee72 commit d32b879Copy full SHA for d32b879
1 file changed
.pre-commit-config.yaml
@@ -17,13 +17,6 @@ repos:
17
)$
18
- id: trailing-whitespace
19
exclude: ^frontend/src/client/.*
20
- - repo: https://github.com/charliermarsh/ruff-pre-commit
21
- rev: v0.2.2
22
- hooks:
23
- - id: ruff
24
- args:
25
- - --fix
26
- - id: ruff-format
27
- repo: local
28
hooks:
29
- id: local-biome-check
@@ -32,3 +25,17 @@ repos:
32
language: system
33
types: [text]
34
files: ^frontend/
+
+ - id: local-ruff-check
30
+ name: ruff check
31
+ entry: uv run ruff check --force-exclude --fix --exit-non-zero-on-fix
+ require_serial: true
+ language: unsupported
+ types: [python]
35
36
+ - id: local-ruff-format
37
+ name: ruff format
38
+ entry: uv run ruff format --force-exclude --exit-non-zero-on-format
39
40
41
0 commit comments