Browse Source

Ban use of `do_send` function via clippy

reconnect-to-maker
Thomas Eizinger 3 years ago
parent
commit
f43e8a5e25
No known key found for this signature in database GPG Key ID: 651AC83A6C6C8B96
  1. 1
      clippy.toml

1
clippy.toml

@ -1,4 +1,5 @@
disallowed-methods = [
"xtra::Address::do_send_async", # discards the return value, possibly swallowing an error
"xtra::Address::do_send", # discards the return value, possibly swallowing an error
"xtra::message_channel::MessageChannel::do_send", # discards the return value, possibly swallowing an error
]

Loading…
Cancel
Save