.editorconfig (366B)
1 # More info: http://EditorConfig.org 2 root = true 3 4 # * here means any file type 5 [*] 6 end_of_line = crlf 7 insert_final_newline = true 8 9 # latin1 is a type of ASCII, should work with mbcs 10 [*.{h,c,cpp}] 11 charset = latin1 12 indent_style = space 13 indent_size = 2 14 trim_trailing_whitespace = true 15 curly_bracket_next_line = false