.editorconfig (386B)
1 root = true 2 3 [*] 4 end_of_line = lf 5 charset = utf-8 6 trim_trailing_whitespace = true 7 insert_final_newline = true 8 9 # visual studio editorconfig plugin specific settings 10 guidelines = 80, 120, 160 11 12 [*.{c,h}] 13 indent_style = tab 14 indent_size = 8 15 16 [*.sh] 17 indent_style = tab 18 indent_size = 8 19 20 [*.py] 21 indent_style = space 22 indent_size = 4 23 24 [*.{conf,json,md,txt}] 25 indent_style = space 26 indent_size = 2