Skip to content

Commit

Permalink
fix(linter): add missing fix kind for solid rule (#2519)
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico authored Apr 19, 2024
1 parent 2c4d6e7 commit 00bae2a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::JsRuleAction;
use biome_analyze::context::RuleContext;
use biome_analyze::{declare_rule, ActionCategory, Ast, Rule, RuleDiagnostic, RuleSource};
use biome_analyze::{declare_rule, ActionCategory, Ast, FixKind, Rule, RuleDiagnostic, RuleSource};
use biome_console::markup;
use biome_diagnostics::Applicability;
use biome_js_factory::make::{jsx_ident, jsx_name};
Expand Down Expand Up @@ -31,6 +31,7 @@ declare_rule! {
name: "noReactSpecificProps",
sources: &[RuleSource::EslintSolid("no-react-specific-props")],
recommended: false,
fix_kind: FixKind::Safe,
}
}

Expand Down

0 comments on commit 00bae2a

Please sign in to comment.