fsprojects / FSharpLint

Lint tool for F#
https://fsprojects.github.io/FSharpLint/
MIT License
300 stars 73 forks source link

Fix bug in AvoidSinglePipeOperator #640

Closed webwarrior-ws closed 6 months ago

webwarrior-ws commented 6 months ago

Fix bug in AvoidSinglePipeOperator when it gives false positive on expressions with function application.

E.g.

someOtherFunc1 someParam someParam2 |> someOtherFunc3

Added failing test for this case.