Fix diagnostic IDs in .editorconfig (#457)

This commit is contained in:
Mike Rousos 2021-04-24 16:19:17 -04:00 коммит произвёл GitHub
Родитель 832a8937a9
Коммит c3baa1e810
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 5 добавлений и 4 удалений

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

@ -258,11 +258,11 @@ dotnet_diagnostic.SA1502.severity = none
# CA1303: Do not pass literals as localized parameters
dotnet_diagnostic.CA1303.severity = none
# CA1600: Elements should be documented
dotnet_diagnostic.CA1600.severity = none
# SA1600: Elements should be documented
dotnet_diagnostic.SA1600.severity = none
# CA1601: Partial elements should be documented
dotnet_diagnostic.CA1601.severity = none
# SA1601: Partial elements should be documented
dotnet_diagnostic.SA1601.severity = none
# SA1633: The file header is missing or not located at the top of the file
dotnet_diagnostic.SA1633.severity = none

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

@ -54,6 +54,7 @@ namespace Microsoft.DotNet.UpgradeAssistant.Steps.Razor
/// <param name="analyzers">Analyzers to use when analyzing source code in the Razor documents.</param>
/// <param name="codeFixProviders">Code fix providers to use when fixing diagnostics found in the Razor documents.</param>
/// <param name="textMatcher">The text matching service to use for correlating old sections of text in Razor documents with updated texts.</param>
/// <param name="textReplacer">The text replacing service to use for updating replaced texts in the Razor documents.</param>
/// <param name="logger">An ILogger to log diagnostics.</param>
public RazorSourceUpdater(IEnumerable<DiagnosticAnalyzer> analyzers, IEnumerable<CodeFixProvider> codeFixProviders, ITextMatcher textMatcher, ITextReplacer textReplacer, ILogger<RazorSourceUpdater> logger)
{