summaryrefslogtreecommitdiffhomepage
path: root/.editorconfig
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-03-31 01:23:21 +0200
committerGeremia Taglialatela <[email protected]>2023-04-06 09:53:36 +0200
commite77648b22708dd5ebb02fa8f4ff347168b1501e5 (patch)
tree840aa77f9e195ab3cca0879d1f1174aaf8f25465 /.editorconfig
parentc5ddbe7cd9bb15e8b247e6b5a5e359d02dd5b9fe (diff)
downloadcaxlsx-e77648b22708dd5ebb02fa8f4ff347168b1501e5.tar.gz
caxlsx-e77648b22708dd5ebb02fa8f4ff347168b1501e5.zip
Add a default editor config
EditorConfig helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs. Ref: https://editorconfig.org/
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig11
1 files changed, 11 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 00000000..f29d257c
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,11 @@
+# editorconfig.org
+
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_size = 2
+indent_style = space
+insert_final_newline = true
+trim_trailing_whitespace = true