I'm launch VSCode from an Ubuntu commandline on my Windows machine. I noticed that it was changing the line endings from the default Windows line ending. Specifically, when I was doing git diffs, I would see stuff like this:
Notice the ^M
So I read an article about how to fix this and it suggested the following git config change:
git config --global core.autocrlf true
But I'm still seeing these line endings being used when I update my code.