I use PhpStorm 2020.3.1 in my work and I encouneterd a problem when I work in a team and have to fix merge conflicts(I made git pull at first and apply updates manually ) and next I check my updates with command git diff I see that some automatic alignment is considered by git as my changes. I mean lines like :
$var1 = ‘value1’;
$varGte = ‘value2’;
$var= ‘value’;
are rendered into :
$var1 = ‘value1’;
$varGte = ‘value2’;
$var = ‘value’;
And it is very strange that I work with many files, but I have such a problem only with 1 file.
Are there some options ?
If there is a way remove such automatic alignment for all project or for 1 file?
Thanks!