Skip to content

Commit

Permalink
fix(clippy1): Set clippy::float_cmp lint to deny (#907)
Browse files Browse the repository at this point in the history
  • Loading branch information
radicale committed Feb 4, 2022
1 parent 5002c54 commit 71a0604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exercise.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ path = "{}.rs""#,
Command::new("cargo")
.args(&["clippy", "--manifest-path", CLIPPY_CARGO_TOML_PATH])
.args(RUSTC_COLOR_ARGS)
.args(&["--", "-D", "warnings"])
.args(&["--", "-D", "warnings","-D","clippy::float_cmp"])
.output()
}
}
Expand Down

0 comments on commit 71a0604

Please sign in to comment.