From d4b582076a26de29ac7325fc32466fb8b587ae44 Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Thu, 29 Feb 2024 09:24:17 -0600 Subject: [PATCH] chore: Change wrap setting for `=>` operator Change `resharper_wrap_before_arrow_with_expressions` to `false`. This is to force the `=>` operator to not be wrapped with the code to the right of it. --- .editorconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 2930b3d3..88d84dce 100644 --- a/.editorconfig +++ b/.editorconfig @@ -704,7 +704,7 @@ resharper_wrap_arguments_style = wrap_if_long resharper_wrap_around_elements = true resharper_wrap_array_initializer_style = chop_always resharper_wrap_base_clause_style = wrap_if_long -resharper_wrap_before_arrow_with_expressions = true +resharper_wrap_before_arrow_with_expressions = false resharper_wrap_before_binary_opsign = false resharper_wrap_before_binary_pattern_op = true resharper_wrap_before_colon = false @@ -1595,4 +1595,4 @@ ij_javascript_array_initializer_right_brace_on_new_line = false dotnet_diagnostic.ca1707.severity = none # CA1861: Avoid constant arrays as arguments -dotnet_diagnostic.CA1861.severity = none +dotnet_diagnostic.ca1861.severity = none