From e87994a2dc2ead39884048905d495f455cce75f1 Mon Sep 17 00:00:00 2001 From: Jonathan Bourdon Date: Wed, 25 Mar 2026 01:45:54 -0400 Subject: [PATCH] chore(editorconfig): prefer var over specific type --- apps/backend/.editorconfig | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/backend/.editorconfig b/apps/backend/.editorconfig index 05c2ded..8963e9a 100644 --- a/apps/backend/.editorconfig +++ b/apps/backend/.editorconfig @@ -29,9 +29,10 @@ dotnet_style_prefer_conditional_expression_over_assignment = true:suggestion dotnet_style_prefer_conditional_expression_over_return = true:suggestion csharp_prefer_braces = true:suggestion -csharp_style_var_for_built_in_types = false:suggestion + +csharp_style_var_for_built_in_types = true:suggestion csharp_style_var_when_type_is_apparent = true:suggestion -csharp_style_var_elsewhere = false:suggestion +csharp_style_var_elsewhere = true:suggestion csharp_prefer_simple_using_statement = true:suggestion csharp_style_prefer_switch_expression = true:suggestion csharp_style_prefer_primary_constructors = false:silent