Issue Description
Not sure if this is an actual bug or not, but consider this example when setting powershell.codeFormatting.whitespaceAroundOperator to true:
$numberOfDaysToSubtract = 10
(Get-Date).AddDays(-$numberOfDaysToSubtract)
When using the "auto-formatter", VSCode changes it to:
$numberOfDaysToSubtract = 10
(Get-Date).AddDays( - $numberOfDaysToSubtract)
Is that the expected behavior? It does work of course, but I've never seen it written like that ever, so wanted to confirm if it's intented.
Thanks!