Skip to content

Commit

Permalink
justfile: add lint command
Browse files Browse the repository at this point in the history
  • Loading branch information
pythcoiner committed Feb 23, 2025
1 parent 6a1d78f commit 9873cab
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ clean:
rm -fRd dart/ios
rm -fRd dart/.dart_tool

lint:
set -e
cargo fmt -- --check
cargo clippy --all-features --all-targets -- -D warnings

test:
cargo clippy --all-features --all-targets -- -D warnings
just lint
cargo test -- --nocapture

0 comments on commit 9873cab

Please sign in to comment.