mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 00:48:35 +00:00
more on clippy
This commit is contained in:
parent
2c5f1f2142
commit
33e9013b72
2 changed files with 6 additions and 0 deletions
4
Makefile
4
Makefile
|
|
@ -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 "."
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
#![deny(clippy::all)]
|
||||
|
||||
mod app;
|
||||
mod components;
|
||||
mod keys;
|
||||
|
|
|
|||
Loading…
Reference in a new issue