diff --git a/aws-lc-rs/Makefile b/aws-lc-rs/Makefile index f60c8de1268..379376ffcc3 100644 --- a/aws-lc-rs/Makefile +++ b/aws-lc-rs/Makefile @@ -45,9 +45,12 @@ msrv: clippy: cargo +nightly clippy --all-targets --features bindgen,fips,unstable -- -W clippy::all -W clippy::pedantic +clippy-fix: + cargo +nightly clippy --all-targets --features bindgen,fips,unstable --fix --allow-dirty -- -W clippy::all -W clippy::pedantic + ci: format clippy msrv test coverage api-diff-pub readme: cargo readme | tee README.md -.PHONY: asan asan-fips asan-release ci clippy coverage coverage-fips test msrv clippy +.PHONY: asan asan-fips asan-release ci clippy coverage coverage-fips test msrv clippy clippy-fix