From e050fbca1e33d7d65e3758024b40530222c6c594 Mon Sep 17 00:00:00 2001 From: Jeremiah Winsley Date: Sat, 9 Oct 2021 14:57:01 -0400 Subject: [PATCH] Add editorconfig for better formatting --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..1b1a6ca6 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 + +[*.{json,yml,yaml,js}] +indent_size = 2 + +[*.toml] +indent_style = tab +tab_width = 4