Working with .sh
files on Windows causes issues when running them in Linux Docker containers if they have EOL of CRLF. Can I make VS Code always work with LF fo
In your settings window, go to
Settings > Text Editor > Files > Eol
option. You'll fine following available options there
- \n
- \r\n
- auto (default)
Here \n
represents LF, \r\n
represents CRLF, and auto
use the operating system specific EL operator.
Select your option and save.
VS Code: version 1.13.3