From ad6e7814de279d6428f351ae0cca4c7648ab45bb Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Thu, 3 May 2018 00:25:14 -0400 Subject: [PATCH] Add a .editorconfig file The only setting of note is to use hard tabs in rust source files. --- .editorconfig | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..65356d3a4 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,6 @@ +# top-most .editorconfig file +root = true + +# use hard tabs for rust source files +[*.rs] +indent_style = tab