VS Code處理換行符最佳處理

除.bat文件外全部用LF (\n)換行

  1. VS Code中,Ctrl + , (Windows)或 cmd + , (MacOS) -> 搜尋eol, 將Files: Eol改為\n
  2. 新增.gitattributes, 內容如下:
    * text=auto eol=lf
    
    # 如果有需要 CRLF 的特例 (例如 .bat 檔)
    *.bat text eol=crlf