Skip to content

Commit b5aba78

Browse files
committed
Reorder imports by default
1 parent a0e063a commit b5aba78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/config/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ create_config! {
7070
// Ordering
7171
reorder_extern_crates: bool, true, false, "Reorder extern crate statements alphabetically";
7272
reorder_extern_crates_in_group: bool, true, false, "Reorder extern crate statements in group";
73-
reorder_imports: bool, false, false, "Reorder import statements alphabetically";
74-
reorder_imports_in_group: bool, false, false, "Reorder import statements in group";
73+
reorder_imports: bool, true, false, "Reorder import statements alphabetically";
74+
reorder_imports_in_group: bool, true, false, "Reorder import statements in group";
7575
reorder_imported_names: bool, true, false,
7676
"Reorder lists of names in import statements alphabetically";
77-
reorder_modules: bool, false, false, "Reorder module statemtents alphabetically in group";
77+
reorder_modules: bool, true, false, "Reorder module statemtents alphabetically in group";
7878

7979
// Spaces around punctuation
8080
binop_separator: SeparatorPlace, SeparatorPlace::Front, false,

0 commit comments

Comments
 (0)