summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorentin Noël <tintou@noel.tf>2022-06-14 11:22:32 +0000
committerCorentin Noël <tintou@noel.tf>2022-06-14 11:22:32 +0000
commitdb1d97beb70cb6f6ebfb98f46ac43cd5b186affe (patch)
tree305a476fff1292f680d191f5d7f962bd72c3fdd7
parenta444911d8dbce5d159b6257c4d2431a1e96ef82e (diff)
parent463483fbc9e4ad1a373a22f27532d98234488cae (diff)
downloadlibgnomekbd-db1d97beb70cb6f6ebfb98f46ac43cd5b186affe.tar.gz
Merge branch 'editorconfig' into 'master'
Add .editorconfig for easier communication of code conventions. See merge request GNOME/libgnomekbd!8
-rw-r--r--.editorconfig15
1 files changed, 15 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..98e0578
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,15 @@
+# see https://EditorConfig.org
+
+# top-most EditorConfig file
+root = true
+
+# Unix-style newlines with a newline ending every file
+[*]
+end_of_line = lf
+insert_final_newline = true
+
+# Matches multiple files with brace expansion notation
+# Set default charset
+[*.{c,h}]
+indent_style = tab
+indent_size = 8