Inspectopedia Help

Package naming convention

Reports package names that do not follow the naming conventions.

You can specify the required pattern in the inspection options.

Recommended naming conventions: names of packages are always lowercase and should not contain underscores.

Example:

org.example.project

Using multi-word names is generally discouraged, but if you do need to use multiple words, you can either just concatenate them together or use camel case

Example:

org.example.myProject

Inspection options

Option

Type

Default

Pattern

String

[a-z_][a-zA-Z\d_]*(\.[a-z_][a-zA-Z\d_]*)*

Inspection Details

Available in:

IntelliJ IDEA 2023.3, Qodana for JVM 2023.3

Plugin:

Kotlin, @snapshot@

Last modified: 13 July 2023