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.
ruff
ruff check
1 parent 00ffcd1 commit 7204c51Copy full SHA for 7204c51
Makefile
@@ -37,7 +37,7 @@ ruff_format:
37
uv run ruff format .
38
39
ruff:
40
- uv run ruff .
+ uv run ruff check .
41
42
watch_ruff:
43
if command -v entr > /dev/null; then ${PY_FILES} | entr -c $(MAKE) ruff; else $(MAKE) ruff entr_warn; fi
docs/contributing/workflow.md
@@ -66,7 +66,7 @@ $ uv run ruff
66
If you setup manually:
67
68
```console
69
-$ ruff .
+$ ruff check .
70
```
71
72
````
@@ -94,13 +94,13 @@ requires [`entr(1)`].
94
uv:
95
96
97
-$ uv run ruff . --fix
+$ uv run ruff check . --fix
98
99
100
101
102
103
-$ ruff . --fix
+$ ruff check . --fix
104
105
106
0 commit comments