Skip to content

Commit

Permalink
build: move clippy groups to just command
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandervantrijffel committed Oct 13, 2024
1 parent e7e75a5 commit 37e4e44
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ build-release:
cargo build --release --verbose

clippy-release:
cargo clippy --release -- -Wwarnings -Wclippy::pedantic -Wclippy::nursery -Wclippy::all -Wclippy::cargo
cargo clippy --release -- -W warnings -W clippy::pedantic -W clippy::nursery -W clippy::all -W clippy::cargo -A clippy::cargo_common_metadata

test-all *ARGS:
#!/bin/sh
Expand Down
3 changes: 0 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
#![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::cargo)]
#![allow(clippy::cargo_common_metadata)]

pub mod mutate_in_closure;
pub mod vec_any;

0 comments on commit 37e4e44

Please sign in to comment.