From 854238357105a6da2bdc1f32e14a343ff0352a98 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Tue, 3 Nov 2020 10:59:19 -0500 Subject: [PATCH] chore: Add EditorConfig for IDE whitespace --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000000..beffa3084e7a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false