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

21 lines
231 B
Plaintext

Each element should be on a line to itself.
== Noncompliant Code Example
[source,text]
----
<parent><child /></parent> <!-- Noncompliant -->
----
== Compliant Solution
[source,text]
----
<parent>
<child />
</parent>
----