Hi guys, I was wondering what is the naming conve...
# announcements
t
Hi guys, I was wondering what is the naming convension for files containing ‘multiple’ stuff - classes, extension functions, etc... So far we used lowercase naming for such things. Like functional.kt, builders.kt, etc.
t
Don't think there is an official naming convention, but I usually name it something of the sort of XHelpers.kt or XExtensions.kt where X is some word describing the group
s
Kotlin internally uses upper case ie. Maps.kt.
d
I like naming them with a verb where I can - building.kt, reflecting.kt etc
s
I always name them in camel case, but that's just because that's the way Scala does it and I carried on.
t
Thxs for the feedback, guys!