Skip to content

Commit 5b441a2

Browse files
committed
Ignore explicit_auto_deref clippy lint
error: deref which would be done by auto-deref --> src/value/partial_eq.rs:32:22 | 32 | eq_str(self, *other) | ^^^^^^ help: try this: `other` | = note: `-D clippy::explicit-auto-deref` implied by `-D clippy::all` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref error: deref which would be done by auto-deref --> src/value/partial_eq.rs:44:23 | 44 | eq_str(other, *self) | ^^^^^ help: try this: `self` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref
1 parent 11cb87a commit 5b441a2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@
308308
clippy::deprecated_cfg_attr,
309309
clippy::doc_markdown,
310310
clippy::excessive_precision,
311+
clippy::explicit_auto_deref,
311312
clippy::float_cmp,
312313
clippy::manual_range_contains,
313314
clippy::match_like_matches_macro,

0 commit comments

Comments
 (0)