Editorconfig Guide

Generate your .editorconfig file with ease.

Indent labels

csharp-indent-labels

Default value:

one_less_than_current

Possible values:

  • flush_left
  • one_less_than_current
  • no_change

Examples

flush_left
{
  if(cond)
  {
    goto error;
error:
    log.Error();
  }
}
one_less_than_current
{
  if(cond)
  {
    goto error;
  error:
    log.Error();
  }
}
no_change
{
  if(cond)
  {
    goto error;
    error:
    log.Error();
  }
}