Skip to content

Commit

Permalink
Lint node in justfile
Browse files Browse the repository at this point in the history
`node` is excluded from the worspace so `just` commands that use cargo
don't hit it.

As we did for the `just fmt` command make the `just lint` command lint
the `node` crate also.
  • Loading branch information
tcharding committed Dec 19, 2024
1 parent 3426723 commit 3625782
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ check:
# Lint everything.
lint:
cargo +$(cat ./nightly-version) clippy --workspace --all-targets --all-features -- --deny warnings
cd $REPO_DIR/node > /dev/null; cargo +$(cat ../nightly-version) clippy --all-targets --all-features -- --deny warnings

# Run cargo fmt
fmt:
Expand Down

0 comments on commit 3625782

Please sign in to comment.