Skip to content

Commit ffffaf1

Browse files
committed
Ignore more lints at workspace level
1 parent 7fbf27a commit ffffaf1

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ workspace = true
3333
[workspace.lints.rust]
3434
improper_ctypes = "warn"
3535
improper_ctypes_definitions = "warn"
36-
missing_debug_implementations = "warn"
3736
non_ascii_idents = "warn"
3837
rust_2018_idioms = "warn"
3938
single_use_lifetimes = "warn"
@@ -51,6 +50,7 @@ undocumented_unsafe_blocks = "warn"
5150
# Suppress buggy or noisy clippy lints
5251
bool_assert_comparison = { level = "allow", priority = 1 }
5352
borrow_as_ptr = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/8286
53+
declare_interior_mutable_const = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7665
5454
doc_markdown = { level = "allow", priority = 1 }
5555
float_cmp = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7725
5656
manual_assert = { level = "allow", priority = 1 }

tests/test.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
#![allow(
44
dead_code,
5-
missing_debug_implementations,
65
unreachable_pub,
76
clippy::items_after_statements,
87
clippy::missing_safety_doc,

0 commit comments

Comments
 (0)