Hi In the new implementation of the code formattter I will remove useTraditionalPrecedence. This settings put additional parentheses around binary selector but I find it cumbersome
While it may make sense for
it turns
foo
^ 1 + 2 * 3
into
foo
^ (1 + 2) * 3
foo
^ 1 * 3 + 2
foo
^ (1 | 2) % 3
foo
^ 1 % 2 | 3
So let me know what you think but I will be hard to convince :)
Stef
