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
To improve the readability of the code, StyleCop requires blank lines in certain situations, and prohibits blank lines in other situations. This results in a consistent visual pattern across the code, which can improve recognition and readability of unfamiliar code.
A violation of this rule occurs when an opening brace is followed by a blank line. For example:
publicboolEnabled{get{returnthis.enabled;}}
The code above would generate two instances of this violation, since there are two places where opening braces are followed by blank lines.
CodeFactor found an issue: An opening curly bracket must not be followed by a blank line.
It's currently on:
API.boilerpalte.Infra\Persistence\EF\ApiBoilerplateContext.cs:15
To improve the readability of the code, StyleCop requires blank lines in certain situations, and prohibits blank lines in other situations. This results in a consistent visual pattern across the code, which can improve recognition and readability of unfamiliar code.
A violation of this rule occurs when an opening brace is followed by a blank line. For example:
The code above would generate two instances of this violation, since there are two places where opening braces are followed by blank lines.
External links:
https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1505.md
Have your own StyleCop rules? No problem, simply add Settings.StyleCop file to the root of this branch.
issue code: SA1505
Found in API.boilerpalte.Infra\Persistence\EF\ApiBoilerplateContext.cs:15
The text was updated successfully, but these errors were encountered: