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 8def1b6 commit fc88452Copy full SHA for fc88452
Makefile
@@ -25,16 +25,19 @@ release-linux-musl:
25
test:
26
cargo test --workspace
27
28
-check:
+fmt:
29
cargo fmt -- --check
30
+
31
+clippy:
32
cargo clean -p gitui -p asyncgit -p scopetime
33
cargo clippy --all-features
34
-check-pedantic:
- cargo fmt -- --check
35
+clippy-pedantic:
36
37
cargo clippy --all-features -- -W clippy::pedantic
38
39
+check: fmt clippy
40
41
install:
42
cargo install --path "."
43
0 commit comments