When typing: ``` let x = 1; /* foo */ let y = 2; ``` With CRLF (windows) line endings you get: ``` let x = 1; /* foo */ let y = 2; ``` With LF (unix) line endings you get: ``` let x = 1; /* foo */ let y = 2; ```
When typing:
With CRLF (windows) line endings you get:
With LF (unix) line endings you get: