ps/Modules/Cole.PowerShell.Developer/Public/Test-CustomSuppressMessage.ps1
2023-05-30 22:51:22 -07:00

10 lines
614 B
PowerShell

function Test-CustomSuppressMessage {
[CmdletBinding()]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('Alkami_Module_NoCommandWithRetry', '', Scope='Function', Justification="We can't wrap the internals because X")]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('Alkami_Module_NoCommandWithRetry1', '', Scope='Function', Justification="We can't wrap the internals because X")]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('Alkami_Module_NoCommandWithRetry2', '', Scope='Function', Justification="We can't wrap the internals because X")]
param (
)
Write-Host "hmm, ok"
}