Skip to content

Commit

Permalink
Merge pull request #1264 from Noryoko/disable-SA1412
Browse files Browse the repository at this point in the history
Disable SA1412 by default
  • Loading branch information
sharwell committed Aug 21, 2015
2 parents 953f89d + 111562d commit 6ec18fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class SA1412StoreFilesAsUtf8 : DiagnosticAnalyzer
private const string HelpLink = "https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1412.md";

private static readonly DiagnosticDescriptor Descriptor =
new DiagnosticDescriptor(DiagnosticId, Title, MessageFormat, AnalyzerCategory.MaintainabilityRules, DiagnosticSeverity.Warning, AnalyzerConstants.EnabledByDefault, Description, HelpLink);
new DiagnosticDescriptor(DiagnosticId, Title, MessageFormat, AnalyzerCategory.MaintainabilityRules, DiagnosticSeverity.Warning, AnalyzerConstants.DisabledByDefault, Description, HelpLink);

private static readonly ImmutableArray<DiagnosticDescriptor> SupportedDiagnosticsValue =
ImmutableArray.Create(Descriptor);
Expand Down

0 comments on commit 6ec18fd

Please sign in to comment.