Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SA1137 does not triggered in init accessor attribute list #3668

Closed
bjornhellander opened this issue Jun 17, 2023 · 0 comments · Fixed by #3669
Closed

SA1137 does not triggered in init accessor attribute list #3668

bjornhellander opened this issue Jun 17, 2023 · 0 comments · Fixed by #3669

Comments

@bjornhellander
Copy link
Contributor

class MyClass
{
    public int X
    {
        [Attr1]
         [Attr2] // SA1137
        set
        {
        }
    }

    public int Y
    {
        [Attr1]
         [Attr2] // No SA1137!
        init
        {
        }
    }
}

I expect SA1317 (Elements should have the same indentation) to trigger in both attribute lists above, but it does not trigger in the init accessor attribute list.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants