1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
use crate::{make, Lint, Metadata, Report, Rule, Suggestion};
use if_chain::if_chain;
use macros::lint;
use rnix::{
types::{Dynamic, TypedNode},
NodeOrToken, SyntaxElement, SyntaxKind,
};
#[lint(
name = "unquoted splice",
note = "Found unquoted splice expression",
code = 9,
match_with = SyntaxKind::NODE_DYNAMIC
)]
struct UnquotedSplice;
impl Rule for UnquotedSplice {
fn validate(&self, node: &SyntaxElement) -> Option<Report> {
if_chain! {
if let NodeOrToken::Node(node) = node;
if Dynamic::cast(node.clone()).is_some();
then {
let at = node.text_range();
let replacement = make::quote(&node).node().clone();
let message = "Consider quoting this splice expression";
Some(Self::report().suggest(at, message, Suggestion::new(at, replacement)))
} else {
None
}
}
}
}
|