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
It seems like both analyzers rely to each other to report a warning and no warning is generated at all. Here's a simple example (StyleCop.Analyzers 1.0.0.8):
#pragma warning disable SA1401// Fields must be privatepublicclassClass1{// no warning herepublicreadonlyintsa1304or1307shouldBeReportedHere;}
The text was updated successfully, but these errors were encountered:
No, I just wanted to report a bug. However, I think the fix is just to remove || declaration.Modifiers.Any(SyntaxKind.ReadOnlyKeyword) in SA1307AccessibleFieldsMustBeginWithUpperCaseLetter.cs, line 63 (provided that SA1307 should have priority in this case).
Hi,
It seems like both analyzers rely to each other to report a warning and no warning is generated at all. Here's a simple example (StyleCop.Analyzers 1.0.0.8):
The text was updated successfully, but these errors were encountered: