Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.16 KB

SA1211.md

File metadata and controls

39 lines (29 loc) · 1.16 KB

SA1211

TypeName SA1211UsingAliasDirectivesMustBeOrderedAlphabeticallyByAliasName
CheckId SA1211
Category Ordering Rules

Cause

The using-alias directives within a C# code file are not sorted alphabetically by alias name.

Rule description

A violation of this rule occurs when the using-alias directives are not sorted alphabetically by alias name. Sorting the using-alias directives alphabetically can make the code cleaner and easier to read, and can help make it easier to identify the namespaces that are being used by the code.

How to fix violations

To fix an instance of this violation, order the using-alias directives alphabetically by alias name.

How to suppress violations

[SuppressMessage("StyleCop.CSharp.OrderingRules", "SA1211:UsingAliasDirectivesMustBeOrderedAlphabeticallyByAliasName", Justification = "Reviewed.")]
#pragma warning disable SA1211 // UsingAliasDirectivesMustBeOrderedAlphabeticallyByAliasName
#pragma warning restore SA1211 // UsingAliasDirectivesMustBeOrderedAlphabeticallyByAliasName