rspec/rules/S1125/go/rule.adoc

29 lines
342 B
Plaintext
Raw Normal View History

include::../description.adoc[]
== Noncompliant Code Example
----
if boolFunc() || false {
// ...
}
flag := x && true
----
== Compliant Solution
----
if boolFunc() {
// ...
}
flag := x
----
ifdef::rspecator-view[]
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::rspecator-view[]