Add file type exceptions to .editorconfig

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

View file

@ -6,4 +6,11 @@ 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