rspec/rules/S1510/abap/rule.adoc
2022-02-04 16:28:24 +00:00

38 lines
547 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:
[source,abap]
----
FORM MyForm.
...
ENDFORM.
----
== Compliant Solution
[source,abap]
----
FORM MY_FORM.
...
ENDFORM.
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
include::parameters.adoc[]
endif::env-github,rspecator-view[]