diff options
Diffstat (limited to 'users/Profpatsch/.hlint.yaml')
-rw-r--r-- | users/Profpatsch/.hlint.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/users/Profpatsch/.hlint.yaml b/users/Profpatsch/.hlint.yaml index 09e6f2c95401..7c29bf6f4159 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 } |