Add makefile command to run clippy through docker.

This commit is contained in:
Tom Alexander 2023-10-16 19:38:45 -04:00
parent d8e3a85ef7
commit e4d9c5f467
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -37,6 +37,10 @@ clean:
format:
> $(MAKE) -C docker/cargo_fmt run
.PHONY: dockerclippy
dockerclippy:
> $(MAKE) -C docker/organic_clippy run
.PHONY: clippy
clippy:
> cargo clippy --no-deps --all-targets --all-features -- -D warnings