32 строки
1.0 KiB
PowerShell
32 строки
1.0 KiB
PowerShell
|
# Copyright (c) Microsoft Corporation.
|
||
|
# Licensed under the MIT License.
|
||
|
|
||
|
Document 'module' {
|
||
|
Title 'Module rule reference'
|
||
|
|
||
|
Import-Module .\out\modules\PSRule.Rules.CAF
|
||
|
$rules = Get-PSRule -Module PSRule.Rules.CAF -WarningAction SilentlyContinue |
|
||
|
Add-Member -MemberType ScriptProperty -Name Category -Value { $this.Info.Annotations.category } -PassThru |
|
||
|
Sort-Object -Property Category;
|
||
|
|
||
|
Section 'Baselines' {
|
||
|
# 'The following baselines are included within `PSRule.Rules.CAF`.'
|
||
|
}
|
||
|
|
||
|
Section 'Rules' {
|
||
|
'The following rules are included within `PSRule.Rules.CAF`.'
|
||
|
|
||
|
$categories = $rules | Group-Object -Property Category;
|
||
|
|
||
|
foreach ($category in $categories) {
|
||
|
Section "$($category.Name)" {
|
||
|
$category.Group |
|
||
|
Sort-Object -Property RuleName |
|
||
|
Table -Property @{ Name = 'Name'; Expression = {
|
||
|
"[$($_.RuleName)]($($_.RuleName).md)"
|
||
|
}}, Synopsis
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|