I’m not aware of such, got a link? AFAIK multiplication and division before addition and subtraction are pretty much de facto.
I have a feeling you want it to be so primarily because doing it the proper way would be more complex.
Note that precedence rules can be “avoided” by using parentheses. eg.
1 + 2 * 3 = 7
(1 + 2) * 3 = 9
If you really must have things “in order” you should be able to code in parentheses where appropriate.