From 05dc421487a2c3449e6fe9f72b17b3c6af367bb7 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Mon, 25 Apr 2022 00:13:07 +0100 Subject: [PATCH] [ci skip] Count double blank line as problem --- X10D.SourceValidator/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/X10D.SourceValidator/Program.cs b/X10D.SourceValidator/Program.cs index e9b001a..2f09427 100644 --- a/X10D.SourceValidator/Program.cs +++ b/X10D.SourceValidator/Program.cs @@ -30,6 +30,7 @@ while (directories.Count > 0) Console.ForegroundColor = ConsoleColor.Red; Console.Out.WriteLine($"{file}({lineNumber}): Double blank line"); Console.ResetColor(); + problems++; } blankLine = true;