From 5d4e1ba20eb7d06c1b394063a71d34f15d5af141 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Sat, 28 Sep 2024 08:35:51 +0200 Subject: [PATCH] =?utf8?q?`.gitignore`=20und=20`.editorconfig`=20hinzugef?= =?utf8?q?=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .editorconfig | 13 +++++++++++++ .gitignore | 3 +++ 2 files changed, 16 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e9dce24 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +indent_style = space +indent_size = tab +tab_width = 2 +charset = utf-8 +end_of_line = lf +trim_trailing_whitespace = true +insert_final_newline = false + +[*.properties] +charset = latin1 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6240411 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.iml +.idea +target -- 2.20.1