refactor(linter): rename vars from ast_node_id to node_id (#6305)

Style nit. We renamed `AstNodeId` to `NodeId`, so rename vars from `ast_node_id` to `node_id` too.
This commit is contained in:
overlookmotel 2024-10-06 08:35:51 +00:00
parent 020bb80b65
commit 642725cd7d
2 changed files with 4 additions and 4 deletions

View file

@ -98,8 +98,8 @@ impl Rule for MaxClassesPerFile {
return;
}
let ast_node_id = ctx.semantic().classes().get_node_id(ClassId::from(self.max));
let span = if let AstKind::Class(class) = ctx.nodes().kind(ast_node_id) {
let node_id = ctx.semantic().classes().get_node_id(ClassId::from(self.max));
let span = if let AstKind::Class(class) = ctx.nodes().kind(node_id) {
class.span
} else {
Span::new(0, 0)

View file

@ -142,12 +142,12 @@ impl NoDuplicateHooks {
}
let hook_name = jest_fn_call.name.to_string();
let parent_ast_node_id =
let parent_node_id =
match ctx.nodes().ancestors(node.id()).find(|n| hook_contexts.contains_key(n)) {
Some(n) => Some(n),
_ => Some(root_node_id),
};
let Some(parent_id) = parent_ast_node_id else {
let Some(parent_id) = parent_node_id else {
return;
};