From c04b4cbb63089eb8e84bcfa4cce3d3f037178914 Mon Sep 17 00:00:00 2001 From: Erin Date: Sat, 3 Jun 2017 17:12:31 -0500 Subject: [PATCH] Add an editorconfig --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..3c4af81 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +trim_trailing_whitespace = true +insert_final_newline = true + +[*.asm] +indent_style = tab +indent_size = 4 + +[*.rs] +indent_style = space +indent_size = 4