Skip to content

Commit 178d3f1

Browse files
committed
docs,Makefile: ruff -> ruff check (ruff 0.3.0)
warning: `ruff <path>` is deprecated. Use `ruff check <path>` instead. See also: https://github.com/astral-sh/ruff/blob/v0.3.0/CHANGELOG.md
1 parent 790378e commit 178d3f1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ruff_format:
3737
uv run ruff format .
3838

3939
ruff:
40-
uv run ruff .
40+
uv run ruff check .
4141

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

docs/contributing/workflow.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ $ uv run ruff
6666
If you setup manually:
6767
6868
```console
69-
$ ruff .
69+
$ ruff check .
7070
```
7171
7272
````
@@ -94,13 +94,13 @@ requires [`entr(1)`].
9494
uv:
9595
9696
```console
97-
$ uv run ruff . --fix
97+
$ uv run ruff check . --fix
9898
```
9999
100100
If you setup manually:
101101
102102
```console
103-
$ ruff . --fix
103+
$ ruff check . --fix
104104
```
105105
106106
````

0 commit comments

Comments
 (0)