Skip to content

Commit 9a232ae

Browse files
committed
Add UseConsistentCasing
1 parent d1942a1 commit 9a232ae

6 files changed

+782
-384
lines changed

Engine/Formatter.cs

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ public static string Format<TCmdlet>(
4343
"PSUseConsistentIndentation",
4444
"PSAlignAssignmentStatement",
4545
"PSUseCorrectCasing",
46+
"PSUseConsistentCasing",
4647
"PSAvoidUsingCmdletAliases",
4748
"PSAvoidUsingDoubleQuotesForConstantString",
4849
};

Engine/Generic/DiagnosticRecord.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public string ScriptPath
7474
}
7575

7676
/// <summary>
77-
/// Returns the rule id for this record
77+
/// Returns the rule suppression id for this record
7878
/// </summary>
7979
public string RuleSuppressionID
8080
{
@@ -88,7 +88,7 @@ public string RuleSuppressionID
8888
/// </summary>
8989
public IEnumerable<CorrectionExtent> SuggestedCorrections
9090
{
91-
get { return suggestedCorrections; }
91+
get { return suggestedCorrections; }
9292
set { suggestedCorrections = value; }
9393
}
9494

@@ -100,14 +100,15 @@ public IEnumerable<CorrectionExtent> SuggestedCorrections
100100
public DiagnosticRecord()
101101
{
102102
}
103-
103+
104104
/// <summary>
105105
/// DiagnosticRecord: The constructor for DiagnosticRecord class that takes in suggestedCorrection
106106
/// </summary>
107107
/// <param name="message">A string about why this diagnostic was created</param>
108108
/// <param name="extent">The place in the script this diagnostic refers to</param>
109109
/// <param name="ruleName">The name of the rule that created this diagnostic</param>
110110
/// <param name="severity">The severity of this diagnostic</param>
111+
/// <param name="ruleId">The rule suppression ID of this diagnostic</param>
111112
/// <param name="scriptPath">The full path of the script file being analyzed</param>
112113
/// <param name="suggestedCorrections">The correction suggested by the rule to replace the extent text</param>
113114
public DiagnosticRecord(

0 commit comments

Comments
 (0)