]> git.ipfire.org Git - thirdparty/mlmmj.git/commitdiff
Add editorconfig to project
authorUffe Jakobsen <uffe@uffe.org>
Fri, 15 May 2026 19:09:35 +0000 (21:09 +0200)
committerbapt <bapt@noreply.codeberg.org>
Sat, 16 May 2026 05:32:46 +0000 (07:32 +0200)
.editorconfig [new file with mode: 0644]

diff --git a/.editorconfig b/.editorconfig
new file mode 100644 (file)
index 0000000..0b04dd6
--- /dev/null
@@ -0,0 +1,35 @@
+#
+# .editorconfig
+#
+# https://editorconfig.org/
+#
+
+root = true
+
+[*]
+end_of_line = lf
+insert_final_newline = true
+
+[*.{c,h}]
+inden_type = tab
+indent_size = 4
+trim_trailing_whitespace = true
+
+[Makefile,Makefile.in,*.mk]
+indent_style = tab
+indent_size = 8
+trim_trailing_whitespace = true
+
+[*.sh]
+inden_type = tab
+indent_size = 4
+trim_trailing_whitespace = true
+
+[*.md]
+inden_type = space
+indent_size = 2
+trim_trailing_whitespace = false
+
+#
+#
+#