summaryrefslogtreecommitdiff
path: root/cli/clippy.toml
blob: c4afef17c4baa26030942790e6e1daab7843c95b (plain)
1
2
3
4
5
6
disallowed-methods = [
  { path = "reqwest::Client::new", reason = "create an HttpClient via an HttpClientProvider instead" },
]
disallowed-types = [
  { path = "reqwest::Client", reason = "use crate::http_util::HttpClient instead" },
]