rspec/rules/S1510/abap/rule.adoc
2021-04-28 18:08:03 +02:00

25 lines
330 B
Plaintext

Naming conventions are an important tool in efficient team collaboration. This rule checks that all form names match a regular expression naming convention.
== Noncompliant Code Example
With the default regular expression:
----
FORM MyForm.
...
ENDFORM.
----
== Compliant Solution
----
FORM MY_FORM.
...
ENDFORM.
----