Skip to content

Commit

Permalink
infra: Promote clippy::performance warnings to deny
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillbobyrev committed May 17, 2024
1 parent 9664582 commit 5c5718d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,16 @@
)]
// Clippy lints.
#![warn(
clippy::perf,
clippy::pedantic,
clippy::correctness,
clippy::suspicious,
clippy::style,
clippy::nursery,
clippy::complexity,
clippy::correctness,
clippy::pedantic,
clippy::nursery,
clippy::cargo
)]
// Performance is extremely important.
#![deny(clippy::perf)]

// TODO: Re-export types for convenience.
pub mod chess;
Expand Down

0 comments on commit 5c5718d

Please sign in to comment.