From d4325078900e78ca5aeccd6760117abf032ca7bb Mon Sep 17 00:00:00 2001 From: Robert Blaine <4052340+rblaine95@users.noreply.github.com> Date: Sat, 6 Aug 2022 15:36:44 +0200 Subject: [PATCH] Create .editorconfig --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..2744167 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# http://editorconfig.org + +# this file is the top-most editorconfig file +root = true + +# all files +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false