You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use a build script to generate powershell modules. The tasks of the build script include updating the module manifest to list the FunctionsToExport - and a call to Invoke-ScriptAnalyzer to ensure that the code follows best practice.
The problem is that Update-PSModuleManifest -FunctionsToExport splits the array across multiple lines in the psd1 file in a way that violates the PSAvoidTrailingWhitespace rule from Invoke-Scriptanalyzer.
I discovered the behaviour in Update-ModuleManifest from PowerShellGet but I have verified that the newer Update-PSModuleManifest has the exact same behaviour
RuleName Severity ScriptName Line Message-------- -------- ---------- ---- -------PSAvoidTrailingWhitespace Information foo.psd1 72 Line has trailing whitespace
Error details
Environment data
>Get-Module Microsoft.PowerShell.PSResourceGet; $PSVersionTable|Format-Table
ModuleType Version PreRelease Name ExportedCommands
-----------------------------------------------
Binary 1.1.1 Microsoft.PowerShell.PSResourceGet {Compress-PSResource,Find-PSResource,Get-InstalledPSResource,Get-PSResourceReposit…
Name Value
---------
PSVersion 7.5.0
PSEdition Core
GitCommitId 7.5.0
OS Microsoft Windows 10.0.22631
Platform Win32NT
PSCompatibleVersions {1.0,2.0,3.0,4.0…}
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
WSManStackVersion 3.0
Visuals
Test scenario:
Actual module file in VS Code - with the trailing whitespace highlighted:
The text was updated successfully, but these errors were encountered:
Prerequisites
Steps to reproduce
I use a build script to generate powershell modules. The tasks of the build script include updating the module manifest to list the FunctionsToExport - and a call to Invoke-ScriptAnalyzer to ensure that the code follows best practice.
The problem is that Update-PSModuleManifest -FunctionsToExport splits the array across multiple lines in the psd1 file in a way that violates the PSAvoidTrailingWhitespace rule from Invoke-Scriptanalyzer.
I discovered the behaviour in Update-ModuleManifest from PowerShellGet but I have verified that the newer Update-PSModuleManifest has the exact same behaviour
Steps to reproduce:
New-ModuleManifest -Path foo.psd1
Update-ModuleManifest -Path foo.psd1 -FunctionsToExport "Get-Something", "Convert-SomethingElse", "Add-MyFunction", "Remove-TheLineBreak"
Invoke-ScriptAnalyzer .\foo.psd1
Expected behavior
(no output)
Actual behavior
Error details
Environment data
Visuals
Test scenario:

Actual module file in VS Code - with the trailing whitespace highlighted:

The text was updated successfully, but these errors were encountered: