From 4037b91fe4f724b1899fe4277a340aeb95cb88f3 Mon Sep 17 00:00:00 2001 From: Jeff Jewiss Date: Sun, 6 Dec 2020 17:13:48 -0500 Subject: [PATCH] adds editorconfig (#432) --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..ee27ae4db --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.{md, markdown, eex}] +trim_trailing_whitespace = false