From 8dd09e069e69c434ab2c55aa063a2b793af32d79 Mon Sep 17 00:00:00 2001 From: lucperkins Date: Wed, 4 Mar 2020 14:01:58 -0800 Subject: [PATCH] Add editorconfig file Signed-off-by: lucperkins --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..3200c88 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +end_of_line = lf + +[Makefile] +indent_style = tab + +[*.{html,js,json,md,sass,yaml}] +indent_style = space +indent_size = 2 + +[*.py] +indent_style = space +indent_size = 4