What's the most common convention for naming files...
# codingconventions
n
What's the most common convention for naming files containing strictly extension functions?
fooExt.kt
FooExt.kt
, etc?
c
FooExtensions
Typically the extension files are scoped to the class I’m writing the extensions on
g
FooExt.kt
because long names are boring 🙂 Didn't think about lowercase filenames, I'm intrigued.
s
FooExtensions.kt because long names are not boring. 😅
m
FooExt.kt or just Ext.kt
n
I’ve seen lower case names where the contents are package level functions since the package string is in lower case
☝️ 1
g
so, module level functions, because it's kotlin? 🧌
n
internal
breaks down pretty fast when your teammates don't realize that Gradle source sets are the same target