diff --git a/lints.toml b/lints.toml index 8b9d239e74..9fc5fe9aed 100644 --- a/lints.toml +++ b/lints.toml @@ -49,11 +49,9 @@ deny = [ # Highlights potential casting mistakes 'clippy::cast_lossless', 'clippy::cast_possible_truncation', -# 'clippy::cast_possible_wrap', - # Precision loss is almost always competely fine and is only useful as a sanity check. - # https://rust-lang.github.io/rust-clippy/master/index.html#cast_precision_loss - # 'clippy::cast_precision_loss', -# 'clippy::cast_sign_loss' + 'clippy::cast_possible_wrap', + 'clippy::cast_precision_loss', + 'clippy::cast_sign_loss' 'clippy::unnecessary_to_owned', 'clippy::nonminimal_bool', 'clippy::needless_question_mark',