CSharpier is an opinionated code formatter for c#. It uses Roslyn to parse your code and re-prints it using its own rules. The printing process was ported fromprettierbut has evolved over time. CSharpier provides a few basic options that affect formatting and has no plans to add more. ...
CSharpier is an opinionated code formatter for c#. It uses Roslyn to parse your code and re-prints it using its own rules. The printing process was ported fromprettierbut has evolved over time. CSharpier provides a few basic options that affect formatting and has no plans to add more. ...
public class CodeFormatterResult { public string Code { get; } public IEnumerable<Diagnostic> CompilationErrors { get; } } This is a breaking change. There were also a number of types that should not have been public that were made internal. Thanks go to @verdverm for the suggestion What'...
CSharpier is an opinionated code formatter for c#. It uses Roslyn to parse your code and re-prints it using its own rules. The printing process was ported fromprettierbut has evolved over time. CSharpier provides a few basic options that affect formatting and has no plans to add more. ...