@@ -110,11 +110,11 @@ create_config! {
110
110
111
111
// Options that can change the source code beyond whitespace/blocks (somewhat linty things)
112
112
merge_derives: bool , true , true , "Merge multiple `#[derive(...)]` into a single one" ;
113
- use_try_shorthand: bool , false , false , "Replace uses of the try! macro by the ? shorthand" ;
113
+ use_try_shorthand: bool , false , true , "Replace uses of the try! macro by the ? shorthand" ;
114
+ use_field_init_shorthand: bool , false , true , "Use field initialization shorthand if possible" ;
115
+ force_explicit_abi: bool , true , true , "Always print the abi for extern items" ;
114
116
condense_wildcard_suffixes: bool , false , false , "Replace strings of _ wildcards by a single .. \
115
117
in tuple patterns";
116
- force_explicit_abi: bool , true , true , "Always print the abi for extern items" ;
117
- use_field_init_shorthand: bool , false , false , "Use field initialization shorthand if possible" ;
118
118
119
119
// Control options (changes the operation of rustfmt, rather than the formatting)
120
120
write_mode: WriteMode , WriteMode :: Overwrite , false ,
0 commit comments