I usually put a single public (extension) function...
# codingconventions
m
I usually put a single public (extension) function per file and name it the same as function except PascalCase, e.g.
fun assertAll
would go into
AssertAll.kt
.
k
mg6maciej: Really? Do you know that you're generating a class per file?
m
Is this a problem?