fix(clippy1): Set clippy::float_cmp lint to deny (#907)

This commit is contained in:
radicale 2022-02-04 14:39:09 +01:00 committed by GitHub
parent 5002c54ffb
commit 71a06044e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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()
}
}