16 lines
318 B
PowerShell
Executable file
16 lines
318 B
PowerShell
Executable file
#! /usr/bin/pwsh
|
|
|
|
Set-StrictMode -Version Latest
|
|
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
$ErrorView = "NormalView"
|
|
|
|
$basePath = Join-Path $PSScriptRoot '..'
|
|
|
|
Import-Module PSScriptAnalyzer -ErrorAction Stop -Force
|
|
|
|
Invoke-ScriptAnalyzer `
|
|
-Path (Join-Path -Path $basePath 'src') `
|
|
-Settings PSGallery `
|
|
-Recurse
|