optparse-applicative/.hlint.yaml
Oleg Grenrus ad2fa7f643 Add .hlint.yaml, fix some hlint warns, ignore others
Note: {-# ANN #-} start the GHCi interpreter (like TemplateHaskell!),
so I removed that.
2019-05-13 00:05:17 +03:00

6 lines
278 B
YAML

# Ignore some builtin hints
- ignore: {name: "Use import/export shortcut" }
- ignore: {name: "Use tuple-section" }
- ignore: {name: "Use newtype instead of data" } # ArgumentFields
- ignore: {name: "Use fmap" } # we use liftM because Functor isn't superclass of Monad prior AMP