indent_style
Indent with spaces or tabs.
| Value | Notes |
|---|---|
space |
|
tab |
Default: space
indent_style = space
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;
}
}
indent_style = tab
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;
}
}