rspec/rules/S1510/abap/rule.adoc

38 lines
547 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
Naming conventions are an important tool in efficient team collaboration. This rule checks that all form names match a regular expression naming convention.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
With the default regular expression:
2022-02-04 17:28:24 +01:00
[source,abap]
2021-04-28 16:49:39 +02:00
----
FORM MyForm.
...
ENDFORM.
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
2022-02-04 17:28:24 +01:00
[source,abap]
2021-04-28 16:49:39 +02:00
----
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[]