diff options
-rw-r--r-- | .hlint.yaml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.hlint.yaml b/.hlint.yaml index 1ab3ef0..0273398 100644 --- a/.hlint.yaml +++ b/.hlint.yaml @@ -71,6 +71,15 @@ note: 'Use `<.`' rhs: 'f <. g' +- hint: + lhs: 'f >>= g' + note: 'Use `+>`' + rhs: 'f +> g' + +- hint: + lhs: 'f <$> g' + note: 'Use `</`' + rhs: 'f </ g' #- hint: # lhs: 'f <. g' # note: 'Use `.>` for natural reading direction' |