-
-
Notifications
You must be signed in to change notification settings - Fork 146
Open
Milestone
Description
Input:
bool excluded = false, included = false; Output:
// Formatted by 0.27
bool excluded = false,
included = false;Expected behavior:
I think the CSharpier formatting defeats the intent of putting multiple variable declarations on a single line.
Unless the line is too long, CSharpier should not break it automatically.
Also, if the line overflows, I guess it wouldn't be nice to have one variable per line, but rather to put as many as possible.
Degenerate case:
int i, j, k;
// Formatted by 0.27
int i,
j,
k;If I was going for this style, I'd rather type the following:
int i;
int j;
int k;Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels