From 7467b23a8dab65c94d620df2939c26d5996bc3fd Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 10 May 2023 08:16:33 +1000 Subject: [PATCH] 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`. --- rustfmt.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustfmt.toml b/rustfmt.toml index 4cb7214..5650843 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -53,7 +53,7 @@ enum_discrim_align_threshold = 0 match_arm_blocks = false # Default true match_arm_leading_pipes = "Never" force_multiline_blocks = false -fn_args_layout = "Tall" +fn_params_layout = "Tall" brace_style = "SameLineWhere" control_brace_style = "AlwaysSameLine" trailing_semicolon = true