Skip to content

Commit edc00c9

Browse files
committed
preview->stable
1 parent 0370d8a commit edc00c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ruff_linter/src/codes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1006,7 +1006,7 @@ pub fn code_to_rule(linter: Linter, code: &str) -> Option<(RuleGroup, Rule)> {
10061006
(Ruff, "034") => (RuleGroup::Stable, rules::ruff::rules::UselessIfElse),
10071007
(Ruff, "035") => (RuleGroup::Removed, rules::ruff::rules::RuffUnsafeMarkupUse),
10081008
(Ruff, "036") => (RuleGroup::Preview, rules::ruff::rules::NoneNotAtEndOfUnion),
1009-
(Ruff, "037") => (RuleGroup::Preview, rules::ruff::rules::UnnecessaryEmptyIterableWithinDequeCall),
1009+
(Ruff, "037") => (RuleGroup::Stable, rules::ruff::rules::UnnecessaryEmptyIterableWithinDequeCall),
10101010
(Ruff, "038") => (RuleGroup::Preview, rules::ruff::rules::RedundantBoolLiteral),
10111011
(Ruff, "039") => (RuleGroup::Preview, rules::ruff::rules::UnrawRePattern),
10121012
(Ruff, "040") => (RuleGroup::Stable, rules::ruff::rules::InvalidAssertMessageLiteralArgument),

0 commit comments

Comments
 (0)