superlint/.automation/test/powershell/powershell_bad_1.ps1
2020-11-20 09:12:31 -06:00

9 lines
165 B
PowerShell

#Plaintext Parameters
function BadFunction {
param(
[String]$Username = 'me',
[String]$Password = 'password'
)
$Username
$Password
}