-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Indentation for lines after a pipe character #184
Comments
That's definitely how I prefer to see it handled:
I guess I'm used to Python and Yaml, but I do not worry about the lack of the closing line. I would not use parenthesis to try and show the end of a block, if only because they have side effects. This, for example, would result in outputting ($Moved = Get-ChildItem $SourceFolder |
Where Length -gt 100mb |
Move-Item -Destination $TargetFolder -Passthru
) |
Thanks @Jaykul Agreed; an assignment within brackets has side effects / for that (if adopting the brackets approach) I'd place the bracket after the equals sign: $Moved = (
Get-ChildItem $SourceFolder |
Where Length -gt 100mb |
Move-Item -Destination $TargetFolder -Passthru
) ... but you're right that the approach of using brackets may lead to people placing the bracket before the assignment and being caught out. |
But it's more than that. Parentheses are also blocking. Compare: 1..100 |
ForEach { start-sleep -m 100; $_ } (1..100 |
ForEach { start-sleep -m 100; $_ }
) |
When we have multiple commands, each piping their output to one another, for readability / single-line width it's generally best to put each command on a different line; like so:
Should we define a best practice / guideline for this scenario?
Generally I indent all lines after the initial pipe to show they're a continuation of the previous line. However I don't indent again after subsequent lines because there would be no additional benefit.
The downside with this approach is that there's no "closing line"; which looks nasty if you the following line is a close for a parent block; e.g.
An option to tidy this up could be to put a comment to represent the close of he piped "block" / maybe with something after the comment character to show it's a close for the piped input; e.g.
Another option could be to put parentheses around the block.
Do others have any thoughts or preferences on how best to approach these scenarios?
The text was updated successfully, but these errors were encountered: