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
Actual:
fun interface VeryVeryLongCustomInterface { fun function(options: Options): EndResult } val EMPTY_VERY_VERY_LONG_CUSTOM_INTERFACE: VeryVeryLongCustomInterface = VeryVeryLongCustomInterface { EndResult }
Preferable, perhaps?
val EMPTY_VERY_VERY_LONG_CUSTOM_INTERFACE: VeryVeryLongCustomInterface = VeryVeryLongCustomInterface { EndResult }
The text was updated successfully, but these errors were encountered:
I think this is the same as #252. cc @strulovich
Sorry, something went wrong.
BTW this happens because of the line break. If there were no line breaks it would be placed on a single line
val EMPTY: VeryVeryLongCustomInterface = VeryVeryLongCustomInterface { EndResult }
No branches or pull requests
Actual:
Preferable, perhaps?
The text was updated successfully, but these errors were encountered: