more on clippy

This commit is contained in:
Stephan Dilly 2020-03-27 00:41:59 +01:00
parent 2c5f1f2142
commit 33e9013b72
2 changed files with 6 additions and 0 deletions

View File

@ -5,6 +5,10 @@ debug:
test:
cargo test --workspace -- --test-threads=1
clippy:
cargo clean
cargo clippy --all-targets --all-features -- -D warnings
install:
cargo install --path "."

View File

@ -1,3 +1,5 @@
#![deny(clippy::all)]
mod app;
mod components;
mod keys;