Closed
Description
I (reluctantly) would like to open a discussion regarding which bracing style to use for snippets. Right now, the latest snippets file uses Allman style bracing e.g.:
function foo
{
...
}
But the bulk of the PowerShell code I've seen in the wild uses K&R style e.g.:
function foo {
...
}
I know there are details of bracing style the community at large doesn't agree upon like whether or not to use cuddled else but I do believe K&R is fairly well accepted at the "top level".
Would anyone object strenuously if I changed the snippets to use K&R?