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
When working with a long module name (typically when using Something__Namespaced), if you use a single pipe it will break line at the argument:
Something__Namespaced
let long = SomeLongModuleName.make("Lorem Ipsum es simplemente")->SomeLongModuleName.map( updateFooToBar, )
This is more difficult to read than if it broke line on the pipe:
let long = SomeLongModuleName.make("Lorem Ipsum es simplemente") ->SomeLongModuleName.map(updateFooToBar)
I would love it if at the very least I can make the decision myself by introducing a newline, similar with how 2+ pipes will auto break or not
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When working with a long module name (typically when using
Something__Namespaced
), if you use a single pipe it will break line at the argument:This is more difficult to read than if it broke line on the pipe:
I would love it if at the very least I can make the decision myself by introducing a newline, similar with how 2+ pipes will auto break or not
The text was updated successfully, but these errors were encountered: