Skip to content

Commit

Permalink
Fix mod.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
jiwonz committed Sep 3, 2024
1 parent bdb4842 commit e8b6ab2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@ expression: rule_names
"remove_unused_variable",
"remove_unused_while",
"rename_variables",
"remove_continue"
"remove_continue",
"remove_if_expression"
]
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ expression: rules
"remove_nil_declaration",
"rename_variables",
"remove_function_call_parens",
"remove_continue"
"remove_continue",
"remove_if_expression"
]
1 change: 0 additions & 1 deletion tests/rule_tests/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -313,5 +313,4 @@ mod remove_unused_if_branch;
mod remove_unused_variable;
mod remove_unused_while;
mod rename_variables;
mod remove_if_expression;
mod remove_continue;

0 comments on commit e8b6ab2

Please sign in to comment.