From 37530023b79af13c42796d4f701285a1424b3d4c Mon Sep 17 00:00:00 2001 From: Christoph Bergmeister Date: Sun, 9 Feb 2020 15:42:14 +0000 Subject: [PATCH] Set default of CheckParameter configuration setting to false to ensure that setting won't be enabled by default if an old version of the VS-Code extension uses a new version of PSScriptAnalyzer (1.19) --- Rules/UseConsistentWhitespace.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rules/UseConsistentWhitespace.cs b/Rules/UseConsistentWhitespace.cs index 738ccfeb3..75b14fca3 100644 --- a/Rules/UseConsistentWhitespace.cs +++ b/Rules/UseConsistentWhitespace.cs @@ -57,7 +57,7 @@ private List>> violationFind [ConfigurableRuleProperty(defaultValue: true)] public bool CheckSeparator { get; protected set; } - [ConfigurableRuleProperty(defaultValue: true)] + [ConfigurableRuleProperty(defaultValue: false)] public bool CheckParameter { get; protected set; } public override void ConfigureRule(IDictionary paramValueMap)