Shared naming conventions improve readability and allow teams to collaborate efficiently. This rule checks that all package names match a provided regular expression.
Rename packages with the expected naming convention
With the default regular expression ^[a-z_]+(\.[a-z_][a-z0-9_]*)*$:
package org.exAmple; // Noncompliant
package org.example;