24 references to FixCategory
dotnet-format (24)
Analyzers\AnalyzerFormatter.cs (4)
17FixCategory.CodeStyle, 25FixCategory.Analyzers, 37public FixCategory Category { get; } 41FixCategory category,
CodeFormatter.cs (1)
40: await OpenMSBuildWorkspaceAsync(formatOptions.WorkspaceFilePath, formatOptions.WorkspaceType, formatOptions.NoRestore, formatOptions.FixCategory != FixCategory.Whitespace, formatOptions.BinaryLogPath, logWorkspaceWarnings, logger, formatOptions.TargetFramework, cancellationToken).ConfigureAwait(false);
Commands\FormatAnalyzersCommand.cs (1)
56formatOptions = formatOptions with { FixCategory = FixCategory.Analyzers };
Commands\FormatStyleCommand.cs (1)
56formatOptions = formatOptions with { FixCategory = FixCategory.CodeStyle };
Commands\FormatWhitespaceCommand.cs (1)
69formatOptions = formatOptions with { FixCategory = FixCategory.Whitespace };
Commands\RootFormatCommand.cs (3)
60formatOptions = formatOptions with { FixCategory = FixCategory.Whitespace | FixCategory.CodeStyle | FixCategory.Analyzers };
FormatOptions.cs (1)
15FixCategory FixCategory,
Formatters\CharsetFormatter.cs (2)
20public override FixCategory Category => FixCategory.Whitespace;
Formatters\DocumentFormatter.cs (1)
27public abstract FixCategory Category { get; }
Formatters\EndOfLineFormatter.cs (2)
17public override FixCategory Category => FixCategory.Whitespace;
Formatters\FinalNewlineFormatter.cs (2)
16public override FixCategory Category => FixCategory.Whitespace;
Formatters\ICodeFormatter.cs (1)
14FixCategory Category { get; }
Formatters\OrganizeImportsFormatter.cs (2)
21public override FixCategory Category => FixCategory.CodeStyle;
Formatters\WhitespaceFormatter.cs (2)
20public override FixCategory Category => FixCategory.Whitespace;