how to change crlf to lf in vscode for all files code example
Example: change all crlf to lf vscode
git config core.autocrlf false
git rm --cached -r .
git reset --hard
git config core.autocrlf false
git rm --cached -r .
git reset --hard