1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/sanity/pslint/pslint.ps1

29 lines
561 B
PowerShell
Raw Normal View History

#!/usr/bin/env pwsh
#Requires -Version 6
#Requires -Modules PSScriptAnalyzer
Set-StrictMode -Version 2.0
$ErrorActionPreference = "Stop"
$WarningPreference = "Stop"
$Results = @()
ForEach ($Path in $Args) {
$Retries = 3
Do {
Try {
$Results += Invoke-ScriptAnalyzer -Path $Path -Setting $PSScriptRoot/settings.psd1 3> $null
$Retries = 0
}
Catch {
If (--$Retries -le 0) {
Throw
}
}
}
Until ($Retries -le 0)
}
ConvertTo-Json -InputObject $Results