Pattern: Use of line break after binary operator
Issue: -
Line breaks should occur before the binary operator to keep all operators aligned.
income = (gross_wages +
taxable_interest)
income = (gross_wages
+ taxable_interest)
Pattern: Use of line break after binary operator
Issue: -
Line breaks should occur before the binary operator to keep all operators aligned.
income = (gross_wages +
taxable_interest)
income = (gross_wages
+ taxable_interest)