I see that in the Google Style Guide <it's recomme...
# codingconventions
d
I see that in the Google Style Guide it's recommended to use only lowercase for packages definition, is it also the case for module names, or is it fine to use camel case? I couldn't find a rule for #detekt about it, but with
PackageNaming
and
InvalidPackageDeclaration
, it seems that implicitly the convention is the same, just use lowercase
e
Both are reflected/connected to the file system. And we know how painful is casesensitive file systems could be
so since majority of time we use lower case that is probably preferred for all
👍 1
d
Thanks! do you know if there's any kind of check for that, or just a combination of the two mentioned above?
e
Sorry, don't know about rule existence (small experience)