Awesome update indeed. I've been getting around it by using a regex find and replace which worked very well for me so far.
Here it is in case you want to give it a try
replace: ((?:UPROPERTY|UFUNCTION)\(.*\).*\n\t)\t
with $1
This will replace the matches with the contents of the first capture group which is the match without the last indent.
I'm not a regex wizard so I'm sure there could be a much better/smarter solution :)