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 933c21b commit d3abe06Copy full SHA for d3abe06
tools/StaticAnalysis/HelpAnalyzer/HelpAnalyzer.cs
@@ -63,6 +63,8 @@ private static bool IsAssemblyFile(string path)
63
{
64
result = result && !regex.IsMatch(fileName);
65
}
66
+
67
+ return result;
68
69
/// <summary>
70
/// Given a set of directory paths containing PowerShell module folders, analyze the help
@@ -167,8 +169,6 @@ private void AnalyzeMarkdownHelp(
167
169
HelpFile = service + "/folder",
168
170
ProblemId = MissingHelpFile
171
});
-
- return;
172
173
174
var helpFiles = Directory.EnumerateFiles(helpFolder, "*.md").Select(f => Path.GetFileNameWithoutExtension(f)).ToList();
0 commit comments