aboutsummaryrefslogtreecommitdiffhomepage
path: root/.editorconfig
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2026-04-29 20:47:42 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2026-04-29 21:25:51 -0400
commit1b0d442ea7014d724a602d045335a9ae6e0e4ca8 (patch)
treed1b5c6bda9e5414a0dcda729150d1f013a93c9be /.editorconfig
parentadd .ssp regression test script and reference files (diff)
org: editor utils moved, editorconfig added to env
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig28
1 files changed, 28 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..8a834da
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,28 @@
+# EditorConfig : 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
+trim_trailing_whitespace = true
+
+# Matches multiple files with brace expansion notation
+# Set default charset
+[*.{org,d,nix}]
+charset = utf-8
+
+# Indentation override for all D under src directory
+[src/sisudoc/**.d]
+indent_style = space
+indent_size = 2
+
+# Tab indentation (no size specified)
+[Makefile]
+indent_style = tab
+
+[{dub.selections.json,dub_describe.json}]
+indent_style = space
+indent_size = 2