.editorconfig (342B)
1 root = true 2 3 [*] 4 end_of_line = lf 5 insert_final_newline = true 6 charset = utf-8 7 trim_trailing_whitespace = true 8 9 [*.{yaml,yml}] 10 indent_style = space 11 indent_size = 2 12 13 [*.{json,js,ts}] 14 indent_style = space 15 indent_size = 2 16 17 [*.{sh,bash}] 18 indent_style = space 19 indent_size = 4 20 21 [*.md] 22 trim_trailing_whitespace = false 23 24 [Makefile] 25 indent_style = tab