From a0b90dc4403a4418e43136b7758a2bdeddb7ed16 Mon Sep 17 00:00:00 2001 From: Eric Stern Date: Mon, 5 Oct 2020 10:32:50 -0700 Subject: [PATCH] Editorconfig file set up --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..c2e683e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +charset = utf-8 +trim_trailing_whitespace = true + +[*.{yml,yaml}] +indent_size = 2 + +[*.{md,markdown}] +trim_trailing_whitespace = false