summaryrefslogtreecommitdiffstats
path: root/.editorconfig
diff options
context:
space:
mode:
authora14m <[email protected]>2020-11-27 16:15:53 +0100
committera14m <[email protected]>2020-11-27 16:15:53 +0100
commitd1a020777af347f59b73b58f0ce96bb360dc6b35 (patch)
tree1bacfcab51a3f01086c764467cf0bbd060541975 /.editorconfig
parent457b74a710ef6d38986fd46bca6d5a30a251eab9 (diff)
Add editorconfig
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig19
1 files changed, 19 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..6a374b6
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,19 @@
+# http://editorconfig.org
+root = true
+
+[*]
+charset = utf-8
+indent_style = space
+indent_size = 2
+trim_trailing_whitespace = true
+end_of_line = lf
+insert_final_newline = true
+
+[*.py]
+indent_size = 4
+
+[Makefile]
+indent_style = tab
+
+[*.md]
+trim_trailing_whitespace = false