From d762b013e4167a4141ff1d660f2b6a99fd54d191 Mon Sep 17 00:00:00 2001 From: Aaron Feickert <66188213+AaronFeickert@users.noreply.github.com> Date: Tue, 20 Jun 2023 15:25:16 -0500 Subject: [PATCH] Moar lintz --- lints.toml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/lints.toml b/lints.toml index 8b9d239e74e..9fc5fe9aed8 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',