Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. # 최 상위 EditorConfig 파일
  2. root = true
  3.  
  4. # 모든 파일에 유닉스 스타일의 줄바꿈과 파일 끝을 지정합니다
  5. [*]
  6. end_of_line = lf
  7. insert_final_newline = true
  8.  
  9. # 여러 유형의 확장자에 대한 기본 문자열 설정을 합니다
  10. [*.{js,py}]
  11. charset = utf-8
  12.  
  13. # Python파일의 경우 4칸의 스페이스바를 이용한 들여쓰기를 합니다
  14. [*.py]
  15. indent_style = space
  16. indent_size = 4
  17.  
  18. # Makefile에 탭을 이용한 들여쓰기를 합니다(크기는 지정하지 않습니다)
  19. [Makefile]
  20. indent_style = tab
  21.  
  22. # lib폴더 이하의 자바스크립트 파일에 스페이스를 이용한 두칸짜리 들여쓰기를 합니다
  23. [lib/**.js]
  24. indent_style = space
  25. indent_size = 2
  26.  
  27. # package.json, travis.yml 파일에 2칸, 스페이스 들여쓰기를 합니다.
  28. [{package.json,.travis.yml}]
  29. indent_style = space
  30. indent_size = 2
  31.  
  32. [*]
  33. charset = utf-8
  34. end_of_line = lf
  35. indent_size = 2
  36. indent_style = space
  37. insert_final_newline = true
  38. trim_trailing_whitespace = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement