rspec/rules/S1940/swift/rule.adoc
2020-06-30 17:16:12 +02:00

16 lines
210 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
----
if !(a == 2) {...} // Noncompliant
let b = !(i < 10) // Noncompliant
----
== Compliant Solution
----
if a != 2 {...}
let b = i >= 10
----