Enable all analyzers to default back to our rules

This commit is contained in:
Qstick
2023-02-18 12:17:33 -06:00
parent 27b3d8618a
commit a39341be4b
22 changed files with 34 additions and 25 deletions
@@ -351,7 +351,7 @@ public class ShazbatParser : IParseIndexerResponse
private static string ParseTitle(IElement titleRow)
{
var title = titleRow?.ChildNodes.First(n => n.NodeType == NodeType.Text && n.TextContent.Trim() != string.Empty);
var title = titleRow?.ChildNodes.First(n => n.NodeType == NodeType.Text && n.TextContent.Trim().IsNotNullOrWhiteSpace());
return title?.TextContent.Trim();
}