diff --git a/users/Profpatsch/.hlint.yaml b/users/Profpatsch/.hlint.yaml index 09e6f2c95..7c29bf6f4 100644 --- a/users/Profpatsch/.hlint.yaml +++ b/users/Profpatsch/.hlint.yaml @@ -33,6 +33,7 @@ - ignore: { name: Use <$> } - ignore: { name: Use tuple-section } - ignore: { name: Use forM_ } +- ignore: { name: Functor law } # fst and snd are usually a code smell and should be explicit matches, _naming the ignored side. - ignore: { name: Use fst } - ignore: { name: Use snd } @@ -65,6 +66,7 @@ - ignore: { name: Fuse foldr/map } - ignore: { name: Fuse traverse/map } - ignore: { name: Fuse traverse_/map } +- ignore: { name: Fuse traverse/<$> } # this is silly, why would I use a special function if I can just (heh) `== Nothing` - ignore: { name: Use isNothing }