When formatting the code, the equal sign is being pushed. Is there any configuration to fix this? Example: Before: ``` $abc = 1; $abcdefg = 1; $i = 0; ``` After: ``` $abc = 1; $abcdefg = 1; $i = 0; ``` I want it to stay the same as it was before. Is that possible?