intellij-powershell
intellij-powershell copied to clipboard
Code format breaks code
If (-NOT $global:balloon)
is reformatted into
If (-NOT$global:balloon)
which is unrunnable. I have stumbled over this when I tried to integrate https://github.com/proxb/PowerShell_Scripts/blob/master/Invoke-BalloonTip.ps1 into our project.
This is really critical issue for me too.
This
Start-Job -ScriptBlock { runThis.exe --color=blue --name=jacob }
is reformatted to
Start-Job -ScriptBlock { runThis.exe --color = blue --name = jacob }
Autoformatting applied on git commit makes this a particulary nasty bug.
Closed as a duplicate of #102.