Binary Operator to Start Line

Created by Microsoft, Described by waldo

Description

Do not start a line with a binary operator.

Bad code

"Quantity to Ship" :=
    Quantity 
    - "Quantity Shipped"

Good code

"Quantity to Ship" :=
    Quantity -
    "Quantity Shipped"

Last modified October 23, 2025: Merge pull request #265 from igor-ctrl/patch-1 (afc35a8) by Henrik Helgesen