Answers for "lf crlf visual studio code"

0

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
Posted by: Guest on May-20-2021

Code answers related to "lf crlf visual studio code"

Browse Popular Code Answers by Language