belav / csharpier

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

`csharpier-ignore` comment not respected in certain scopes #1342

Closed jamesfoster-excelpoint closed 2 months ago

jamesfoster-excelpoint commented 2 months ago

Input:

return new MyClass
{
    // csharpier-ignore-start
    MyVeryVeryVeryVeryVeryVeryLongProperty = someVeryVeryVeryVeryVeryVeryVeryLongVariable
    // csharpier-ignore-end
}

Output:

return new MyClass
{
    // csharpier-ignore-start
    MyVeryVeryVeryVeryVeryVeryLongProperty =
        someVeryVeryVeryVeryVeryVeryVeryLongVariable
    // csharpier-ignore-end
}

Expected behavior:

Respect the "ignore" comments inside of an object initialiser.

jamesfoster-excelpoint commented 2 months ago

Thanks ❤️