Skip to content

Commit a97a050

Browse files
committedApr 18, 2024··
Update ruff usage
1 parent 3f6dcc3 commit a97a050

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎justfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ check:
2020
trap error=1 ERR
2121

2222
echo
23-
(set -x; ruff . )
23+
(set -x; ruff check . )
2424

2525
echo
2626
( set -x; ruff format --check . )
@@ -39,7 +39,7 @@ check:
3939
# Auto-fix code issues.
4040
fix:
4141
ruff format .
42-
ruff --fix .
42+
ruff check --fix .
4343

4444
# Build a release.
4545
build:

0 commit comments

Comments
 (0)
Please sign in to comment.