50 lines
748 B
Plaintext
50 lines
748 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
[source,swift]
|
|
----
|
|
if condition
|
|
{
|
|
doSomething()
|
|
}
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
[source,swift]
|
|
----
|
|
if condition {
|
|
doSomething()
|
|
}
|
|
----
|
|
|
|
== Exceptions
|
|
|
|
Closure and inlined blocks (left and right curly braces on the same line) are ignored by this rule.
|
|
|
|
|
|
----
|
|
if condition {doSomething()} // Compliant
|
|
reversed = sorted(
|
|
names,
|
|
{ (s1: String, s2: String) -> Bool in // Compliant
|
|
return s1 > s2
|
|
})
|
|
----
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::../message.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|