From a16c8c181ad55224b6103dd1be54c4da486c9d2e Mon Sep 17 00:00:00 2001 From: valdisiljuconoks Date: Sun, 23 Jul 2017 17:15:41 +0300 Subject: [PATCH] Fixed `var` styles --- .editorconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.editorconfig b/.editorconfig index 2a0fe618..ce3a640b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -39,9 +39,9 @@ dotnet_style_qualification_for_method = false:suggestion dotnet_style_qualification_for_event = false:suggestion # only use var when it's obvious what the variable type is -csharp_style_var_for_built_in_types = false:none -csharp_style_var_when_type_is_apparent = false:none -csharp_style_var_elsewhere = false:suggestion +csharp_style_var_for_built_in_types = true:suggestion +csharp_style_var_when_type_is_apparent = true:suggestion +csharp_style_var_elsewhere = true:suggestion # use language keywords instead of BCL types dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion