From 0da33df33f45a1ba23ca2f2860ebe2112226648b Mon Sep 17 00:00:00 2001
From: Georg Krause <mail@georg-krause.net>
Date: Wed, 2 Feb 2022 09:58:13 +0100
Subject: [PATCH] Add editorconfig to project

---
 .editorconfig | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 .editorconfig

diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..d125af0
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,13 @@
+# We don't want users to overwrite configs with their own file
+root = true
+
+# Define rules for all filetypes
+[*]
+# We want to indent with tabs to allow users to individually set the tab width
+indent_style = tabs
+# We want clean linux style line breaks
+end_of_line = lf
+# Make sure all files have the right charset
+charset = utf-8
+# Nobody needs trailing whitespaces at the end of a file
+trim_trailing_whitespace = true
-- 
GitLab