diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-08-24 01:21:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-24 01:21:21 +0100 |
commit | 2ab4afc6b8e90f1315e0727c9b9c714c3667dc45 (patch) | |
tree | 05f07ba22d5d4a5f5120ab988320ad88ea20d542 /cli/clippy.toml | |
parent | bbd3a7e637b0223647405adf76b23092ab957157 (diff) |
refactor(lsp): changes for lsp_types 0.97.0 (#25169)
Diffstat (limited to 'cli/clippy.toml')
-rw-r--r-- | cli/clippy.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/clippy.toml b/cli/clippy.toml index c4afef17c..e20c56c47 100644 --- a/cli/clippy.toml +++ b/cli/clippy.toml @@ -4,3 +4,6 @@ disallowed-methods = [ disallowed-types = [ { path = "reqwest::Client", reason = "use crate::http_util::HttpClient instead" }, ] +ignore-interior-mutability = [ + "lsp_types::Uri", +] |