rspec/rules/S122/description.adoc

10 lines
247 B
Plaintext
Raw Normal View History

2023-06-16 15:38:45 +02:00
== Why is this an issue?
Putting multiple statements on a single line lowers the code readability and makes debugging the code more complex.
include::{noncompliant}[]
Write one statement per line to improve readability.
include::{compliant}[]