Specifically, I would like things like:
x=5 FIX TO: x = 5
BUT: func_call(x=5,
y=7) should be left as-is
x==y FIX TO: x == y, same for !=
( x, y , z ) FIX TO: (x, y, z); same for [ x, y, z ]
{ x : 1, y: 2 } FIX TO: {x: 1, y: 2}
Lines longer than specified length should be wrapped:
func_call(
......................................................................,
myvar)
TO:
func_call(
......................................................................,
myvar)
I think that covers the most hard to read, annoying to fix things..
-ak