Skip to content

Commit

Permalink
fix: disallow log in linting
Browse files Browse the repository at this point in the history
  • Loading branch information
huitseeker committed Apr 15, 2022
1 parent e265b9b commit bcd727e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .clippy.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
too-many-arguments-threshold = 20
disallowed-methods = [
# we use tracing with the log feature instead of the log crate.
{ path = "log::info", reason = "use tracing::info instead" },
{ path = "log::debug", reason = "use tracing::debug instead" },
{ path = "log::error", reason = "use tracing::error instead" },
{ path = "log::warn", reason = "use tracing::warn instead" },
# unbounded channels are for expert use only
{ path = "tokio::sync::mpsc::unbounded_channel", reason = "use a bounded channel instead" },
{ path = "futures::channel::mpsc::unbounded", reason = "use a bounded channel instead" },
Expand Down

0 comments on commit bcd727e

Please sign in to comment.