R355 – Use (multiple – more then 1 allowed) space or tab before and after ‘=’ (equals) (RS) (WMB)

Use (multiple – more then 1 allowed) space or tab before and after ‘=’ (equals) (RS) (WMB)

When formatting ESQL, code around an “=” sign should have either a space or a tab to make the “=” easier to read.
This rule is similar to rule R311, but this rule allows for multiple tabs or spaces.

For example – instead of this

SET I=I+1;

Preferred SET I = I+1;