summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorentin Noël <tintou@noel.tf>2023-04-29 21:00:19 +0200
committerNiels De Graef <nielsdegraef@gmail.com>2023-05-01 11:18:44 +0000
commit8f8010e4da2fc1d88c71a13330f7aaad7e2ff817 (patch)
tree0c5f6be85ec1081bc6f38433288a94484928c3c7
parent7ddccaeb8b677fdd84b859a3982ced6879f38208 (diff)
downloadfolks-master.tar.gz
Add .editorconfig fileHEADmaster
Allows to have consistent file indentation configured by default for all editors. See https://editorconfig.org/ for more information.
-rw-r--r--.editorconfig25
1 files changed, 25 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 00000000..7a547908
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,25 @@
+# SPDX-FileCopyrightText: 2023 The Folks Authors
+# SPDX-License-Identifier: CC0-1.0
+
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+trim_trailing_whitespace = true
+
+[*.vala]
+indent_size = 2
+indent_style = space
+insert_final_newline = true
+
+[meson.build]
+indent_size = 2
+indent_style = space
+
+[*.yml]
+indent_size = 2
+indent_style = space
+
+[*.md]
+max_line_length = 80 \ No newline at end of file