Formatting is really funny, I'm on board with gofm...
# random
g
Formatting is really funny, I'm on board with gofmt like "this is how it is", with the one specific exception: I cant stand that
T
,
U
,
R
, and
S
are simply generally accepted names for parametric types in java. The convention I managed to ram down my teams throat was to use properly descriptive names, eg
fun <TCandidate> doSomething(candidate: TCandidate)
instead of
fun <T> doSomething(candidate: T)
but that leads to a whole class of formatting issues nobody else in kotlin has, so I've debated giving up on this fight.
❤️ 2