From b98d3f7be2bbb3e4d43ca771902210e120deb86c Mon Sep 17 00:00:00 2001 From: Franklin <93784+fvdm@users.noreply.github.com> Date: Fri, 13 Mar 2020 17:21:42 +0100 Subject: [PATCH] Add .editorconfig for consistent whitespace --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..6f2164bd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 4 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.json] +insert_final_newline = false