From 930f649a08c0c2ff999d8805fbb5ca0d585c9014 Mon Sep 17 00:00:00 2001 From: Adam Date: Fri, 17 Jul 2020 08:49:02 +0200 Subject: [PATCH] Reverted editor config csharp_style_var_when_type_is_apparent back to false, see issue #854 --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index da50a378c..a0afeab7f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -42,7 +42,7 @@ dotnet_style_explicit_tuple_names = true:error [*.cs] # Prefer not to use "var", be explicit instead csharp_style_var_for_built_in_types = false:error -csharp_style_var_when_type_is_apparent = true:suggestion +csharp_style_var_when_type_is_apparent = false:suggestion csharp_style_var_elsewhere = false:suggestion # Prefer method-like constructs to have a block body