Skip to content

Commit b2e895d

Browse files
chore: fix rule order
1 parent 838daee commit b2e895d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rules.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,6 @@ fn get_all_rules_raw() -> Vec<Box<dyn LintRule>> {
256256
Box::new(ban_untagged_ignore::BanUntaggedIgnore),
257257
Box::new(ban_untagged_todo::BanUntaggedTodo),
258258
Box::new(ban_unused_ignore::BanUnusedIgnore),
259-
Box::new(jsx_button_has_type::JSXButtonHasType),
260259
Box::new(camelcase::Camelcase),
261260
Box::new(constructor_super::ConstructorSuper),
262261
Box::new(default_param_last::DefaultParamLast),
@@ -269,6 +268,7 @@ fn get_all_rules_raw() -> Vec<Box<dyn LintRule>> {
269268
Box::new(getter_return::GetterReturn),
270269
Box::new(guard_for_in::GuardForIn),
271270
Box::new(jsx_boolean_value::JSXBooleanValue),
271+
Box::new(jsx_button_has_type::JSXButtonHasType),
272272
Box::new(jsx_curly_braces::JSXCurlyBraces),
273273
Box::new(jsx_key::JSXKey),
274274
Box::new(jsx_no_children_prop::JSXNoChildrenProp),

0 commit comments

Comments
 (0)