You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
bjornhellander
added a commit
to bjornhellander/StyleCopAnalyzers
that referenced
this issue
Jun 17, 2023
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.
The text was updated successfully, but these errors were encountered: