File tree Expand file tree Collapse file tree
content/programming-guides Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -96,9 +96,14 @@ Package names should attempt to be a short but unique name based on the project
9696name. The package should not be coupled with the directory path, especially when
9797the files are in a deeply nested path.
9898
99- Package names should not be Java style packages, even when located in Java or
100- Kotlin directory. Do not use any of ` com.company.x.y ` , ` com_company_x_y ` , or
101- ` java_com_company_x_y ` . Instead use ` x.y ` as the package and set `java_package =
99+ Package names should not use Java-style naming, even when located in a Java or
100+ Kotlin directory. Do not use any of the following styles:
101+
102+ * ` com.company.x.y `
103+ * ` com_company_x_y `
104+ * ` java_com_company_x_y `
105+
106+ Instead, use ` x.y ` for the ` package ` name and set `java_package =
102107"com.company.x.y"`.
103108
104109## Message Names {#message-names}
You can’t perform that action at this time.
0 commit comments