From c8f1628bcfce589e3165e171ecf8a8ce5b3c688f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Jare=C5=A1?= Date: Thu, 3 Oct 2024 16:54:38 +0200 Subject: [PATCH] Convert to auto property (#10365) * Convert to auto property * Another field * revert * suppress --- .editorconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index b78e7a35b8..39f9dc14c9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -105,8 +105,8 @@ dotnet_style_prefer_compound_assignment = true:warning # not default, default i dotnet_diagnostic.IDE0074.severity = warning # not default, set in accordance to previous setting # IDE0032: Use auto property -dotnet_style_prefer_auto_properties = true:warning # not default, default is true:suggestion, increased severity to ensure it is used -dotnet_diagnostic.IDE0032.severity = warning # not default, set in accordance to previous setting +dotnet_style_prefer_auto_properties = true:suggestion # not default, default is true:suggestion, increased severity to ensure it is used +dotnet_diagnostic.IDE0032.severity = suggestion # not default, set in accordance to previous setting # Field preferences dotnet_style_readonly_field = true:warning