Boot.dev Blog ยป Clean-Code ยป How to Get Consistent Line Breaks in vs Code (LF vs CRLF)

How to Get Consistent Line Breaks in VS Code (LF vs CRLF)

By Lane Wagner on Jun 18, 2020

Curated backend podcasts, videos and articles. All free.

Want to improve your backend development skills? Subscribe to get a copy of The Boot.dev Beat in your inbox each month. It's a newsletter packed with the best content for new backend devs.

Have you ever had the problem where you submit a pull request and the diff is much larger than it should be? Maybe the code looks identical, but GitHub tells you it’s completely different.

This is typically due to a difference in line endings, especially the difference in LF vs. CRLF. Unix systems like Linux and macOS use LF, the line feed character, for line breaks by default. Windows, on the other hand, is special and uses CR/LF, carriage return AND line feed characters, by default.

Michael Scott condescending to the Windows OS

Michael Scott On Windows Line Endings

Unless you work on a Windows-only team, the answer is almost always to change all your code to the Unix default of LF.

The Quick Fix for “End of line character is invalid” ๐Ÿ”—

If you’re here to quickly fix a single file that you’re having problems with, you’re in luck. At the bottom right of the screen in VS Code, click the little button that says LF or CRLF. After changing it to your preference, Voila, the file you’re editing now has the correct line breaks.

vscode crlf lf line endings switch

Click the LF/CRLF button to toggle line endings

The Big Fix ๐Ÿ”—

If you want new files to automatically have the correct line endings, then you can set the following setting in the top level of your settings.json file:

For LF:

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

CRLF:

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

If you set the above in your global settings.json file it will apply to your entire machine. If you just want the settings for the project you are working on, then edit the settings.json in the .vscode directory at the root of your project: .vscode/settings.json.

This setting will not automatically fix all files in your project that have the wrong line endings! It only applies to new ones. To fix the old ones go through and use the manual method as described in the first paragraph.

What is CRLF? ๐Ÿ”—

CR LF stands for “Carriage Return, Line Feed” - it’s a digital remnant of classic typewriters. With typewriters, you had to push the “carriage” (the thing that holds the paper) back into place, hence “Carriage Return”.

When everything went digital, some devices required a “Line Feed” character to terminate lines, so Microsoft decided to just make a new line have both_ characters so that they would work correctly on all devices.

CR and LF are just bytecodes. Computers store text characters as numbers in binary, just 1’s and 0s. Carriage Return (CR), is represented in ASCII (a common character encoding protocol) as 13, or in binary, 00001101. Likewise, the line feed character (LF) is 10 or 00001010.

As you can imagine, CRLF is just both bytes shoved up next to each other: 0000110100001010.

Ascii Table

Find a problem with this article?

Report an issue on GitHub