vs code issue crlf and lf code example
Example: lf crlf visual studio code
// linefeed or newline (LF), also \n.
// cariage return (CR), also \r.
// Line end with \n (LF).
// Line end with \r\n (CRLF).
in .vscode/settings.json put
{
"files.eol": "\n",
}
for all new file getting LF standard
{
"files.eol": "\r\n",
}
CRLF standard