Skip to content

Commit

Permalink
Update ruff usage
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasturcani committed Apr 18, 2024
1 parent 3f6dcc3 commit a97a050
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ check:
trap error=1 ERR

echo
(set -x; ruff . )
(set -x; ruff check . )

echo
( set -x; ruff format --check . )
Expand All @@ -39,7 +39,7 @@ check:
# Auto-fix code issues.
fix:
ruff format .
ruff --fix .
ruff check --fix .

# Build a release.
build:
Expand Down

0 comments on commit a97a050

Please sign in to comment.