From 62b888e862c304b703832a5c2e3345908380b457 Mon Sep 17 00:00:00 2001 From: Joseph Milla Date: Thu, 5 Jul 2018 12:02:36 -0700 Subject: [PATCH] Add editorconfig --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..402443e0 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# EditorConfig +# editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{toml,yml,yaml}] +indent_size = 2 +