diff options
| author | radicale <radicale@users.noreply.github.com> | 2022-02-04 14:39:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-04 14:39:09 +0100 |
| commit | 71a06044e6a96ff756dc31d7b0ed665ae4badb57 (patch) | |
| tree | b0817c5f7ad05ec057be4abd09dcbcd3695ee346 | |
| parent | 5002c54ffb29b3df9db7282a1ef62ce075c99748 (diff) | |
fix(clippy1): Set clippy::float_cmp lint to deny (#907)
| -rw-r--r-- | src/exercise.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exercise.rs b/src/exercise.rs index e4a4145..6e49a9a 100644 --- a/src/exercise.rs +++ b/src/exercise.rs @@ -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() } } |
