Skip to content

Commit

Permalink
Merge pull request #3 from aboutbits/fix-checkstyle
Browse files Browse the repository at this point in the history
Allow member names with only one initial lower case character
  • Loading branch information
ThoSap authored Nov 26, 2024
2 parents 5ea7a40 + 4192898 commit 22b9ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
<module name="LocalFinalVariableName"/>
<module name="LocalVariableName"/>
<module name="MemberName">
<property name="format" value="^[a-z][a-z0-9][a-zA-Z0-9]*$"/>
<property name="format" value="^[a-z][a-zA-Z0-9]+$"/>
<message key="name.invalidPattern"
value="Member name ''{0}'' must match pattern ''{1}''."/>
</module>
Expand Down

0 comments on commit 22b9ed7

Please sign in to comment.