使用内置预设规则集分析脚本

ScriptAnalyzer 附带了一组可用于分析脚本的内置预设规则。这些包括:PSGalleryDSCCodeFormatting。它们可以按如下方式执行:

PowerShell 库规则

要执行 PowerShell 库规则,请使用以下命令:

Invoke-ScriptAnalyzer -Path /path/to/module/ -Settings PSGallery -Recurse

DSC 规则

要执行 DSC 规则,请使用以下命令:

Invoke-ScriptAnalyzer -Path /path/to/module/ -Settings DSC -Recurse

代码格式规则

要执行代码格式规则,请使用以下命令:

Invoke-ScriptAnalyzer -Path /path/to/module/ -Settings CodeFormatting -Recurse