Loading

max_line_length

Column target for reflow. off disables reflow entirely and selects preservation mode.

Value Notes
off
<integer> Any integer.

Default: off

max_line_length = off
		
using System.Text;

namespace N;

public class Widget
{
    public string Build()
    {
        return new StringBuilder().Append("Hello").Append(", ").Append("World").Append("!").ToString();
    }
}
		
using System.Text;

namespace N;

public class Widget
{
    public string Build()
    {
        return new StringBuilder().Append("Hello").Append(", ").Append("World").Append("!").ToString();
    }
}