* Convert to auto property

* Another field

* revert

* suppress
This commit is contained in:
Jakub Jareš 2024-10-03 16:54:38 +02:00 коммит произвёл GitHub
Родитель c02e98d334
Коммит 5e82d232be
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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