Skip to content
New issue

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

Add no-redundant-pipe #221

Open
OliverJAsh opened this issue Dec 8, 2021 · 2 comments · May be fixed by #225
Open

Add no-redundant-pipe #221

OliverJAsh opened this issue Dec 8, 2021 · 2 comments · May be fixed by #225

Comments

@OliverJAsh
Copy link
Contributor

Same as no-redundant-flow but for pipe instead of flow.

Example of incorrect code:

const x = pipe(1);
@OliverJAsh
Copy link
Contributor Author

OliverJAsh commented Dec 8, 2021

Another example:

pipe(pipe(value, fn1), fn2)

should be

pipe(value, fn1, fn2)

@OliverJAsh OliverJAsh linked a pull request Dec 11, 2021 that will close this issue
@OliverJAsh
Copy link
Contributor Author

#225

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant