You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NoConfusingPrefixOperator seems to only report if the function has at least one argument applied to it. For example, this is currently not flagged by NoConfusingPrefixOperator, and it (presumably?) should be:
Maybe.map2 (>)(Dict.get n outerUses)(Dict.get n innerUses)
but e.g. this is:
Maybe.map ((>)1)(Dict.get n innerUses)
The text was updated successfully, but these errors were encountered:
NoConfusingPrefixOperator
seems to only report if the function has at least one argument applied to it. For example, this is currently not flagged byNoConfusingPrefixOperator
, and it (presumably?) should be:but e.g. this is:
The text was updated successfully, but these errors were encountered: