lint/lib/pwshlint.ps1
Lucas Gravley 948c8c4f5d make exec
2020-06-22 09:54:09 -05:00

6 lines
No EOL
182 B
PowerShell
Executable file

#!/usr/bin/pwsh
param(
[String]$SettingsPath,
[String]$FileToAnalyze
)
$ScriptAnalyzerResults = Invoke-ScriptAnalyzer -EnableExit -Settings $SettingsPath -Path $FileToAnalyze