2023-01-21 09:52:17 +00:00
|
|
|
#Documentation: https://github.com/PowerShell/PSScriptAnalyzer/blob/master/docs/markdown/Invoke-ScriptAnalyzer.md#-settings
|
|
|
|
@{
|
|
|
|
ExcludeRules = @(
|
|
|
|
'PSMissingModuleManifestField',
|
|
|
|
'PSUseLiteralInitializerForHashtable',
|
|
|
|
'MissingPropertyName'
|
|
|
|
'PSAvoidGlobalVars',
|
|
|
|
'PSAvoidUsingPositionalParameters',
|
|
|
|
'PSAvoidUsingWriteHost',
|
|
|
|
'PSAvoidUsingEmptyCatchBlock',
|
|
|
|
'PSPossibleIncorrectComparisonWithNull',
|
|
|
|
'PSAvoidTrailingWhitespace',
|
|
|
|
'PSUseApprovedVerbs',
|
2023-04-01 14:08:52 +00:00
|
|
|
'PSAvoidUsingWMICmdlet',
|
|
|
|
'PSReviewUnusedParameter',
|
|
|
|
'PSUseDeclaredVarsMoreThanAssignment',
|
|
|
|
'PSUseShouldProcessForStateChangingFunctions'
|
2023-01-21 09:52:17 +00:00
|
|
|
)
|
|
|
|
}
|