From 732c34db55f09e22bafce133a6492f25fa8ef1d5 Mon Sep 17 00:00:00 2001 From: Joe Pea Date: Fri, 22 May 2020 01:28:56 -0700 Subject: [PATCH] add editorconfig (tells editors which basic text format to use) --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..80f989d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# http://EditorConfig.org + +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true