rhymix/.editorconfig
Kijin Sung d3843c733a Add file type exceptions to .editorconfig
- 파이썬, YAML 등 라이믹스의 탭 규칙을 따르면 안 되는 언어 예외선언
- 탭을 어떤 크기로 표시할 것인지는 .editorconfig에서 강제하지 않고 사용자 설정에 맡김
2022-03-18 15:56:33 +09:00

16 lines
228 B
INI

root = true
[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = true
indent_style = tab
[*.py]
indent_style = space
indent_size = 4
[*.{json,yml}]
indent_style = space
indent_size = 2