debug PSScriptAnalyzer
This commit is contained in:
parent
5509e574c9
commit
1471e78af3
@ -96,8 +96,27 @@ function Invoke-Linter {
|
||||
Recurse = $true
|
||||
Settings = './tools/PSScriptAnalyzerSettings.psd1'
|
||||
ReportSummary = $true
|
||||
ErrorAction = 'Stop'
|
||||
}
|
||||
try {
|
||||
$AnalyzerResults = Invoke-ScriptAnalyzer @AnalyzerSettings
|
||||
if ( $AnalyzerResults ) {
|
||||
$AnalyzerResults | Sort-Object -Property @(
|
||||
"ScriptName",
|
||||
"Line"
|
||||
) | Format-Table @(
|
||||
"Severity",
|
||||
"ScriptName",
|
||||
"Line",
|
||||
"RuleName",
|
||||
"Message"
|
||||
) -AutoSize | Out-String | Write-Verbose -Verbose
|
||||
}
|
||||
}
|
||||
catch {
|
||||
Write-Error -Message 'PSScriptAnalyzer failer'
|
||||
Write-Error -Message $_.Exception.Message -ErrorAction 'Stop'
|
||||
}
|
||||
Invoke-ScriptAnalyzer @AnalyzerSettings
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user