-
Notifications
You must be signed in to change notification settings - Fork 507
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
MissingNewLine triggered on builder chain like pattern #380
Comments
Similar is also: BuyCustomThemeInteractor(MockRxBilling(
getPurchasedInApp = Observable.error(exception)
), analytics) Where it's complaining about |
I think your first bug is the same one as this one #368 - i didn't know how to describe it properly, but an assignment followed by some other statements seems to trigger it. |
@vanniktech I'm going to close this one since it's a dupe of #368 - feel free to open a separate ticket for the parentheses case. I'm not sure yet whether these all have the same root cause or not. |
Thanks. Once that other issue has a PR / fix, I can try it out again. |
When using the
--experimental
flag with ktlint 0.31.0 and the following configuration:the following code is flagged:
This is the output:
Missing newline after "="
My code is perfectly intended. I don't know why I'd want to have the
ShareEvent()
on its own line.The text was updated successfully, but these errors were encountered: