You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not sure whether to classify it as a bug or not. On one hand, I do agree that it looks less pretty than the original code. The argument bc it can fit on the same line is not a convincing argument as that depends on the size of your indent. Also the Kotlin coding conventions do not provide an example that fits with your example. Based on the examples, I think that it should be formatted something like:
internal class MyChildClass(
scope: CoroutineScope
) : MyParentClass(
param1 = "one",
param2 = "two"
),
CoroutineScope by scope
This can best be resolved when implementing #1349.
Is reformatting:
to be:
a bug? the error is
Missing newline after ","
and violates thewrapping
rule.My take here is that the following format looks...off (bc it can fit on the same line):
Using version
0.48.2
The text was updated successfully, but these errors were encountered: