Skip to content

Commit

Permalink
checkstyle.xml: allow the digit "3" in package names
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Aug 24, 2023
1 parent c22f7ed commit 90fee8e
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 @@ -190,7 +190,7 @@
<!-- Checks for naming conventions -->
<!-- See https://checkstyle.org/checks/naming -->
<module name="PackageName">
<property name="format" value="^[a-z][a-z.]*[a-z]$"/>
<property name="format" value="^[a-z][a-z3.]*[a-z]$"/>
<message key="name.invalidPattern"
value="Package name ''{0}'' must match pattern ''{1}''."/>
</module>
Expand Down

0 comments on commit 90fee8e

Please sign in to comment.