diff options
author | Akshay <[email protected]> | 2021-10-02 09:09:11 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2021-10-02 09:09:39 +0100 |
commit | c00900120d88c3d42666ed93716b821bd694e8d6 (patch) | |
tree | c98bc6fb91ce886e2ea1e0506209477d0f1100ea /lib/src/lints/empty_let_in.rs | |
parent | 088559eedd40b16fff2ce97e48006580be39dd03 (diff) |
new lint: manual_inherit
Diffstat (limited to 'lib/src/lints/empty_let_in.rs')
-rw-r--r-- | lib/src/lints/empty_let_in.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/src/lints/empty_let_in.rs b/lib/src/lints/empty_let_in.rs index 4b074e7..207d253 100644 --- a/lib/src/lints/empty_let_in.rs +++ b/lib/src/lints/empty_let_in.rs | |||
@@ -3,8 +3,7 @@ use crate::{Lint, Metadata, Report, Rule, Suggestion}; | |||
3 | use if_chain::if_chain; | 3 | use if_chain::if_chain; |
4 | use macros::lint; | 4 | use macros::lint; |
5 | use rnix::{ | 5 | use rnix::{ |
6 | types::{LetIn, TypedNode, | 6 | types::{LetIn, TypedNode, EntryHolder}, |
7 | EntryHolder}, | ||
8 | NodeOrToken, SyntaxElement, SyntaxKind, | 7 | NodeOrToken, SyntaxElement, SyntaxKind, |
9 | }; | 8 | }; |
10 | 9 | ||