Skip to content

Commit c9fe6ea

Browse files
committed
Update tests and documentation
1 parent 9a232ae commit c9fe6ea

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# UseConsistentCasing
2+
3+
**Severity Level: Information**
4+
5+
## Description
6+
7+
This is a style/formatting rule. PowerShell is case insensitive where applicable. The casing of keywords and operators does not matter but this rule ensures the use of lowercase for consistency and also because it helps distinguish keywords from commands (e.g. `foreach` is a keyword, but `ForEach-Object` is the command) and parameters (which should start with a capital letter).
8+
9+
## How
10+
11+
Use lowercase for language keywords and operators of the cmdlet and its parameters.
12+
13+
## Example
14+
15+
### Wrong
16+
17+
``` PowerShell
18+
ForEach($file IN Get-ChildItem) { $file }
19+
```
20+
21+
### Correct
22+
23+
``` PowerShell
24+
foreach($file in Get-ChildItem) { $file }
25+
```

Tests/Engine/GetScriptAnalyzerRule.tests.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Describe "Test Name parameters" {
6363

6464
It "get Rules with no parameters supplied" {
6565
$defaultRules = Get-ScriptAnalyzerRule
66-
$expectedNumRules = 65
66+
$expectedNumRules = 66
6767
if ($PSVersionTable.PSVersion.Major -le 4)
6868
{
6969
# for PSv3 PSAvoidGlobalAliases is not shipped because
@@ -159,7 +159,7 @@ Describe "TestSeverity" {
159159

160160
It "filters rules based on multiple severity inputs"{
161161
$rules = Get-ScriptAnalyzerRule -Severity Error,Information
162-
$rules.Count | Should -Be 18
162+
$rules.Count | Should -Be 19
163163
}
164164

165165
It "takes lower case inputs" {

0 commit comments

Comments
 (0)