We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ruff
ruff check
1 parent 3300660 commit 6482f99Copy full SHA for 6482f99
Makefile
@@ -42,7 +42,7 @@ ruff_format:
42
poetry run ruff format .
43
44
ruff:
45
- poetry run ruff .
+ poetry run ruff check .
46
47
watch_ruff:
48
if command -v entr > /dev/null; then ${PY_FILES} | entr -c $(MAKE) ruff; else $(MAKE) ruff entr_warn; fi
docs/developing.md
@@ -69,7 +69,7 @@ $ poetry run ruff
69
If you setup manually:
70
71
```console
72
-$ ruff .
+$ ruff check .
73
```
74
75
````
@@ -97,13 +97,13 @@ requires [`entr(1)`].
97
poetry:
98
99
100
-$ poetry run ruff . --fix
+$ poetry run ruff check . --fix
101
102
103
104
105
106
-$ ruff . --fix
+$ ruff check . --fix
107
108
109
0 commit comments