We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2060fb commit 1f71c59Copy full SHA for 1f71c59
justfile
@@ -3,6 +3,9 @@ set export
3
REPO_DIR := `git rev-parse --show-toplevel`
4
5
alias ulf := update-lock-files
6
+alias l := lint
7
+alias li := lint-integration-tests
8
+alias lv := lint-verify
9
10
default:
11
@just --list
@@ -16,9 +19,15 @@ check:
16
19
cargo check --workspace --all-targets --all-features
17
20
18
21
# Lint everything.
-lint:
22
+lint: lint-verify lint-integration-tests
23
cargo +$(cat ./nightly-version) clippy --workspace --all-targets --all-features -- --deny warnings
24
25
+lint-verify:
26
+ $REPO_DIR/contrib/lint-verify.sh
27
+
28
+lint-integration-tests:
29
+ $REPO_DIR/contrib/lint-integtation-tests.sh
30
31
# Run cargo fmt
32
fmt:
33
cargo +$(cat ./nightly-version) fmt --all
0 commit comments