mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
491 B
PowerShell
14 lines
491 B
PowerShell
7 years ago
|
@{
|
||
|
ExcludeRules=@(
|
||
6 years ago
|
'PSUseOutputTypeCorrectly',
|
||
6 years ago
|
'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'
|
||
7 years ago
|
)
|
||
|
}
|