Support detecting redundant $ in context of BlockArguments
arybczak opened this issue · 2 comments
arybczak commented
As in the title :)
ndmitchell commented
Can you give an example to test on?
arybczak commented
E.g. in
foo = bar $ do
...
or
foo = bar $ \case
Blah -> ...
The $
is necessary without BlockArguments
, but redundant when it's enabled. It would be nice if hlint
could detect this.