From bb19b949e457f920cffb4bf02ec4aaeaf1e74d6f Mon Sep 17 00:00:00 2001 From: Elijah Kotyluk Date: Thu, 1 Apr 2021 06:52:16 -0700 Subject: [PATCH] style(editor-config): add .editorconfig file to project root. --- .editorconfig | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..9d08a1a8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true