From 074749bc2d3fe582829e2aee0edc3d90daef1348 Mon Sep 17 00:00:00 2001 From: EricFromCanada Date: Thu, 14 May 2020 14:39:05 -0400 Subject: [PATCH] add .editorconfig --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000000..a0c7aa58f329 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# https://editorconfig.org/ + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true + +[**.{md,html}] +indent_size = 4 +x-soft-wrap-text = true