Enable UseProperAssertMethodsAnalyzer by default (#4076)

This commit is contained in:
Youssef Victor 2024-11-18 21:39:53 +01:00 коммит произвёл GitHub
Родитель d8002dfb7a
Коммит 9961c8ea53
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -5,4 +5,4 @@
Rule ID | Category | Severity | Notes
--------|----------|----------|-------
MSTEST0037 | `Usage` | Disabled | UseProperAssertMethodsAnalyzer
MSTEST0037 | `Usage` | Info | UseProperAssertMethodsAnalyzer

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

@ -63,7 +63,7 @@ internal sealed class UseProperAssertMethodsAnalyzer : DiagnosticAnalyzer
null,
Category.Usage,
DiagnosticSeverity.Info,
isEnabledByDefault: false);
isEnabledByDefault: true);
public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics { get; }
= ImmutableArray.Create(Rule);