mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
ddc718087f
* Ran automatic naming update * Formalized rename of `cyclomatic_complexity` to `cognitive_complexity` ** Added the rename to `lib.rs` ** Added rename test * Added warning for deprecated key `cyclomatic_complexity_threshold` and tests for it * Added deprecation status for Clippy's builtin attribute * Updated tests for new builtin attribute renaming
15 lines
241 B
Rust
15 lines
241 B
Rust
#![warn(clippy::cognitive_complexity)]
|
|
#![warn(unused)]
|
|
|
|
fn main() {
|
|
kaboom();
|
|
}
|
|
|
|
#[clippy::cognitive_complexity = "0"]
|
|
fn kaboom() {
|
|
if 42 == 43 {
|
|
panic!();
|
|
} else if "cake" == "lie" {
|
|
println!("what?");
|
|
}
|
|
}
|