2018-01-25 02:22:14 +01:00
|
|
|
#!/usr/bin/env pwsh
|
|
|
|
#Requires -Version 6
|
|
|
|
#Requires -Modules PSScriptAnalyzer
|
|
|
|
|
|
|
|
Set-StrictMode -Version 2.0
|
|
|
|
$ErrorActionPreference = "Stop"
|
2018-12-19 18:53:15 +01:00
|
|
|
$WarningPreference = "Stop"
|
2018-01-25 02:22:14 +01:00
|
|
|
|
|
|
|
$Results = @()
|
|
|
|
|
|
|
|
ForEach ($Path in $Args) {
|
2018-12-19 18:53:15 +01:00
|
|
|
$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)
|
2018-01-25 02:22:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ConvertTo-Json -InputObject $Results
|