We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a595c8 commit 1bb539dCopy full SHA for 1bb539d
.github/instructions/dsc-community-style-guidelines-powershell.instructions.md
@@ -201,6 +201,8 @@ function Get-Something
201
- Return a single, consistent object type per function
202
- return `$null` for no objects/non-terminating errors
203
- Use `::new()` static method instead of `New-Object` for .NET types, e.g `[System.Management.Automation.ErrorRecord]::new()`
204
+- Instead of `[System.Exception]::new(...)`, use `New-Exception` command
205
+- Instead of `[System.Management.Automation.ErrorRecord]::new(...)`, use `New-ErrorRecord` command
206
207
### Security & Safety
208
0 commit comments