Skip to content

Remove trailing whitespace from all text files

Tom Krizek requested to merge tkrizek/remove-trailing-whitespace into main

I've used the following command to remove the trailing whitespace for all tracked text files:

git grep -Il '' | xargs sed -i 's/[ \t]*$//'

Merge request reports