rspec/rules/S1510/rule.adoc
Arseniy Zaostrovnykh 7ca29f686f Force linebreaks
2021-02-02 15:02:10 +01: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.
----