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:
42
42
poetry run ruff format .
43
43
44
44
ruff :
45
- poetry run ruff .
45
+ poetry run ruff check .
46
46
47
47
watch_ruff :
48
48
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
344
344
If you setup manually:
345
345
346
346
```console
347
- $ ruff .
347
+ $ ruff check .
348
348
```
349
349
350
350
````
@@ -372,13 +372,13 @@ requires [`entr(1)`].
372
372
poetry:
373
373
374
374
```console
375
- $ poetry run ruff . --fix
375
+ $ poetry run ruff check . --fix
376
376
```
377
377
378
378
If you setup manually:
379
379
380
380
```console
381
- $ ruff . --fix
381
+ $ ruff check . --fix
382
382
```
383
383
384
384
````
You can’t perform that action at this time.
0 commit comments