Skip to content

Commit 29a2537

Browse files
Jaykulandyleejordan
authored andcommitted
Correct casing for keywords and operators
1 parent 004c8e0 commit 29a2537

File tree

5 files changed

+256
-154
lines changed

5 files changed

+256
-154
lines changed

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(

Rules/Strings.resx

+37-31
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<root>
3-
<!--
4-
Microsoft ResX Schema
5-
3+
<!--
4+
Microsoft ResX Schema
5+
66
Version 2.0
7-
8-
The primary goals of this format is to allow a simple XML format
9-
that is mostly human readable. The generation and parsing of the
10-
various data types are done through the TypeConverter classes
7+
8+
The primary goals of this format is to allow a simple XML format
9+
that is mostly human readable. The generation and parsing of the
10+
various data types are done through the TypeConverter classes
1111
associated with the data types.
12-
12+
1313
Example:
14-
14+
1515
... ado.net/XML headers & schema ...
1616
<resheader name="resmimetype">text/microsoft-resx</resheader>
1717
<resheader name="version">2.0</resheader>
@@ -26,36 +26,36 @@
2626
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
2727
<comment>This is a comment</comment>
2828
</data>
29-
30-
There are any number of "resheader" rows that contain simple
29+
30+
There are any number of "resheader" rows that contain simple
3131
name/value pairs.
32-
33-
Each data row contains a name, and value. The row also contains a
34-
type or mimetype. Type corresponds to a .NET class that support
35-
text/value conversion through the TypeConverter architecture.
36-
Classes that don't support this are serialized and stored with the
32+
33+
Each data row contains a name, and value. The row also contains a
34+
type or mimetype. Type corresponds to a .NET class that support
35+
text/value conversion through the TypeConverter architecture.
36+
Classes that don't support this are serialized and stored with the
3737
mimetype set.
38-
39-
The mimetype is used for serialized objects, and tells the
40-
ResXResourceReader how to depersist the object. This is currently not
38+
39+
The mimetype is used for serialized objects, and tells the
40+
ResXResourceReader how to depersist the object. This is currently not
4141
extensible. For a given mimetype the value must be set accordingly:
42-
43-
Note - application/x-microsoft.net.object.binary.base64 is the format
44-
that the ResXResourceWriter will generate, however the reader can
42+
43+
Note - application/x-microsoft.net.object.binary.base64 is the format
44+
that the ResXResourceWriter will generate, however the reader can
4545
read any of the formats listed below.
46-
46+
4747
mimetype: application/x-microsoft.net.object.binary.base64
48-
value : The object must be serialized with
48+
value : The object must be serialized with
4949
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
5050
: and then encoded with base64 encoding.
51-
51+
5252
mimetype: application/x-microsoft.net.object.soap.base64
53-
value : The object must be serialized with
53+
value : The object must be serialized with
5454
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
5555
: and then encoded with base64 encoding.
5656
5757
mimetype: application/x-microsoft.net.object.bytearray.base64
58-
value : The object must be serialized into a byte array
58+
value : The object must be serialized into a byte array
5959
: using a System.ComponentModel.TypeConverter
6060
: and then encoded with base64 encoding.
6161
-->
@@ -1096,14 +1096,23 @@
10961096
<value>Use exact casing of cmdlet/function/parameter name.</value>
10971097
</data>
10981098
<data name="UseCorrectCasingDescription" xml:space="preserve">
1099-
<value>For better readability and consistency, use the exact casing of the cmdlet/function/parameter.</value>
1099+
<value>For better readability and consistency, use consistent casing.</value>
11001100
</data>
11011101
<data name="UseCorrectCasingError" xml:space="preserve">
11021102
<value>Function/Cmdlet '{0}' does not match its exact casing '{1}'.</value>
11031103
</data>
11041104
<data name="UseCorrectCasingName" xml:space="preserve">
11051105
<value>UseCorrectCasing</value>
11061106
</data>
1107+
<data name="UseCorrectCasingKeywordError" xml:space="preserve">
1108+
<value>Keyword '{0}' does not match the expected case '{1}'.</value>
1109+
</data>
1110+
<data name="UseCorrectCasingOperatorError" xml:space="preserve">
1111+
<value>Operator '{0}' does not match the expected case '{1}'.</value>
1112+
</data>
1113+
<data name="UseCorrectCasingParameterError" xml:space="preserve">
1114+
<value>Parameter '{0}' of function/cmdlet '{1}' does not match its exact casing '{2}'.</value>
1115+
</data>
11071116
<data name="UseProcessBlockForPipelineCommandCommonName" xml:space="preserve">
11081117
<value>Use process block for command that accepts input from pipeline.</value>
11091118
</data>
@@ -1188,9 +1197,6 @@
11881197
<data name="AvoidUsingBrokenHashAlgorithmsName" xml:space="preserve">
11891198
<value>AvoidUsingBrokenHashAlgorithms</value>
11901199
</data>
1191-
<data name="UseCorrectCasingParameterError" xml:space="preserve">
1192-
<value>Parameter '{0}' of function/cmdlet '{1}' does not match its exact casing '{2}'.</value>
1193-
</data>
11941200
<data name="AvoidExclaimOperatorName" xml:space="preserve">
11951201
<value>AvoidExclaimOperator</value>
11961202
</data>

0 commit comments

Comments
 (0)