.editorconfig ergänzt - siehe: ttps://editorconfig.org/
authorKai Moritz <kai@juplo.de>
Tue, 23 Aug 2022 15:23:35 +0000 (17:23 +0200)
committerKai Moritz <kai@juplo.de>
Mon, 7 Nov 2022 20:29:00 +0000 (21:29 +0100)
* Einziger gangbarer Weg, um IntelliJ beizubiegen, Leerzeichen für die
  Einrückung zu verwenden!
* ...aber auch für einige andere Dinge ganz praktisch...

.editorconfig [new file with mode: 0644]

diff --git a/.editorconfig b/.editorconfig
new file mode 100644 (file)
index 0000000..633c98a
--- /dev/null
@@ -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
\ No newline at end of file