Closed DrewRWx closed 9 years ago
I would say merge this change. There are ways of asking diff programs to ignore white space.
I found a tool called ack that made this a lot safer.
ack --print0 -l '[ \t]+$' | xargs -0 -n1 perl -pi -e 's/[ \t]+$//'
killed the trailing whitespace.git status --porcelain | cut -c 4- | perl -ne 'print $1 if m/\.([^.\/]+)$/' | sort -u
verified the filetypes affected.
A nuclear option to avoid muddling good commits.