Skip to content

Commit

Permalink
chore(clippy): deny clippy::dbg_macro
Browse files Browse the repository at this point in the history
I noticed that I had let `dbg!(…)` sneak into commits in gfx-rs#2294 by
accident. Clippy can help us with this! Set `deny(clippy::dbg_macro)`,
so CI catches this for future contributions.
  • Loading branch information
ErichDonGubler committed May 22, 2023
1 parent ce48588 commit 17dcc74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ tree.
clippy::rest_pat_in_fully_bound_structs,
clippy::match_wildcard_for_single_variants
)]
#![cfg_attr(not(test), deny(clippy::panic))]
#![cfg_attr(not(test), deny(clippy::dbg_macro, clippy::panic))]

mod arena;
pub mod back;
Expand Down

0 comments on commit 17dcc74

Please sign in to comment.