Skip to content

Commit 71a0604

Browse files
authored
fix(clippy1): Set clippy::float_cmp lint to deny (#907)
1 parent 5002c54 commit 71a0604

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/exercise.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ path = "{}.rs""#,
154154
Command::new("cargo")
155155
.args(&["clippy", "--manifest-path", CLIPPY_CARGO_TOML_PATH])
156156
.args(RUSTC_COLOR_ARGS)
157-
.args(&["--", "-D", "warnings"])
157+
.args(&["--", "-D", "warnings","-D","clippy::float_cmp"])
158158
.output()
159159
}
160160
}

0 commit comments

Comments
 (0)