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 38eaf92 commit bbd525fCopy full SHA for bbd525f
RuleDocumentation/ProvideVerboseMessage.md
@@ -11,4 +11,23 @@ Checks that Write-Verbose is called at least once in every cmdlet or script. Thi
11
Please consider adding Write-Verbose in each cmdlet.
12
13
##Example
14
+Correct
15
+```
16
+Function TestFunction1
17
+{
18
+ [cmdletbinding()]
19
20
+ Param()
21
+
22
+ Write-Verbose "Verbose output"
23
24
+}
25
26
+Function TestFunction2
27
28
29
30
+ Param()
31
32
33
0 commit comments