Pattern: Use of line break before binary operator
Issue: -
Line breaks should occur after the binary operator to keep all variable names aligned.
Note: Despite being in the anti-pattern section, this will soon be considered the best practice.
income = (gross_wages
+ taxable_interest)
Note: Despite being in the best practice section, this will soon be considered an anti-pattern.
income = (gross_wages +
taxable_interest)