"Blank lines after class header" option supported

This commit is contained in:
Dmitry Jemerov
2017-06-22 15:33:01 +02:00
parent 6a96ade02c
commit 5c8a90fe85
5 changed files with 84 additions and 3 deletions
@@ -0,0 +1,28 @@
class Foo {
fun bar() {
}
}
object Bar {
fun xyzzy() {
}
}
val f = object {
fun foo() {}
}
class FooM
: IFoo {
fun bar()
}
class FooC(
val x: String
) {
fun bar()
}
// SET_INT: BLANK_LINES_AFTER_CLASS_HEADER = 1
+26
View File
@@ -0,0 +1,26 @@
class Foo {
fun bar() {
}
}
object Bar {
fun xyzzy() {
}
}
val f = object {
fun foo() {}
}
class FooM
: IFoo {
fun bar()
}
class FooC(
val x: String
) {
fun bar()
}
// SET_INT: BLANK_LINES_AFTER_CLASS_HEADER = 1