rustfmt: Use now config option fn_params_layout
`rustfmt` warns: Warning: the `fn_args_layout` option is deprecated. Use `fn_params_layout`. instead As suggested, use now config option `fn_params_layout`.
This commit is contained in:
parent
be2999ad58
commit
7467b23a8d
|
@ -53,7 +53,7 @@ enum_discrim_align_threshold = 0
|
||||||
match_arm_blocks = false # Default true
|
match_arm_blocks = false # Default true
|
||||||
match_arm_leading_pipes = "Never"
|
match_arm_leading_pipes = "Never"
|
||||||
force_multiline_blocks = false
|
force_multiline_blocks = false
|
||||||
fn_args_layout = "Tall"
|
fn_params_layout = "Tall"
|
||||||
brace_style = "SameLineWhere"
|
brace_style = "SameLineWhere"
|
||||||
control_brace_style = "AlwaysSameLine"
|
control_brace_style = "AlwaysSameLine"
|
||||||
trailing_semicolon = true
|
trailing_semicolon = true
|
||||||
|
|
Loading…
Reference in New Issue