summaryrefslogtreecommitdiff
path: root/cli/clippy.toml
blob: e20c56c47abba3aa8cfa67ab97faf9a6dad35007 (plain)
1
2
3
4
5
6
7
8
9
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" },
]
ignore-interior-mutability = [
  "lsp_types::Uri",
]