File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ ruff_format:
4242 poetry run ruff format .
4343
4444ruff :
45- poetry run ruff .
45+ poetry run ruff check .
4646
4747watch_ruff :
4848 if command -v entr > /dev/null; then ${PY_FILES} | entr -c $( MAKE) ruff; else $( MAKE) ruff entr_warn; fi
Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ $ poetry run ruff
344344If you setup manually:
345345
346346```console
347- $ ruff .
347+ $ ruff check .
348348```
349349
350350````
@@ -372,13 +372,13 @@ requires [`entr(1)`].
372372poetry:
373373
374374```console
375- $ poetry run ruff . --fix
375+ $ poetry run ruff check . --fix
376376```
377377
378378If you setup manually:
379379
380380```console
381- $ ruff . --fix
381+ $ ruff check . --fix
382382```
383383
384384````
You can’t perform that action at this time.
0 commit comments