Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion crates/oxc_linter/src/rule.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,9 @@ impl RuleFixMeta {
pub fn description(self) -> Cow<'static, str> {
match self {
Self::None => Cow::Borrowed("No auto-fix is available for this rule."),
Self::FixPending => Cow::Borrowed("An auto-fix is still under development."),
Self::FixPending => Cow::Borrowed(
"An auto-fix is planned for this rule, but not implemented at this time.",
),
Self::Fixable(kind) | Self::Conditional(kind) => {
// e.g. an auto-fix is available for this rule
// e.g. a suggestion is available for this rule
Expand Down
Loading