Skip to content

Commit

Permalink
fix(lint/noUselessStringConcat): add missing fix_kind (#2748)
Browse files Browse the repository at this point in the history
  • Loading branch information
michellocana committed May 6, 2024
1 parent b9482ec commit c269016
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use biome_analyze::{
context::RuleContext, declare_rule, ActionCategory, Ast, Rule, RuleDiagnostic, RuleSource,
context::RuleContext, declare_rule, ActionCategory, Ast, FixKind, Rule, RuleDiagnostic,
RuleSource,
};
use biome_console::markup;
use biome_diagnostics::Applicability;
Expand Down Expand Up @@ -66,6 +67,7 @@ declare_rule! {
name: "noUselessStringConcat",
sources: &[RuleSource::Eslint("no-useless-concat")],
recommended: false,
fix_kind: FixKind::Unsafe,
}
}

Expand Down

0 comments on commit c269016

Please sign in to comment.