From 10ac00d5ef3fde0bcbf75dac44bfcc832e9fafeb Mon Sep 17 00:00:00 2001 From: Alexander Schwartz Date: Wed, 15 Sep 2021 15:05:43 +0200 Subject: [PATCH] Adding an .editorconfig file to avoid markdown file to not have a final newline. (#551) Also blanks at the end of a line should be removed. --- .editorconfig | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..9f48faba9 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,6 @@ +root = true + +[*] +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true