stop raising build error on lint warnings for now (#49)

This commit is contained in:
OCram85 2020-10-02 16:06:22 +02:00 committed by GitHub
parent 5983c760b5
commit 739c8cb9b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 10 deletions

View File

@ -40,16 +40,7 @@ function Invoke-Linter () {
param()
process {
$LintRes = Invoke-ScriptAnalyzer -Path './src/' -Recurse
#if (-not ($Env:CI_COMMIT_MESSAGE -match 'SkipLint')) {
if ($LintRes ) {
$LintRes | Format-List
Write-Error -Message 'Lint Errors found!' -ErrorAction Stop
}
else {
Write-Host '== No Lint Errors found! =='
}
#}
Invoke-ScriptAnalyzer -Path './src/' -Recurse
}
}