rspec/rules/S1121/how-to-fix-it.adoc
Peter Trifanov d953a8c265
Modify S1121: Migrate to LayC - Assignments should not be made from within sub-expressions
Co-authored-by: Fred Tingaud <frederic.tingaud@sonarsource.com>
2023-10-13 19:17:01 +02:00

5 lines
340 B
Plaintext

Making assignments within sub-expressions can hinder the clarity of source code.
This practice essentially gives a side-effect to a larger expression, thus making it less readable. This often leads to confusion and potential errors.
Extracting assignments into separate statements is encouraged to keep the code clear and straightforward.