Removed noisy SC1000 about unescaped $s

This commit is contained in:
Vidar Holen 2014-05-03 10:19:01 -07:00
parent 4bd902c5c4
commit 47c220d59c
1 changed files with 0 additions and 1 deletions

View File

@ -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"