Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Conaclos committed May 17, 2024
1 parent 1d38cf1 commit 24b753c
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,14 @@ impl Rule for UseNumberToFixedDigitsArgument {

mutation.replace_node::<JsCallArgumentList>(previous_args, new_args);

Some(JsRuleAction {
category: ActionCategory::QuickFix,
applicability: Applicability::MaybeIncorrect,
message: markup! {
Some(JsRuleAction::new(
ActionCategory::QuickFix,
Applicability::MaybeIncorrect,
markup! {
"Add explicit digits argument to "<Emphasis>"toFixed"</Emphasis>" method."
}
.to_owned(),
mutation,
})
))
}
}

0 comments on commit 24b753c

Please sign in to comment.