|
189 | 189 | "\t# TODO: Add parameters here", |
190 | 190 | "\t# Make sure to use the same parameters for", |
191 | 191 | "\t# Get-TargetResource, Set-TargetResource, and Test-TargetResource", |
192 | | - "\tparam(", |
| 192 | + "\tparam (", |
193 | 193 | "\t)", |
194 | 194 | "}", |
195 | 195 | "function Set-TargetResource {", |
196 | 196 | "\t# TODO: Add parameters here", |
197 | 197 | "\t# Make sure to use the same parameters for", |
198 | 198 | "\t# Get-TargetResource, Set-TargetResource, and Test-TargetResource", |
199 | | - "\tparam(", |
| 199 | + "\tparam (", |
200 | 200 | "\t)", |
201 | 201 | "}", |
202 | 202 | "function Test-TargetResource {", |
203 | 203 | "\t# TODO: Add parameters here", |
204 | 204 | "\t# Make sure to use the same parameters for", |
205 | 205 | "\t# Get-TargetResource, Set-TargetResource, and Test-TargetResource", |
206 | | - "\tparam(", |
| 206 | + "\tparam (", |
207 | 207 | "\t)", |
208 | 208 | "}" |
209 | 209 | ], |
|
350 | 350 | "\t ConfirmImpact='Medium')]", |
351 | 351 | "\t[Alias()]", |
352 | 352 | "\t[OutputType([String])]", |
353 | | - "\tparam(", |
| 353 | + "\tparam (", |
354 | 354 | "\t\t# Param1 help description", |
355 | 355 | "\t\t[Parameter(Mandatory=$true, ", |
356 | 356 | "\t\t Position=0,", |
|
455 | 455 | "body": [ |
456 | 456 | "function ${name:Verb-Noun} {", |
457 | 457 | "\t[CmdletBinding()]", |
458 | | - "\tparam(", |
| 458 | + "\tparam (", |
459 | 459 | "\t\t$0", |
460 | 460 | "\t)", |
461 | 461 | "\t", |
|
596 | 596 | "prefix": "DSC resource provier (function-based)", |
597 | 597 | "body": [ |
598 | 598 | "function Get-TargetResource {", |
599 | | - "\tparam(", |
| 599 | + "\tparam (", |
600 | 600 | "\t)", |
601 | 601 | "\t", |
602 | 602 | "\t$0", |
603 | 603 | "}", |
604 | 604 | "function Set-TargetResource {", |
605 | | - "\tparam(", |
| 605 | + "\tparam (", |
606 | 606 | "\t)", |
607 | 607 | "\t", |
608 | 608 | "}", |
609 | 609 | "function Test-TargetResource {", |
610 | | - "\tparam(", |
| 610 | + "\tparam (", |
611 | 611 | "\t)", |
612 | 612 | "\t", |
613 | 613 | "}" |
|
766 | 766 | "prefix": "workflow", |
767 | 767 | "body": [ |
768 | 768 | "workflow ${name:Verb-Noun} {", |
769 | | - "\tparam(", |
| 769 | + "\tparam (", |
770 | 770 | "\t)", |
771 | 771 | "\t", |
772 | 772 | "\t$0", |
|
0 commit comments