개발 지식

Indentation(Tabs vs Spaces)

dm.kim 2022. 5. 8. 17:20

Tabs: 쉽게 사용가능, 대부분의 에디터에서 기본 들여쓰기로 되어있음, 에디터에서 space 몇 칸을 tab으로 설정할지 변경할 수 있음

Spaces: 어느 환경에서든 코드가 동일하게 보임(ex. GitHub PRS)

 

참고

https://www.quora.com/What-is-the-difference-between-tabs-and-spaces-for-indenting

 

What is the difference between tabs and spaces for indenting?

Answer (1 of 2): Tabs - They allow for user preference - Tab is the default indentation in many editors when hitting the tab key. So using spaces requires extra config e.g. editorconfig - They are syntax errors in several programming languages like Elm, F#

www.quora.com