mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-07 09:45:46 -05:00
14 lines
258 B
PowerShell
14 lines
258 B
PowerShell
#Plaintext Parameters
|
|
function BadFunction {
|
|
param(
|
|
[String]$Username = 'me',
|
|
[String]$Password = 'password'
|
|
)
|
|
$Username
|
|
$Password
|
|
$VariableThatIsNotUsedLater = '5'
|
|
try {
|
|
'Empty Catch Block'
|
|
} catch {}
|
|
}
|
|
|