From 47c220d59ca30e6d5a9d61fffe50392bb93a376a Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Sat, 3 May 2014 10:19:01 -0700 Subject: [PATCH] Removed noisy SC1000 about unescaped $s --- ShellCheck/Parser.hs | 1 - 1 file changed, 1 deletion(-) diff --git a/ShellCheck/Parser.hs b/ShellCheck/Parser.hs index c8a4d8b..d933e67 100644 --- a/ShellCheck/Parser.hs +++ b/ShellCheck/Parser.hs @@ -1137,7 +1137,6 @@ readDollarLonely = do pos <- getPosition char '$' n <- lookAhead (anyChar <|> (eof >> return '_')) - when (n /= '\'') $ parseNoteAt pos StyleC 1000 "$ is not used specially and should therefore be escaped." return $ T_Literal id "$" prop_readHereDoc = isOk readHereDoc "<< foo\nlol\ncow\nfoo"