We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
no-redundant-pipe
Same as no-redundant-flow but for pipe instead of flow.
no-redundant-flow
pipe
flow
Example of incorrect code:
const x = pipe(1);
The text was updated successfully, but these errors were encountered:
Another example:
pipe(pipe(value, fn1), fn2)
should be
pipe(value, fn1, fn2)
Sorry, something went wrong.
#225
Successfully merging a pull request may close this issue.
Same as
no-redundant-flow
but forpipe
instead offlow
.Example of incorrect code:
The text was updated successfully, but these errors were encountered: