Skip to content

Commit 0db03e8

Browse files
committed
Disable two functor law hints
1 parent 93103cf commit 0db03e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data/hlint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,8 +475,8 @@
475475
# FUNCTOR
476476

477477
- warn: {lhs: fmap f (fmap g x), rhs: fmap (f . g) x, name: Functor law}
478-
- warn: {lhs: f <$> (g <$> x), rhs: f . g <$> x, name: Functor law}
479-
- warn: {lhs: x <&> g <&> f, rhs: x <&> f . g, name: Functor law}
478+
- ignore: {lhs: f <$> (g <$> x), rhs: f . g <$> x, name: Functor law}
479+
- ignore: {lhs: x <&> g <&> f, rhs: x <&> f . g, name: Functor law}
480480
- warn: {lhs: fmap id, rhs: id, name: Functor law}
481481
- warn: {lhs: id <$> x, rhs: x, name: Functor law}
482482
- warn: {lhs: x <&> id, rhs: x, name: Functor law}

0 commit comments

Comments
 (0)