hlint does not support --quiet anymore.

This commit is contained in:
Kazu Yamamoto 2014-03-13 11:09:55 +09:00
parent 9c30b11667
commit 1ae10600e7

View File

@ -18,4 +18,4 @@ lintSyntax opt file = pack <$> lint opt file
lint :: Options
-> FilePath -- ^ A target file.
-> IO [String]
lint opt file = map show <$> hlint ([file, "--quiet"] ++ hlintOpts opt)
lint opt file = map show <$> hlint ([file] ++ hlintOpts opt)