I started to write some code in Kotlin.
I don¨t want to write every class in separate file as IntelliJ suggests, Kotlin classes are often small. But I need some system how to find specific class. So I started to use this conventions for file names:
kotlin file = kotlin package
src
|-main
|-kotlin
|-a
|-c.kt - package x.y.z.a.c
|-d.kt - package x.y.z.a.d
|-a.kt - package x.y.z.a
|-b.kt - package x.y.z.b
What do you think about it?