0

How can I configure Uncrustify to format this:

entity.Property(e => e.CaseId)
.HasColumnName("CaseID")
.HasMaxLength(20);

like this:

entity.Property(e => e.CaseId)
    .HasColumnName("CaseID")
    .HasMaxLength(20);

Thanks.

Sako73
  • 9,957
  • 13
  • 57
  • 75

1 Answers1

0

This setting got the result:

# The number of spaces to indent a continued '->' or '.'
# Usually set to 0, 1, or indent_columns.
indent_member                   = 8        # number
Sako73
  • 9,957
  • 13
  • 57
  • 75