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
Code in the following style produces an error from SA1505 on the namespace which cannot be repressed with [SuppressMessage("StyleCop.CSharp.LayoutRules", "SA1505:OpeningCurlyBracketsMustNotBeFollowedByBlankLine", Justification = "Reviewed.")]
namespace Shared.Code.Enum
{
#region Enumerations
/// <summary>
/// Enum of statuses
/// </summary>
public enum Status
{
...
}
#endregion Enumerations
}
The text was updated successfully, but these errors were encountered:
Code in the following style produces an error from SA1505 on the namespace which cannot be repressed with [SuppressMessage("StyleCop.CSharp.LayoutRules", "SA1505:OpeningCurlyBracketsMustNotBeFollowedByBlankLine", Justification = "Reviewed.")]
The text was updated successfully, but these errors were encountered: