mirror of
https://github.com/super-linter/super-linter.git
synced 2024-12-23 13:12:22 -05:00
6 lines
158 B
PowerShell
Executable file
6 lines
158 B
PowerShell
Executable file
#!/usr/bin/pwsh
|
|
param(
|
|
[String]$SettingsPath,
|
|
[String]$FileToAnalyze
|
|
)
|
|
Invoke-ScriptAnalyzer -EnableExit -Settings $SettingsPath -Path $FileToAnalyze
|