diff --git a/src/config/mod.rs b/src/config/mod.rs index 301b9e06b01..8af2814ec21 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -70,11 +70,11 @@ create_config! { // Ordering reorder_extern_crates: bool, true, false, "Reorder extern crate statements alphabetically"; reorder_extern_crates_in_group: bool, true, false, "Reorder extern crate statements in group"; - reorder_imports: bool, false, false, "Reorder import statements alphabetically"; - reorder_imports_in_group: bool, false, false, "Reorder import statements in group"; + reorder_imports: bool, true, false, "Reorder import statements alphabetically"; + reorder_imports_in_group: bool, true, false, "Reorder import statements in group"; reorder_imported_names: bool, true, false, "Reorder lists of names in import statements alphabetically"; - reorder_modules: bool, false, false, "Reorder module statemtents alphabetically in group"; + reorder_modules: bool, true, false, "Reorder module statemtents alphabetically in group"; // Spaces around punctuation binop_separator: SeparatorPlace, SeparatorPlace::Front, false,