1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
charset = utf-8
end_of_line = lf
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = false
# Windows files
[*.{vbs,bat}]
indent_style = space
indent_size = 4
end_of_line = crlf
charaset = sjis
# 2 space indentation
[*.{yml,js,jsx,ts,tsx,json,rst,html}]
indent_size = 2
# 4 space indentation
[*.{py,php,md}]
indent_size = 4
# Tab indentation (no size specified)
[*.{go,cfg}]
indent_style = tab
[Makefile]
indent_style = tab
|