We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 159a394 commit e0a5cb6Copy full SHA for e0a5cb6
Rules/UseIdenticalParametersDSC.cs
@@ -53,7 +53,7 @@ public IEnumerable<DiagnosticRecord> AnalyzeDSCResource(Ast ast, string fileName
53
if (funcParamAsts.Count() != funcParamAsts2.Count())
54
{
55
yield return new DiagnosticRecord(string.Format(CultureInfo.CurrentCulture, Strings.UseIdenticalParametersDSCError),
56
- firstFunc.Extent, GetName(), DiagnosticSeverity.Information, fileName);
+ firstFunc.Extent, GetName(), DiagnosticSeverity.Error, fileName);
57
}
58
59
foreach (ParameterAst paramAst in funcParamAsts)
0 commit comments