From e94c2b66e1db7bc519e4bdcfe9a1861862324f34 Mon Sep 17 00:00:00 2001 From: Wes Carroll Date: Mon, 17 Jun 2019 09:07:45 -0400 Subject: [PATCH] Ignore Plural Nouns In PSSA --- ZertoApiWrapper.build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ZertoApiWrapper.build.ps1 b/ZertoApiWrapper.build.ps1 index 5674577..e36079a 100644 --- a/ZertoApiWrapper.build.ps1 +++ b/ZertoApiWrapper.build.ps1 @@ -47,7 +47,7 @@ task AnalyzeBuiltFiles CheckPSScriptAnalyzerInstalled, CreatePsm1ForRelease, { Severity = @('Error', 'Warning') Recurse = $true Verbose = $false - ExcludeRule = @("PSUseBOMForUnicodeEncodedFile") + ExcludeRule = @("PSUseBOMForUnicodeEncodedFile", "PSUseSingularNouns") } $saresults = Invoke-ScriptAnalyzer @scriptAnalyzerParams