PowerShellPracticeAndStyle
PowerShellPracticeAndStyle copied to clipboard
The Unofficial PowerShell Best Practices and Style Guide
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:...
The **PowerShell practice and style** guide has a rule for: [Avoid Using Semicolons (`;`) as Line Terminators](https://poshcode.gitbook.io/powershell-practice-and-style/style-guide/code-layout-and-formatting#avoid-using-semicolons-as-line-terminators). I wonder whether there is a general readability recommendation for **avoid Using Semicolons...
Related to issue #59, for my ObjectGraphTools project, I would like to separate my [interdependent classes contained by a single file](https://github.com/iRon7/ObjectGraphTools/blob/main/Source/Classes/ObjectParser.ps1) over multiple files to make my module better manageable....
## Full Change Log here [Building-Reusable-Tools.md](https://github.com/PoshCode/PowerShellPracticeAndStyle/blob/master/Best-Practices/Building-Reusable-Tools.md) ## General ideas - [ ] Change all code names for each rule to BPR-01 or BEST-01 or BESTPRACTICES-01 or RULE-01 and keep consistent....
This is more accurate and informative.