From b4deee29af014c93c56b9da17cb42d36dc4e51e2 Mon Sep 17 00:00:00 2001 From: "Janik H." Date: Fri, 12 Jul 2024 19:37:52 +0200 Subject: [PATCH] editorconfig: init Add a barebones `.editorconfig` to at least trim whitspaces and enforce some minimal norms --- .editorconfig | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..afb1fc7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8