Update pmd-apex/src/test/resources/net/sourceforge/pmd/lang/apex/rule/codestyle/xml/ClassNamingConventions.xml

Co-authored-by: Andreas Dangel <andreas.dangel@adangel.org>
This commit is contained in:
sgnl-labs 2024-07-13 05:36:44 -07:00 committed by GitHub
parent 1be5242c8c
commit 5f669fca31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -218,6 +218,7 @@ public class Outer {
* Inner class should be camel case.
* Outer class should have a prefix (one character, all caps), underscore, then camel case.
* Enum name should be all caps (not best practice!)
* See #5048
</description>
<rule-property name="innerClassPattern">[A-Za-z]+</rule-property>
<rule-property name="classPattern">[A-Z]_[A-Za-z]+</rule-property>