2021-02-21 06:58:40 +00:00
|
|
|
# More info: http://EditorConfig.org
|
|
|
|
root = true
|
|
|
|
|
|
|
|
# * here means any file type
|
|
|
|
[*]
|
|
|
|
end_of_line = crlf
|
|
|
|
insert_final_newline = true
|
|
|
|
|
|
|
|
# latin1 is a type of ASCII, should work with mbcs
|
2023-11-06 09:41:10 +00:00
|
|
|
[*.{h,c,cpp}]
|
2021-02-21 06:58:40 +00:00
|
|
|
charset = latin1
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
curly_bracket_next_line = false
|