From 0a3e3e13d297a3fe2164391ebbd0be0330561651 Mon Sep 17 00:00:00 2001 From: Darin Morrison Date: Fri, 13 Mar 2020 15:08:11 -0600 Subject: [PATCH] Add .editorconfig --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000000..1f016181852b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.rs] +indent_size = 4