From 124b516e6acf55efead3553ce2f2b1a395806d89 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Tue, 4 Feb 2020 15:32:14 -0600 Subject: [PATCH] fix corner case --- lib/linter.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linter.sh b/lib/linter.sh index 5c50dce6..352b7700 100755 --- a/lib/linter.sh +++ b/lib/linter.sh @@ -1320,7 +1320,7 @@ TestCodebase() ######################################################### # If not found, assume it should be linted successfully # ######################################################### - if [ -z "$FILE_STATUS" ]; then + if [ -z "$FILE_STATUS" ] || [[ "$FILE" == *"README"* ]]; then ################################## # Set to good for proper linting # ##################################