From d72e17db158fe71f364a3c0193060ba43225e10e Mon Sep 17 00:00:00 2001 From: Stuffed <stuffedgame@gmail.com> Date: Fri, 5 May 2017 23:54:18 +0900 Subject: [PATCH] Check for duplicate words --- sanityCheck | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sanityCheck b/sanityCheck index ff10c55772d..3f0aacb6eff 100755 --- a/sanityCheck +++ b/sanityCheck @@ -69,6 +69,8 @@ $GREP -e "activeSlave[.]" --and -e "slaves\[..\?\][.]" --and --not -e '[.]ID' -- $GREP "<<set[^{>=]*==" -- 'src/*' | myprint "DoubleEqualsInSet" # Check for, e.g <<if slaves[foo]>> $GREP "<<\([^>]\|[^>]>[^>]\)*[^$]slaves\[" -- 'src/*' | myprint "MissingDollar" +# Check for duplicate words, e.g. with with +$GREP -e " \(\b[a-zA-Z][a-zA-Z]\+\) \1\b " --and --not -e "her her" --and --not -e "you you" --and --not -e "that that" -- 'src/*' | myprint "Duplicate words" # Check that we do not have any variables that we use only once. e.g. $onlyUsedOnce ( -- GitLab