fptest-0.2.1.0: test/HLint.hs
module Main (main) where
import Language.Haskell.HLint (hlint)
import System.Exit (exitFailure, exitSuccess)
arguments :: [String]
arguments =
[
"src"
, "test"
]
main :: IO ()
main = do
hints <- hlint arguments
if null hints then exitSuccess else exitFailure