|
|
|
|
|
by cole-k
806 days ago
|
|
The eta reduction code hint is a weird one for sure, although let's be real with Haskell naming conventions that usually means dropping an 'x'. If the linter cares so much about making code point-free maybe they should start suggesting refactors like foo x = bar x (baz x)
to foo = bar <*> baz
(... /s) |
|