2018-01-31 00:32:32 +00:00
|
|
|
@{
|
|
|
|
ExcludeRules=@(
|
2018-08-31 00:52:57 +00:00
|
|
|
'PSUseOutputTypeCorrectly',
|
2018-10-03 19:55:02 +00:00
|
|
|
'PSUseShouldProcessForStateChangingFunctions',
|
|
|
|
# We send strings as plaintext so will always come across the 3 issues
|
|
|
|
'PSAvoidUsingPlainTextForPassword',
|
|
|
|
'PSAvoidUsingConvertToSecureStringWithPlainText',
|
|
|
|
'PSAvoidUsingUserNameAndPassWordParams',
|
|
|
|
# We send the module as a base64 encoded string and a BOM will cause
|
|
|
|
# issues here
|
|
|
|
'PSUseBOMForUnicodeEncodedFile'
|
2018-01-31 00:32:32 +00:00
|
|
|
)
|
|
|
|
}
|