belav / csharpier

CSharpier is an opinionated code formatter for c#.
https://csharpier.com
MIT License
1.41k stars 98 forks source link

Extra new line between cast and collection expression. #1334

Closed PetSerAl closed 2 months ago

PetSerAl commented 2 months ago

Input:

string.Join(' ', (int[])[000000000000000000000000000000, 000000000000000000000000000000, .. Enumerable.Empty<int>()]);

Output:

string.Join(
    ' ',
    (int[])

        [
            000000000000000000000000000000,
            000000000000000000000000000000,
            .. Enumerable.Empty<int>(),
        ]
);

Expected behavior:

string.Join(
    ' ',
    (int[])
        [
            000000000000000000000000000000,
            000000000000000000000000000000,
            .. Enumerable.Empty<int>(),
        ]
);