summaryrefslogtreecommitdiffstats
path: root/.editorconfig
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-06-25 08:46:06 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-06-25 08:46:06 -0500
commit7a96d0314e86dd093c7606cd4c55d984377dd325 (patch)
treef7e7e2eaa830d23b6b4fbf7e6b98db95ab3afa74 /.editorconfig
parentc414c2b37d0563456a2fe194b16f8c4aa442e865 (diff)
downloadredot-cpp-7a96d0314e86dd093c7606cd4c55d984377dd325.tar.gz
Add `.editorconfig`, consolidate `.gitattributes`
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig16
1 files changed, 16 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..f14ac7f
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,16 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_size = 4
+indent_style = tab
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[{*.py,SConstruct}]
+indent_style = space
+
+[*.{yml,yaml}]
+indent_size = 2
+indent_style = space