add cargo-audit to Makefile lint target
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
7
Makefile
7
Makefile
@@ -1,11 +1,11 @@
|
|||||||
.PHONY: all build lint fmt check test clean deploy
|
.PHONY: all build lint fmt check audit test clean deploy
|
||||||
|
|
||||||
all: lint build
|
all: lint build
|
||||||
|
|
||||||
build:
|
build:
|
||||||
cargo build
|
cargo build
|
||||||
|
|
||||||
lint: fmt check
|
lint: fmt check audit
|
||||||
|
|
||||||
fmt:
|
fmt:
|
||||||
cargo fmt --check
|
cargo fmt --check
|
||||||
@@ -13,6 +13,9 @@ fmt:
|
|||||||
check:
|
check:
|
||||||
cargo clippy -- -D warnings
|
cargo clippy -- -D warnings
|
||||||
|
|
||||||
|
audit:
|
||||||
|
cargo audit
|
||||||
|
|
||||||
test:
|
test:
|
||||||
cargo test
|
cargo test
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user