METHOD MyMethod
...
ENDMETHOD.
Shared naming conventions allow teams to collaborate efficiently. This rule checks that all function names match a provided regular expression.
With default provided regular expression ^([A-Z0-9_]*|[a-z0-9_]*)$
:
METHOD MyMethod
...
ENDMETHOD.
METHOD MY_METHOD
...
ENDMETHOD.