Git change all crlf to lf for vscode

git add -A
git commit -m "Commit Message Before Changing End Of Line"
git push
# begin changing end of line globally
git config core.autocrlf false
git rm --cached -r .
git reset --hard

Change VSCode settings.json Option

{
  "files.eol": "\n"
}

Preview settings.json