diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-06-04 18:45:37 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-06-04 18:45:37 +0100 |
commit | 98395f29a417b37a5969594f0cac5ae23585da85 (patch) | |
tree | 3a13913003723f3da843dae8580287b9d33c68eb /crates/ide_completion/src/lib.rs | |
parent | 92d91050c4aa48732e7af3bf979aa7ed5aed924d (diff) | |
parent | ae1c63fcdd0caf34f41fba62b04e3d868a589f1d (diff) |
Merge #9138
9138: feat: Implement hover for lints r=Veykril a=Veykril
fixes https://github.com/rust-analyzer/rust-analyzer/issues/8857, fixes https://github.com/rust-analyzer/rust-analyzer/issues/3941
![URXBanNxYe](https://user-images.githubusercontent.com/3757771/120830905-4bd8da80-c55f-11eb-9f55-ff5a321726fa.gif)
We also generate the default lints(and lint groups 🎉) instead now by invoking `rustc -W help` and parsing the output from that.
Co-authored-by: Lukas Wirth <[email protected]>
Diffstat (limited to 'crates/ide_completion/src/lib.rs')
-rw-r--r-- | crates/ide_completion/src/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/ide_completion/src/lib.rs b/crates/ide_completion/src/lib.rs index 1152a9850..6fb38f50d 100644 --- a/crates/ide_completion/src/lib.rs +++ b/crates/ide_completion/src/lib.rs | |||
@@ -4,7 +4,6 @@ mod config; | |||
4 | mod item; | 4 | mod item; |
5 | mod context; | 5 | mod context; |
6 | mod patterns; | 6 | mod patterns; |
7 | mod generated_lint_completions; | ||
8 | #[cfg(test)] | 7 | #[cfg(test)] |
9 | mod test_utils; | 8 | mod test_utils; |
10 | mod render; | 9 | mod render; |