rspec/rules/S1125/go/rule.adoc

47 lines
612 B
Plaintext
Raw Normal View History

2023-10-13 13:50:06 +02:00
:true: true
:false: false
:ops: !, &&, ||, ==, !=
== Why is this an issue?
include::../description.adoc[]
2023-12-22 10:07:51 +01:00
== How to fix it
include::../how-to-fix-it.adoc[]
2023-10-13 13:50:06 +02:00
=== Code examples
2023-10-13 13:50:06 +02:00
==== Noncompliant code example
[source,go,diff-id=1,diff-type=noncompliant]
----
if boolFunc() || false {
// ...
}
flag := x && true
----
2023-10-13 13:50:06 +02:00
==== Compliant solution
2023-10-13 13:50:06 +02:00
[source,go,diff-id=1,diff-type=compliant]
----
if boolFunc() {
// ...
}
flag := x
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
'''
endif::env-github,rspecator-view[]