-
Notifications
You must be signed in to change notification settings - Fork 23
SA1502
TypeName |
ElementMustNotBeOnSingleLine |
CheckId |
SA1502 |
Category |
Layout Rules |
A C# element containing opening and closing curly brackets is written completely on a single line.
A violation of this rule occurs when an element that is wrapped in opening and closing curly brackets is written on a single line. For example:
public object Method() { return null; }
When StyleCop checks this code, a violation of this rule will occur because the entire method is written on one line. The method should be written across multiple lines, with the opening and closing curly brackets each on their own line, as follows:
public object Method()
{
return null;
}
As an exception to this rule, accessors within properties, events, or indexers are allowed to be written all on a single line, as long as the accessor is short.
To fix a violation of this rule, rewrite the element so that it expands across multiple lines.
[SuppressMessage("StyleCop.CSharp.LayoutRules", "SA1502:ElementMustNotBeOnSingleLine", Justification = "Reviewed.")]
- - SA0102 - Clean Install
- - Download
- - Documentation Rules - Layout Rules - Maintainability Rules - Naming Rules - Ordering Rules - Readability Rules - Spacing Rules - Suppressions
- - Adding a custom StyleCop settings page - Adding custom rule settings - Authoring a custom styleCop rule - Authoring rules metadata - Custom CSharp Language Service - Custom MSBuild Integration - Hosting StyleCop in a Custom Environment - Installing a Custom Rule - Integrating StyleCop Into Build Environments - Integrating StyleCop into MSBuild - Writing Custom Rules for StyleCop