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
Declarations, except consecutive declarations of properties, should be separated by a blank line.
const val foo1 = "foo1"
class FooBar {
val foo2 = "foo2"
val foo3 = "foo3"
fun bar1() {
}
fun bar2() = "bar"
val foo3 = "foo3"
val foo4 = "foo4"
enum Foo {}
}
should be formatted as:
const val foo1 = "foo1"
class FooBar {
val foo2 = "foo2"
val foo3 = "foo3"
fun bar1() {
}
fun bar2() = "bar"
val foo3 = "foo3"
val foo4 = "foo4"
enum Foo {}
The text was updated successfully, but these errors were encountered:
Declarations, except consecutive declarations of properties, should be separated by a blank line.
should be formatted as:
The text was updated successfully, but these errors were encountered: