24 lines
324 B
Plaintext
24 lines
324 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
if condition {
|
||
|
doSomething()}
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
if condition {
|
||
|
doSomething()
|
||
|
}
|
||
|
----
|
||
|
|
||
|
== Exceptions
|
||
|
|
||
|
When blocks are inlined (open and close curly braces on the same line), no issue is triggered.
|
||
|
----
|
||
|
if condition {doSomething()}
|
||
|
----
|