rspec/rules/S1105/swift/rule.adoc

40 lines
620 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
if condition
{
doSomething()
}
----
== Compliant Solution
----
if condition {
doSomething()
}
----
== Exceptions
Closure and inlined blocks (left and right curly braces on the same line) are ignored by this rule.
2021-02-02 15:02:10 +01:00
2020-06-30 12:47:33 +02:00
----
if condition {doSomething()} // Compliant
reversed = sorted(
names,
{ (s1: String, s2: String) -> Bool in // Compliant
return s1 > s2
})
----
ifdef::env-github,rspecator-view[]
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]