Hello all, what is the right convention when using...
# gradle
b
Hello all, what is the right convention when using variable name, underscore or camelcase
org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version
or
org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion
l
If you are in a .gradle.kts file, I'd say the same as Kotlin code style, which is camecase
v
Actually, in this case I'd say neither, but use version catalogs instead. :-) But yeah, if you must use a variable, use camelCase.
b
thank you guys