diff options
author | Akshay <[email protected]> | 2021-10-02 16:23:19 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2021-10-02 16:23:19 +0100 |
commit | c5c4b55c2b3a3fb824c3fd64e33bb30f1b011b71 (patch) | |
tree | be3330d728ca0dca70a42c54aaf64e456ffc2851 /lib/src/lints | |
parent | 7a430237eea3e1d296e0d69e40f154a3727ba2fc (diff) |
new lint: legacy_let_syntax
Diffstat (limited to 'lib/src/lints')
-rw-r--r-- | lib/src/lints/legacy_let_syntax.rs | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/lib/src/lints/legacy_let_syntax.rs b/lib/src/lints/legacy_let_syntax.rs new file mode 100644 index 0000000..c5588e2 --- /dev/null +++ b/lib/src/lints/legacy_let_syntax.rs | |||
@@ -0,0 +1,55 @@ | |||
1 | use crate::{make, Lint, Metadata, Report, Rule, Suggestion}; | ||
2 | |||
3 | use if_chain::if_chain; | ||
4 | use macros::lint; | ||
5 | use rnix::{ | ||
6 | types::{EntryHolder, Ident, Key, LegacyLet, TokenWrapper, TypedNode}, | ||
7 | NodeOrToken, SyntaxElement, SyntaxKind, | ||
8 | }; | ||
9 | |||
10 | #[lint( | ||
11 | name = "legacy let syntax", | ||
12 | note = "Using undocumented `let` syntax", | ||
13 | code = 5, | ||
14 | match_with = SyntaxKind::NODE_LEGACY_LET | ||
15 | )] | ||
16 | struct ManualInherit; | ||
17 | |||
18 | impl Rule for ManualInherit { | ||
19 | fn validate(&self, node: &SyntaxElement) -> Option<Report> { | ||
20 | if_chain! { | ||
21 | if let NodeOrToken::Node(node) = node; | ||
22 | if let Some(legacy_let) = LegacyLet::cast(node.clone()); | ||
23 | |||
24 | if legacy_let | ||
25 | .entries() | ||
26 | .find(|kv| matches!(kv.key(), Some(k) if key_is_ident(&k, "body"))) | ||
27 | .is_some(); | ||
28 | |||
29 | then { | ||
30 | let inherits = legacy_let.inherits(); | ||
31 | let entries = legacy_let.entries(); | ||
32 | let attrset = make::attrset(inherits, entries, true); | ||
33 | let parenthesized = make::parenthesize(&attrset.node()); | ||
34 | let selected = make::select(parenthesized.node(), &make::ident("body").node()); | ||
35 | |||
36 | let at = node.text_range(); | ||
37 | let message = "Prefer `rec` over undocumented `let` syntax"; | ||
38 | let replacement = selected.node().clone(); | ||
39 | |||
40 | Some(Self::report().suggest(at, message, Suggestion::new(at, replacement))) | ||
41 | } else { | ||
42 | None | ||
43 | } | ||
44 | } | ||
45 | } | ||
46 | } | ||
47 | |||
48 | fn key_is_ident(key_path: &Key, ident: &str) -> bool { | ||
49 | if let Some(key_node) = key_path.path().next() { | ||
50 | if let Some(key) = Ident::cast(key_node) { | ||
51 | return key.as_str() == ident; | ||
52 | } | ||
53 | } | ||
54 | false | ||
55 | } | ||