Skip to content

00. 개발환경 설정 가이드

박태영 edited this page Sep 21, 2024 · 2 revisions

git, vscode 라인엔딩 설정

  • git에서 아래와 같이 autocrlf 설정을 맞춘다.
# mac
git config --global core.autocrlf input

# windows
git config --global core.autocrlf true
  • vscode는 [설정] 메뉴에서 eol을 \n으로 맞춘다.
image
  • [Render Line Endings] 확장을 설치하면 CRLF, LF, CR이 렌더링되어 표시된다.
    • CRLF ↵ \r\n
    • LF ↓ \n
    • CR ← \r
image