Skip to content

Commit

Permalink
Updated example and corrected argument type. (PowerShell#1069)
Browse files Browse the repository at this point in the history
IndentationSize had the wrong type attributed to it.  Added use of `Kind` in the example.
  • Loading branch information
Halkcyon authored and bergmeister committed Mar 22, 2019
1 parent 4c8f336 commit f6cee68
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion RuleDocumentation/UseConsistentIndentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Indentation should be consistent throughout the source file.
PSUseConsistentIndentation = @{
Enable = $true
IndentationSize = 4
Kind = 'space'
}
}
```
Expand All @@ -25,7 +26,7 @@ Indentation should be consistent throughout the source file.

Enable or disable the rule during ScriptAnalyzer invocation.

#### IndentationSize: bool (Default value is `4`)
#### IndentationSize: int (Default value is `4`)

Indentation size in the number of space characters.

Expand Down

0 comments on commit f6cee68

Please sign in to comment.