trim_trailing_whitespace
Remove trailing whitespace from each line.
| Value | Notes |
|---|---|
true |
|
false |
Default: true
trim_trailing_whitespace = true
namespace N;
public class Widget
{
public int Value { get; set; }
public int Double()
{
return Value * 2;
}
}
namespace N;
public class Widget
{
public int Value { get; set; }
public int Double()
{
return Value * 2;
}
}
trim_trailing_whitespace = false
namespace N;
public class Widget
{
public int Value { get; set; }
public int Double()
{
return Value * 2;
}
}
namespace N;
public class Widget
{
public int Value { get; set; }
public int Double()
{
return Value * 2;
}
}