mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
Removes check for Write-Host on script analyzer
This commit is contained in:
parent
634114d448
commit
04a3e10222
1 changed files with 2 additions and 2 deletions
|
|
@ -16,7 +16,6 @@
|
|||
'PSAvoidTrailingWhitespace',
|
||||
'PSAvoidUsingDeprecatedManifestFields',
|
||||
'PSUseToExportFieldsInManifest',
|
||||
'PSAvoidUsingWriteHost',
|
||||
'PSUseProcessBlockForPipelineCommand',
|
||||
'PSUseConsistentIndentation',
|
||||
'PSUseCompatibleCmdlets',
|
||||
|
|
@ -26,7 +25,8 @@
|
|||
);
|
||||
ExcludeRules = @(
|
||||
'PSAvoidGlobalVars',
|
||||
'PSUseSingularNouns'
|
||||
'PSUseSingularNouns',
|
||||
'PSAvoidUsingWriteHost'
|
||||
)
|
||||
Rules = @{
|
||||
PSUseCompatibleCmdlets = @{
|
||||
|
|
|
|||
Loading…
Reference in a new issue