repository template for Rust projects

chore: render tabs as 4 spaces instead of 8 (#19)

A personal opinion of my own; 4 is a nice balance between rendering tabs as 2 spaces vs 8 spaces. This updates both Rustfmt (.rustfmt.toml) and EditorConfig (.editorconfig)

authored by samanthanguyen.me and committed by GitHub 814d765c 4eb6089d

Changed files
+2 -2
+1 -1
.editorconfig
··· 8 8 trim_trailing_whitespace = true 9 9 insert_final_newline = true 10 10 indent_style = tab 11 - indent_tab = 8 11 + indent_tab = 4 12 12 13 13 [*.md] 14 14 trim_trailing_whitespace = false
+1 -1
.rustfmt.toml
··· 1 1 hard_tabs = true 2 - tab_spaces = 8 2 + tab_spaces = 4