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 c9a0d1b commit 891db45Copy full SHA for 891db45
tools/StaticAnalysis/ExampleAnalyzer/Measure-MarkdownOrScript.ps1
@@ -76,6 +76,11 @@ if ($PSCmdlet.ParameterSetName -eq "Markdown") {
76
if ((Get-Item -Path $_.FullName).Directory.Parent.Name -eq "netcoreapp3.1") {
77
continue
78
}
79
+ # Skip Az.Tools.* modules as they may not comply with Az convention
80
+ if (($_.FullName -cmatch "Az\.Tools\.")) {
81
+ Write-Debug "Skipping $($_.FullName)"
82
+ continue
83
+ }
84
Write-Output "Searching in file $($_.FullName) ..."
85
if ((Get-Item -Path $_.FullName).Directory.Parent.Parent.Name -ne "src") {
86
$module = (Get-Item -Path $_.FullName).Directory.Parent.Parent.Name
0 commit comments