Skip to content

Commit f164e81

Browse files
authored
style: suppress some new clippy lints (#754)
* style: suppress `integer_division_remainder_used` * style: suppress `legacy_numeric_constants`
1 parent bf9d9c1 commit f164e81

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ impl_trait_in_params = { level = "allow", priority = 1 }
103103
implicit_return = { level = "allow", priority = 1 }
104104
indexing_slicing = { level = "allow", priority = 1 }
105105
integer_division = { level = "allow", priority = 1 }
106+
integer_division_remainder_used = { level = "allow", priority = 1 }
106107
iter_over_hash_type = { level = "allow", priority = 1 }
107108
little_endian_bytes = { level = "allow", priority = 1 }
108109
map_err_ignore = { level = "allow", priority = 1 }
@@ -164,3 +165,5 @@ suspicious_operation_groupings = { level = "allow", priority = 1 }
164165
use_self = { level = "allow", priority = 1 }
165166
# cargo-lints:
166167
cargo_common_metadata = { level = "allow", priority = 1 }
168+
# style-lints:
169+
legacy_numeric_constants = { level = "allow", priority = 1 }

0 commit comments

Comments
 (0)