Skip to content

Commit

Permalink
Allow "_" in package names
Browse files Browse the repository at this point in the history
  • Loading branch information
dmikurube committed Apr 26, 2024
1 parent 45f1dc3 commit 08ad317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
<property name="option" value="nl"/>
</module>
<module name="PackageName">
<property name="format" value="^[a-z]+(\.[a-z][a-z0-9]*)*$"/>
<property name="format" value="^[\_a-z]+(\.[\_a-z][\_a-z0-9]*)*$"/>
<message key="name.invalidPattern"
value="Package name ''{0}'' must match pattern ''{1}''."/>
</module>
Expand Down

0 comments on commit 08ad317

Please sign in to comment.