Shared naming conventions allow teams to collaborate efficiently.
This rule raises an issue when a class name does not match a provided regular expression.
For example, with the default provided regular expression ^([A-Z0-9_]*|[a-z0-9_]*)$
, the classes:
CLASS MyClass DEFINITION. "Noncompliant
...
ENDCLASS.
should be renamed to
CLASS MY_CLASS DEFINITION.
...
ENDCLASS.