2 implementations of ICodeFormatter
dotnet-format (2)
Analyzers\AnalyzerFormatter.cs (1)
12internal class AnalyzerFormatter : ICodeFormatter
Formatters\DocumentFormatter.cs (1)
14internal abstract class DocumentFormatter : ICodeFormatter
12 references to ICodeFormatter
dotnet-format (2)
CodeFormatter.cs (2)
15private static readonly ImmutableArray<ICodeFormatter> s_codeFormatters = ImmutableArray.Create<ICodeFormatter>(
dotnet-format.UnitTests (10)
Analyzers\CodeStyleAnalyzerFormatterTests.cs (1)
11private protected override ICodeFormatter Formatter => AnalyzerFormatter.CodeStyleFormatter;
Analyzers\FilterDiagnosticsTests.cs (1)
208private protected override ICodeFormatter Formatter { get; }
Analyzers\ThirdPartyAnalyzerFormatterTests.cs (1)
19private protected override ICodeFormatter Formatter => AnalyzerFormatter.ThirdPartyFormatter;
Formatters\AbstractFormatterTests.cs (1)
56private protected abstract ICodeFormatter Formatter { get; }
Formatters\CharsetFormatterTests.cs (1)
9private protected override ICodeFormatter Formatter => new CharsetFormatter();
Formatters\EndOfLineFormatterTests.cs (1)
9private protected override ICodeFormatter Formatter => new EndOfLineFormatter();
Formatters\FinalNewlineFormatterTests.cs (1)
9private protected override ICodeFormatter Formatter => new FinalNewlineFormatter();
Formatters\FormattedFilesTests.cs (1)
16private protected override ICodeFormatter Formatter => new FinalNewlineFormatter();
Formatters\OrganizeImportsFormatterTests.cs (1)
9private protected override ICodeFormatter Formatter => new OrganizeImportsFormatter();
Formatters\UnnecessaryImportsFormatterTests.cs (1)
19private protected override ICodeFormatter Formatter => AnalyzerFormatter.CodeStyleFormatter;