We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74bef92 commit 67983c5Copy full SHA for 67983c5
1 file changed
StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/ReadabilityRules/SA1133CodeFixProvider.cs
@@ -18,6 +18,10 @@ namespace StyleCop.Analyzers.ReadabilityRules
18
/// <summary>
19
/// Implements a code fix for <see cref="SA1133DoNotCombineAttributes"/>.
20
/// </summary>
21
+ /// <remarks>
22
+ /// The SA1133 code fix adds the new lines to make sure that it doesn't immediately introduces a SA1134 after code fixing,
23
+ /// but it will not / should not attempt to fix any preexisting SA1134 cases.
24
+ /// </remarks>
25
[ExportCodeFixProvider(LanguageNames.CSharp, Name = nameof(SA1133CodeFixProvider))]
26
[Shared]
27
internal class SA1133CodeFixProvider : CodeFixProvider
0 commit comments