From c83453725cabf89da209fc974627bfade6391ab0 Mon Sep 17 00:00:00 2001 From: Kapil Borle Date: Wed, 8 Feb 2017 09:43:44 -0800 Subject: [PATCH] Fix UseConsistentIndentation rule documentation --- RuleDocumentation/UseConsistentIndentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RuleDocumentation/UseConsistentIndentation.md b/RuleDocumentation/UseConsistentIndentation.md index 406cb5594..37b9a3d8d 100644 --- a/RuleDocumentation/UseConsistentIndentation.md +++ b/RuleDocumentation/UseConsistentIndentation.md @@ -11,7 +11,7 @@ Indentation should be consistent throughout the source file. Rules = @{ PSUseConsistentIndentation = @{ Enable = $true - NoEmptyLineBefore = $false + IndentationSize = 4 } } ```