Skip to content

Commit

Permalink
docs,Makefile: ruff -> ruff check (ruff 0.3.0)
Browse files Browse the repository at this point in the history
warning: `ruff <path>` is deprecated. Use `ruff check <path>` instead.

See also: https://github.com/astral-sh/ruff/blob/v0.3.0/CHANGELOG.md
  • Loading branch information
tony committed Nov 23, 2024
1 parent d93d018 commit 50afd76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ruff_format:
poetry run ruff format .

ruff:
ruff .
ruff check .

watch_ruff:
if command -v entr > /dev/null; then ${PY_FILES} | entr -c $(MAKE) ruff; else $(MAKE) ruff entr_warn; fi
Expand Down

0 comments on commit 50afd76

Please sign in to comment.