Re-allow let_underscore_drop by default.

This lint is way way too noisy to have it be `Deny` by default.
This commit is contained in:
Aaron Kofsky 2022-06-16 21:07:00 -04:00
parent 8807c2d8e5
commit a9095ff213

View file

@ -46,7 +46,7 @@ declare_lint! {
/// calling `std::mem::drop` on the expression is clearer and helps convey
/// intent.
pub LET_UNDERSCORE_DROP,
Deny,
Allow,
"non-binding let on a type that implements `Drop`"
}