rspec/rules/S2801/rpg/rule.adoc
Fred Tingaud 16f6c0aecf
Inline adoc when include has no additional value (#1940)
Inline adoc files when they are included exactly once.

Also fix language tags because this inlining gives us better information
on what language the code is written in.
2023-05-25 14:18:12 +02:00

46 lines
973 B
Plaintext

== Why is this an issue?
The use of positional notation can quickly become confusing, especially in a large or complex data structure. To keep the code clean and understandable, use length notation instead.
=== Noncompliant code example
[source,rpg]
----
D PERSON DS QUALIFIED
* Noncompliant
D FName 1 30
D LName 31 60
----
=== Compliant solution
[source,rpg]
----
D PERSON DS QUALIFIED
D FName 30
D LName 30
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
Use length notation for this data structure definition.
'''
== Comments And Links
(visible only on this page)
=== on 2 Apr 2015, 19:33:25 Ann Campbell wrote:
http://www.bmeyers.net/faqs/14-tips/32-rpg-iv-style?start=2
endif::env-github,rspecator-view[]