rspec/rules/S1542/abap/rule.adoc

20 lines
254 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
include::../description.adoc[]
== Noncompliant Code Example
With default provided regular expression: ^([A-Z0-9_]*|[a-z0-9_]*)$
2020-06-30 12:47:33 +02:00
----
FUNCTION MyFunction.
...
ENDFUNCTION.
----
== Compliant Solution
----
FUNCTION MY_FUNCTION.
...
ENDFUNCTION.
----