From 32db19f68f3fe590fde8392e5af0fd4d1385d1f8 Mon Sep 17 00:00:00 2001 From: Saibamen Date: Sat, 11 Apr 2020 17:40:36 +0200 Subject: [PATCH] Create .editorconfig (#2528) By Adam "Saibamen" Stachowicz. --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000000..b2a5a96a6f9 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +end_of_line = crlf +insert_final_newline = true +charset = utf-8 +indent_size = 4 +indent_style = space +trim_trailing_whitespace = true + +[*.{json,yml,md}] +indent_size = 2