diff options
Diffstat (limited to '.hlint.yaml')
-rw-r--r-- | .hlint.yaml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.hlint.yaml b/.hlint.yaml index 5c50629f..4a0c8ddc 100644 --- a/.hlint.yaml +++ b/.hlint.yaml @@ -20,10 +20,9 @@ - ignore: {name: "Redundant return"} # 1 hint - ignore: {name: "Replace case with fromMaybe"} # 2 hints - ignore: {name: "Replace case with maybe"} # 4 hints -- ignore: {name: "Unused LANGUAGE pragma"} # 10 hints - ignore: {name: "Use $>"} # 4 hints - ignore: {name: "Use ++"} # 3 hints -- ignore: {name: "Use :"} # 3 hints +- ignore: {name: "Use :"} # 4 hints - ignore: {name: "Use <$>"} # 12 hints - ignore: {name: "Use <&>"} # 1 hint - ignore: {name: "Use <|>"} # 1 hint @@ -34,12 +33,11 @@ - ignore: {name: "Use concatMap"} # 1 hint - ignore: {name: "Use const"} # 4 hints - ignore: {name: "Use fewer LANGUAGE pragmas"} # 1 hint -- ignore: {name: "Use fewer imports"} # 1 hint - ignore: {name: "Use find"} # 1 hint - ignore: {name: "Use fmap"} # 12 hints - ignore: {name: "Use foldr"} # 1 hint - ignore: {name: "Use fromMaybe"} # 2 hints -- ignore: {name: "Use infix"} # 2 hints +- ignore: {name: "Use infix"} # 3 hints - ignore: {name: "Use intercalate"} # 1 hint - ignore: {name: "Use isAsciiLower"} # 1 hint - ignore: {name: "Use isAsciiUpper"} # 1 hint @@ -54,11 +52,14 @@ - ignore: {name: "Use notElem"} # 2 hints - ignore: {name: "Use print"} # 3 hints - ignore: {name: "Use record patterns"} # 5 hints +- ignore: {name: "Use second"} # 3 hints - ignore: {name: "Use sortOn"} # 3 hints -- ignore: {name: "Use tuple-section"} # 2 hints +- ignore: {name: "Use tuple-section"} # 3 hints - ignore: {name: "Use unless"} # 1 hint - ignore: {name: "Use void"} # 1 hint -- ignore: {name: "Use second"} # 3 hints +# Ignore within modules where following hlint or adding an HLint annotation +# would alter the expected test output. +- ignore: {name: "Unused LANGUAGE pragma", within: [QuasiExpr, TH, Ticket112]} # Module names (not all unique) where CPP can be used - extensions: - name: CPP |