Add "Sort items by trait definition"

This commit is contained in:
Maybe Waffle 2022-05-03 19:41:33 +04:00
parent d7ed351573
commit 2b20a05fc6
3 changed files with 307 additions and 0 deletions

View file

@ -170,6 +170,7 @@ mod handlers {
mod remove_unused_param;
mod reorder_fields;
mod reorder_impl;
mod reorder_impl_items;
mod replace_try_expr_with_match;
mod replace_derive_with_manual_impl;
mod replace_if_let_with_match;
@ -257,6 +258,7 @@ mod handlers {
remove_unused_param::remove_unused_param,
reorder_fields::reorder_fields,
reorder_impl::reorder_impl,
reorder_impl_items::reorder_impl_items,
replace_try_expr_with_match::replace_try_expr_with_match,
replace_derive_with_manual_impl::replace_derive_with_manual_impl,
replace_if_let_with_match::replace_if_let_with_match,