Skip to content

Commit 520f181

Browse files
🩹 [Patch]: Add SuppressMessage attribute for long lines in Get-PSModuleCmdletsToExport function
1 parent 7922809 commit 520f181

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/helpers/Build/Get-PSModuleCmdletsToExport.ps1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
'PSAvoidUsingWriteHost', '', Scope = 'Function',
1515
Justification = 'Want to just write to the console, not the pipeline.'
1616
)]
17+
[Diagnostics.CodeAnalysis.SuppressMessageAttribute(
18+
'PSAvoidLongLines', '', Scope = 'Function',
19+
Justification = 'Contains long links.'
20+
)]
1721
param(
1822
# Path to the folder where the module source code is located.
1923
[Parameter(Mandatory)]

0 commit comments

Comments
 (0)