8 references to FormattingDiagnosticId
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (3)
Diagnostics\Suppression\RemoveUnnecessaryPragmaSuppressionsTests.cs (1)
194IDEDiagnosticIds.FormattingDiagnosticId,
Diagnostics\Suppression\SuppressionTests.cs (2)
763var specificDiagnosticOptions = new[] { KeyValuePairUtil.Create(IDEDiagnosticIds.FormattingDiagnosticId, ReportDiagnostic.Warn) }; 1005var specificDiagnosticOptions = new[] { KeyValuePairUtil.Create(IDEDiagnosticIds.FormattingDiagnosticId, ReportDiagnostic.Warn) };
Microsoft.CodeAnalysis.Features (5)
AbstractFormattingAnalyzer.cs (1)
17IDEDiagnosticIds.FormattingDiagnosticId,
AbstractRemoveUnnecessaryPragmaSuppressionsDiagnosticAnalyzer.cs (1)
335case IDEDiagnosticIds.FormattingDiagnosticId:
CodeFixes\Suppression\AbstractSuppressionCodeFixProvider.cs (1)
82if (diagnostic.Id == IDEDiagnosticIds.FormattingDiagnosticId)
CodeFixes\Suppression\SuppressionHelpers.cs (1)
34return diagnostic.Id != IDEDiagnosticIds.FormattingDiagnosticId;
FormattingCodeFixProvider.cs (1)
22=> ImmutableArray.Create(IDEDiagnosticIds.FormattingDiagnosticId);