From 21203aaaeef1c4609de5ff0bf77702cf83108cce Mon Sep 17 00:00:00 2001 From: Benedek Farkas Date: Wed, 18 Jan 2023 19:08:55 +0100 Subject: [PATCH] Re-enabling PSUseCorrectCasing analyzer rule, because https://github.com/PowerShell/PSScriptAnalyzer/issues/1881 no longer blocks it --- Lombiq.Analyzers.PowerShell/PSScriptAnalyzerSettings.psd1 | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Lombiq.Analyzers.PowerShell/PSScriptAnalyzerSettings.psd1 b/Lombiq.Analyzers.PowerShell/PSScriptAnalyzerSettings.psd1 index d72226ac..677a637b 100644 --- a/Lombiq.Analyzers.PowerShell/PSScriptAnalyzerSettings.psd1 +++ b/Lombiq.Analyzers.PowerShell/PSScriptAnalyzerSettings.psd1 @@ -46,9 +46,8 @@ CheckParameter = $false IgnoreAssignmentOperatorInsideHashTable = $false } - # PSUseCorrectCasing is not enabled yet due to https://github.com/PowerShell/PSScriptAnalyzer/issues/1881. - # PSUseCorrectCasing = @{ - # Enable = $true - # } + PSUseCorrectCasing = @{ + Enable = $true + } } }