2018-01-31 01:32:32 +01:00
|
|
|
@{
|
|
|
|
ExcludeRules=@(
|
2018-03-21 18:45:04 +01:00
|
|
|
'PSPossibleIncorrectComparisonWithNull',
|
2018-08-31 02:52:57 +02:00
|
|
|
'PSUseOutputTypeCorrectly',
|
2018-10-03 21:55:02 +02: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 01:32:32 +01:00
|
|
|
)
|
|
|
|
}
|