From 20d706aad827df152fe3008cf2f58fbae847cd02 Mon Sep 17 00:00:00 2001 From: Mitch Capper Date: Thu, 22 Jun 2023 14:06:46 -0700 Subject: [PATCH] Basic editor config to avoid some whitespace issues --- .editorconfig | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..0ea0cc46c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +# http://editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true