RulesCommonbinary-expression-operand-orderOn this pagebinary-expression-operand-orderv1.6.0stylehas auto-fixfree+ Warns when a literal value is on the left-hand side in binary expressions. Unclear why or when to use this rule? Example ❌ Bad: // LINT: Prefer literals at right-hand side in binary expressions.// Try swapping the operands.final a = 1 + b; ✅ Good: final a = b + 1; Related Rules no-boolean-literal-compare avoid-conditions-with-boolean-literals