Skip to content

Commit

Permalink
feat(lint/noIrregularWhitespace): remove dbg call
Browse files Browse the repository at this point in the history
  • Loading branch information
michellocana committed Jul 5, 2024
1 parent 258bffb commit 0156473
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ impl Rule for NoIrregularWhitespace {

fn run(ctx: &RuleContext<Self>) -> Self::Signals {
let node = ctx.query();
let ranges = get_irregular_whitespace(node);
dbg!(ranges.clone());
ranges
get_irregular_whitespace(node)
}

fn diagnostic(_ctx: &RuleContext<Self>, range: &Self::State) -> Option<RuleDiagnostic> {
Expand Down

0 comments on commit 0156473

Please sign in to comment.