025e9afe58
* pslint fixes * Fix up remaining sanity issues * now fix silly errors I made
13 lines
491 B
PowerShell
13 lines
491 B
PowerShell
@{
|
|
ExcludeRules=@(
|
|
'PSUseOutputTypeCorrectly',
|
|
'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'
|
|
)
|
|
}
|