style: run `dos2unix` to remove Windows newlines
Created by: c-dilks
Remove the extra carriage return, commonly inserted by Windows text editors. They can often cause issues in parsed files, so this PR just removes them all.
When viewing the diff
of this PR, be sure to check "Hide Whitespace" or it looks like I changed way more than I did!
Procedure:
rg -l '\r' | xargs -I{} dos2unix {}
where rg
is ripgrep
.