Skip to content

Commit 992b3d8

Browse files
authored
fix(clippy): allow derivable_impls lint (#558)
Many types in the codebase have manual Default implementations for documentation purposes or code clarity.
1 parent c0ce4f3 commit 992b3d8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,8 @@ unnecessary_sort_by = "allow"
395395
iter_without_into_iter = "allow"
396396
# Allow modules with the same name as parent (test modules pattern)
397397
module_inception = "allow"
398+
# Allow manual Default impl instead of derive (sometimes needed for doc comments)
399+
derivable_impls = "allow"
398400

399401
[profile.release]
400402
lto = "fat"

0 commit comments

Comments
 (0)