Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

세상에는 다양한 editor 와 IDE 가 있고 여러 개의 encoding 이 존재합니다.

어떤 OS 는 줄 바꿈을 의미하는 개행 문자를 LF(line feed) 만 쓰고 어떤 OS 는 CR + LF 를 쓰기도 합니다.


코딩은 협업이기 때문에 사용하는 도구


EditorConfig



root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

[*.{yml,yaml}]
indent_size = 2



Ref

  • No labels