Space after comma with line break
I'd like to ask how to remove space after comma, when there is line break
so e.g in Enum
public enum Test
{
First = 1,
Second = 2,
}
After comma there is a white space on code cleanup. I would like to remove this kind of comma (everywhere there is a line break)
Please sign in to leave a comment.